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(
Vue: Vue,
{ router, siteIdList, isDebug }: Partial<Options>
): false | undefined
): void

View File

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

File diff suppressed because one or more lines are too long

View File

@ -16,90 +16,76 @@
)
})(this, function (t) {
'use strict'
/*! *****************************************************************************
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) {
void 0 === t && (t = ''),
void 0 === e && (e = !1),
(this.siteId = t),
(this.isDebug = e)
}
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.'
var e = (function () {
function t(t, e) {
void 0 === t && (t = ''),
void 0 === e && (e = !1),
(this.siteId = t),
(this.isDebug = e)
}
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
)
;(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
)
})(),
}),
(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),
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 () {
function t(t, e) {
;(this.siteIdList = (function (t, e, i) {
@ -139,40 +125,37 @@
s = e.siteIdList,
r = e.isDebug,
a = void 0 !== r && r
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)
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
if ('undefined' != typeof document && 'undefined' != typeof window) {
if (!s)
throw new Error(
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
)
})(t) || 2)
) {
case 2:
t.prototype.$pushBAIDU = u
break
case 3:
t.config.globalProperties.$pushBAIDU = u
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)
) {
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 () {
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') {
return false
}
if (!router) {
throw new Error(
'[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.'
)
}
if (typeof document === 'undefined' || typeof window === 'undefined') return
if (!siteIdList) {
throw new Error(
@ -95,11 +87,13 @@ export default function install(
/**
* PV上报
*/
router.afterEach(() => {
// 获取要上报的链接(当前版本不需要拼接了)
const PAGE_URL: string = window.location.href
if (router) {
router.afterEach(() => {
// 获取要上报的链接(当前版本不需要拼接了)
const PAGE_URL: string = window.location.href
// 上报数据
pushBAIDU.pv(PAGE_URL)
})
// 上报数据
pushBAIDU.pv(PAGE_URL)
})
}
}