mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-04 23:42:46 +08:00
feat: now, the vue router is optional
This commit is contained in:
parent
cb18c6892e
commit
69ecd02121
2
dist/main.d.ts
vendored
2
dist/main.d.ts
vendored
@ -22,4 +22,4 @@ export declare function usePush(): {
|
||||
export default function install(
|
||||
Vue: Vue,
|
||||
{ router, siteIdList, isDebug }: Partial<Options>
|
||||
): false | undefined
|
||||
): void
|
||||
|
23
dist/vue-baidu-analytics.js
vendored
23
dist/vue-baidu-analytics.js
vendored
@ -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
|
||||
|
2
dist/vue-baidu-analytics.js.map
vendored
2
dist/vue-baidu-analytics.js.map
vendored
File diff suppressed because one or more lines are too long
213
dist/vue-baidu-analytics.min.js
vendored
213
dist/vue-baidu-analytics.min.js
vendored
@ -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 {
|
||||
|
2
dist/vue-baidu-analytics.min.js.map
vendored
2
dist/vue-baidu-analytics.min.js.map
vendored
File diff suppressed because one or more lines are too long
24
src/main.ts
24
src/main.ts
@ -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)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user