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,12 +279,14 @@
/** /**
* 路由切换时执行PV上报 * 路由切换时执行PV上报
*/ */
router.afterEach(function () { if (router) {
// 获取要上报的链接(当前版本不需要拼接了) router.afterEach(function () {
var PAGE_URL = window.location.href // 获取要上报的链接(当前版本不需要拼接了)
// 上报数据 var PAGE_URL = window.location.href
pushBAIDU.pv(PAGE_URL) // 上报数据
}) pushBAIDU.pv(PAGE_URL)
})
}
} }
exports.default = install exports.default = install

File diff suppressed because one or more lines are too long

View File

@ -16,90 +16,76 @@
) )
})(this, function (t) { })(this, function (t) {
'use strict' 'use strict'
/*! ***************************************************************************** var e = (function () {
Copyright (c) Microsoft Corporation. function t(t, e) {
void 0 === t && (t = ''),
Permission to use, copy, modify, and/or distribute this software for any void 0 === e && (e = !1),
purpose with or without fee is hereby granted. (this.siteId = t),
(this.isDebug = e)
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH }
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY return (
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, (t.prototype.init = function () {
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM var t
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR window._hmt = window._hmt ? window._hmt : []
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR var e = document.createElement('script')
PERFORMANCE OF THIS SOFTWARE. ;(e.async = !0),
***************************************************************************** */ var e = (e.src = 'https://hm.baidu.com/hm.js?' + this.siteId),
(function () { null === (t = document.querySelector('head')) ||
function t(t, e) { void 0 === t ||
void 0 === t && (t = ''), t.appendChild(e),
void 0 === e && (e = !1), this.isDebug &&
(this.siteId = t), console.log(
(this.isDebug = e) '[vue-baidu-analytics] siteId load done.\nsiteId: ' +
} this.siteId
return (
(t.prototype.init = function () {
var t
window._hmt = window._hmt ? window._hmt : []
var e = document.createElement('script')
;(e.async = !0),
(e.src = 'https://hm.baidu.com/hm.js?' + this.siteId),
null === (t = document.querySelector('head')) ||
void 0 === t ||
t.appendChild(e),
this.isDebug &&
console.log(
'[vue-baidu-analytics] siteId load done.\nsiteId: ' +
this.siteId
)
}),
(t.prototype.setAccount = function () {
window._hmt.push(['_setAccount', this.siteId])
}),
(t.prototype.trackPageview = function (t) {
if (
((t && 'string' == typeof t) || (t = '/'), t.startsWith('http'))
) {
var e = t.split('/'),
i = e[0] + '//' + e[2]
t = t.replace(i, '')
}
this.setAccount(),
window._hmt.push(['_trackPageview', t]),
this.isDebug &&
console.log(
'[vue-baidu-analytics] track pv done.\nsiteId: ' +
this.siteId +
'\npageUrl: ' +
t
)
}),
(t.prototype.trackEvent = function (t, e, i, n) {
if ('string' != typeof t || 'string' != typeof e || !t || !e)
throw new Error(
'[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.'
) )
;(i && 'string' == typeof i) || (i = ''), }),
Number(n) || (n = 1), (t.prototype.setAccount = function () {
this.setAccount(), window._hmt.push(['_setAccount', this.siteId])
window._hmt.push(['_trackEvent', t, e, i, n]), }),
this.isDebug && (t.prototype.trackPageview = function (t) {
console.log( if (
'[vue-baidu-analytics] track event done.\nsiteId: ' + ((t && 'string' == typeof t) || (t = '/'), t.startsWith('http'))
this.siteId + ) {
'\ncategory: ' + var e = t.split('/'),
t + i = e[0] + '//' + e[2]
'\naction: ' + t = t.replace(i, '')
e + }
'\nlabel: ' + this.setAccount(),
i + window._hmt.push(['_trackPageview', t]),
'\nvalue: ' + this.isDebug &&
n console.log(
) '[vue-baidu-analytics] track pv done.\nsiteId: ' +
}), this.siteId +
t '\npageUrl: ' +
) t
})(), )
}),
(t.prototype.trackEvent = function (t, e, i, n) {
if ('string' != typeof t || 'string' != typeof e || !t || !e)
throw new Error(
'[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.'
)
;(i && 'string' == typeof i) || (i = ''),
Number(n) || (n = 1),
this.setAccount(),
window._hmt.push(['_trackEvent', t, e, i, n]),
this.isDebug &&
console.log(
'[vue-baidu-analytics] track event done.\nsiteId: ' +
this.siteId +
'\ncategory: ' +
t +
'\naction: ' +
e +
'\nlabel: ' +
i +
'\nvalue: ' +
n
)
}),
t
)
})(),
i = (function () { i = (function () {
function t(t, e) { function t(t, e) {
;(this.siteIdList = (function (t, e, i) { ;(this.siteIdList = (function (t, e, i) {
@ -139,40 +125,37 @@
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 (!s)
if (!o) throw new Error(
throw new Error( '[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
'[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.'
)
if (!s)
throw new Error(
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
)
var u = new i(s, a)
switch (
((n.pushBAIDU = u),
(function (t) {
var e = 2,
i = String(t.version)
return (
'2.' === i.slice(0, 2) && (e = 2),
'3.' === i.slice(0, 2) && (e = 3),
e
) )
})(t) || 2) var u = new i(s, a)
) { switch (
case 2: ((n.pushBAIDU = u),
t.prototype.$pushBAIDU = u (function (t) {
break var e = 2,
case 3: i = String(t.version)
t.config.globalProperties.$pushBAIDU = u return (
'2.' === i.slice(0, 2) && (e = 2),
'3.' === i.slice(0, 2) && (e = 3),
e
)
})(t) || 2)
) {
case 2:
t.prototype.$pushBAIDU = u
break
case 3:
t.config.globalProperties.$pushBAIDU = u
}
s && Array.isArray(s) && u.init(),
o &&
o.afterEach(function () {
var t = window.location.href
u.pv(t)
})
} }
s && Array.isArray(s) && u.init(),
o.afterEach(function () {
var t = window.location.href
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,11 +87,13 @@ export default function install(
/** /**
* PV上报 * PV上报
*/ */
router.afterEach(() => { if (router) {
// 获取要上报的链接(当前版本不需要拼接了) router.afterEach(() => {
const PAGE_URL: string = window.location.href // 获取要上报的链接(当前版本不需要拼接了)
const PAGE_URL: string = window.location.href
// 上报数据 // 上报数据
pushBAIDU.pv(PAGE_URL) pushBAIDU.pv(PAGE_URL)
}) })
}
} }