feat: now, the vue router is optional

This commit is contained in:
程沛权 2021-06-15 18:15:02 +08:00
parent cb18c6892e
commit 69ecd02121
6 changed files with 119 additions and 147 deletions

2
dist/main.d.ts vendored
View File

@ -22,4 +22,4 @@ export declare function usePush(): {
export default function install( export default function install(
Vue: Vue, Vue: Vue,
{ router, siteIdList, isDebug }: Partial<Options> { router, siteIdList, isDebug }: Partial<Options>
): false | undefined ): void

View File

@ -246,14 +246,7 @@
/** /**
* 一些环境和参数的检查 * 一些环境和参数的检查
*/ */
if (typeof document === 'undefined' || typeof window === 'undefined') { if (typeof document === 'undefined' || typeof window === 'undefined') return
return false
}
if (!router) {
throw new Error(
'[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.'
)
}
if (!siteIdList) { if (!siteIdList) {
throw new Error( throw new Error(
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.' '[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
@ -286,6 +279,7 @@
/** /**
* 路由切换时执行PV上报 * 路由切换时执行PV上报
*/ */
if (router) {
router.afterEach(function () { router.afterEach(function () {
// 获取要上报的链接(当前版本不需要拼接了) // 获取要上报的链接(当前版本不需要拼接了)
var PAGE_URL = window.location.href var PAGE_URL = window.location.href
@ -293,6 +287,7 @@
pushBAIDU.pv(PAGE_URL) pushBAIDU.pv(PAGE_URL)
}) })
} }
}
exports.default = install exports.default = install
exports.usePush = usePush exports.usePush = usePush

File diff suppressed because one or more lines are too long

View File

@ -16,21 +16,7 @@
) )
})(this, function (t) { })(this, function (t) {
'use strict' 'use strict'
/*! ***************************************************************************** var e = (function () {
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */ var e =
(function () {
function t(t, e) { function t(t, e) {
void 0 === t && (t = ''), void 0 === t && (t = ''),
void 0 === e && (e = !1), void 0 === e && (e = !1),
@ -139,12 +125,7 @@
s = e.siteIdList, s = e.siteIdList,
r = e.isDebug, r = e.isDebug,
a = void 0 !== r && r a = void 0 !== r && r
if ('undefined' == typeof document || 'undefined' == typeof window) if ('undefined' != typeof document && 'undefined' != typeof window) {
return !1
if (!o)
throw new Error(
'[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.'
)
if (!s) if (!s)
throw new Error( throw new Error(
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.' '[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
@ -169,10 +150,12 @@
t.config.globalProperties.$pushBAIDU = u t.config.globalProperties.$pushBAIDU = u
} }
s && Array.isArray(s) && u.init(), s && Array.isArray(s) && u.init(),
o &&
o.afterEach(function () { o.afterEach(function () {
var t = window.location.href var t = window.location.href
u.pv(t) u.pv(t)
}) })
}
}), }),
(t.usePush = function () { (t.usePush = function () {
return { return {

File diff suppressed because one or more lines are too long

View File

@ -49,15 +49,7 @@ export default function install(
/** /**
* *
*/ */
if (typeof document === 'undefined' || typeof window === 'undefined') { if (typeof document === 'undefined' || typeof window === 'undefined') return
return false
}
if (!router) {
throw new Error(
'[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.'
)
}
if (!siteIdList) { if (!siteIdList) {
throw new Error( throw new Error(
@ -95,6 +87,7 @@ export default function install(
/** /**
* PV上报 * PV上报
*/ */
if (router) {
router.afterEach(() => { router.afterEach(() => {
// 获取要上报的链接(当前版本不需要拼接了) // 获取要上报的链接(当前版本不需要拼接了)
const PAGE_URL: string = window.location.href const PAGE_URL: string = window.location.href
@ -102,4 +95,5 @@ export default function install(
// 上报数据 // 上报数据
pushBAIDU.pv(PAGE_URL) pushBAIDU.pv(PAGE_URL)
}) })
}
} }