mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-06 03:58:00 +08:00
Release v1.1.0
This commit is contained in:
parent
5eb42e6663
commit
9f7ae37203
22
.gitignore
vendored
22
.gitignore
vendored
@ -1,22 +0,0 @@
|
|||||||
index.dev.js
|
|
||||||
.DS_Store
|
|
||||||
node_modules
|
|
||||||
/dist
|
|
||||||
|
|
||||||
# local env files
|
|
||||||
.env.local
|
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.idea
|
|
||||||
.vscode
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
1
dist/main.d.ts
vendored
Normal file
1
dist/main.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
export default function install(Vue: Vue, { router, siteIdList, isDebug }: Partial<Options>): boolean;
|
10
dist/modules/baidu.d.ts
vendored
Normal file
10
dist/modules/baidu.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
declare class BAIDU {
|
||||||
|
siteId: string;
|
||||||
|
isDebug: boolean;
|
||||||
|
constructor(siteId?: string, isDebug?: boolean);
|
||||||
|
init(): void;
|
||||||
|
setAccount(): void;
|
||||||
|
trackPageview(pageUrl: string): void;
|
||||||
|
trackEvent(category: string, action: string, label: string, value: number): boolean;
|
||||||
|
}
|
||||||
|
export default BAIDU;
|
9
dist/modules/pushBAIDU.d.ts
vendored
Normal file
9
dist/modules/pushBAIDU.d.ts
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
declare class PushBAIDU {
|
||||||
|
siteIdList: string[];
|
||||||
|
isDebug: boolean;
|
||||||
|
constructor(siteIdList: string[], isDebug: boolean);
|
||||||
|
init(): void;
|
||||||
|
pv(pageUrl: string): void;
|
||||||
|
event(category: string, action: string, label: string, value: number): void;
|
||||||
|
}
|
||||||
|
export default PushBAIDU;
|
122
dist/vue-baidu-analytics.js
vendored
Normal file
122
dist/vue-baidu-analytics.js
vendored
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
/**
|
||||||
|
* name: vue-baidu-analytics
|
||||||
|
* version: v1.1.0
|
||||||
|
* author: chengpeiquan
|
||||||
|
*/
|
||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.baiduAnalytics = factory());
|
||||||
|
}(this, (function () { 'use strict';
|
||||||
|
|
||||||
|
var BAIDU = (function () {
|
||||||
|
function BAIDU(siteId, isDebug) {
|
||||||
|
if (siteId === void 0) { siteId = ''; }
|
||||||
|
if (isDebug === void 0) { isDebug = false; }
|
||||||
|
this.siteId = siteId;
|
||||||
|
this.isDebug = isDebug;
|
||||||
|
}
|
||||||
|
BAIDU.prototype.init = function () {
|
||||||
|
window._hmt = window._hmt ? window._hmt : [];
|
||||||
|
var SCRIPT = document.createElement('script');
|
||||||
|
SCRIPT['async'] = true;
|
||||||
|
SCRIPT['src'] = "https://hm.baidu.com/hm.js?" + this.siteId;
|
||||||
|
document.querySelector('head').appendChild(SCRIPT);
|
||||||
|
if (this.isDebug) {
|
||||||
|
console.log("[vue-baidu-analytics] siteId load done.\nsiteId: " + this.siteId);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
BAIDU.prototype.setAccount = function () {
|
||||||
|
window._hmt.push(['_setAccount', this.siteId]);
|
||||||
|
};
|
||||||
|
BAIDU.prototype.trackPageview = function (pageUrl) {
|
||||||
|
if (!pageUrl || typeof pageUrl !== 'string') {
|
||||||
|
pageUrl = '/';
|
||||||
|
}
|
||||||
|
if (pageUrl.includes('http')) {
|
||||||
|
var PAGE_CUT = pageUrl.split('/');
|
||||||
|
var HOST_NAME = PAGE_CUT[0] + "//" + PAGE_CUT[2];
|
||||||
|
pageUrl = pageUrl.replace(HOST_NAME, '');
|
||||||
|
}
|
||||||
|
this.setAccount();
|
||||||
|
window._hmt.push(['_trackPageview', pageUrl]);
|
||||||
|
if (this.isDebug) {
|
||||||
|
console.log("[vue-baidu-analytics] track pv done.\nsiteId: " + this.siteId + "\npageUrl: " + pageUrl);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
BAIDU.prototype.trackEvent = function (category, action, label, value) {
|
||||||
|
if (typeof category !== 'string' || typeof action !== 'string' || !category || !action) {
|
||||||
|
throw new Error('[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.');
|
||||||
|
}
|
||||||
|
if (!label || typeof label !== 'string') {
|
||||||
|
label = '';
|
||||||
|
}
|
||||||
|
if (!Number(value)) {
|
||||||
|
value = 1;
|
||||||
|
}
|
||||||
|
this.setAccount();
|
||||||
|
window._hmt.push(['_trackEvent', category, action, label, value]);
|
||||||
|
if (this.isDebug) {
|
||||||
|
console.log("[vue-baidu-analytics] track event done.\nsiteId: " + this.siteId + "\ncategory: " + category + "\naction: " + action + "\nlabel: " + label + "\nvalue: " + value);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return BAIDU;
|
||||||
|
}());
|
||||||
|
|
||||||
|
var PushBAIDU = (function () {
|
||||||
|
function PushBAIDU(siteIdList, isDebug) {
|
||||||
|
this.siteIdList = siteIdList;
|
||||||
|
this.isDebug = isDebug;
|
||||||
|
}
|
||||||
|
PushBAIDU.prototype.init = function () {
|
||||||
|
var _this = this;
|
||||||
|
this.siteIdList.forEach(function (siteId) {
|
||||||
|
var SITE = new BAIDU(siteId, _this.isDebug);
|
||||||
|
SITE.init();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
PushBAIDU.prototype.pv = function (pageUrl) {
|
||||||
|
var _this = this;
|
||||||
|
this.siteIdList.forEach(function (siteId) {
|
||||||
|
var SITE = new BAIDU(siteId, _this.isDebug);
|
||||||
|
SITE.trackPageview(pageUrl);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
PushBAIDU.prototype.event = function (category, action, label, value) {
|
||||||
|
var _this = this;
|
||||||
|
this.siteIdList.forEach(function (siteId) {
|
||||||
|
var SITE = new BAIDU(siteId, _this.isDebug);
|
||||||
|
SITE.trackEvent(category, action, label, value);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return PushBAIDU;
|
||||||
|
}());
|
||||||
|
|
||||||
|
function install(Vue, _a) {
|
||||||
|
var router = _a.router, siteIdList = _a.siteIdList, _b = _a.isDebug, isDebug = _b === void 0 ? false : _b;
|
||||||
|
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 (!siteIdList) {
|
||||||
|
throw new Error('[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics.');
|
||||||
|
}
|
||||||
|
var pushBAIDU = new PushBAIDU(siteIdList, isDebug);
|
||||||
|
Vue.prototype.$pushBAIDU = pushBAIDU;
|
||||||
|
if (siteIdList) {
|
||||||
|
pushBAIDU.init();
|
||||||
|
}
|
||||||
|
router.afterEach(function (to) {
|
||||||
|
var PAGE_PATH_DIR_COUNT = window.location.pathname.split('/').length;
|
||||||
|
var PAGE_PATH = window.location.pathname.split('/').slice(0, PAGE_PATH_DIR_COUNT - 1).join('/');
|
||||||
|
var PAGE_URL = router.mode === 'hash' ? PAGE_PATH + "/#" + to.fullPath : "" + PAGE_PATH + to.fullPath;
|
||||||
|
pushBAIDU.pv(PAGE_URL);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return install;
|
||||||
|
|
||||||
|
})));
|
||||||
|
//# sourceMappingURL=vue-baidu-analytics.js.map
|
1
dist/vue-baidu-analytics.js.map
vendored
Normal file
1
dist/vue-baidu-analytics.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
dist/vue-baidu-analytics.min.js
vendored
Normal file
7
dist/vue-baidu-analytics.min.js
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
/**
|
||||||
|
* name: vue-baidu-analytics
|
||||||
|
* version: v1.1.0
|
||||||
|
* author: chengpeiquan
|
||||||
|
*/
|
||||||
|
!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):(t="undefined"!=typeof globalThis?globalThis:t||self).baiduAnalytics=i()}(this,(function(){"use strict";var t=function(){function t(t,i){void 0===t&&(t=""),void 0===i&&(i=!1),this.siteId=t,this.isDebug=i}return t.prototype.init=function(){window._hmt=window._hmt?window._hmt:[];var t=document.createElement("script");t.async=!0,t.src="https://hm.baidu.com/hm.js?"+this.siteId,document.querySelector("head").appendChild(t),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.includes("http")){var i=t.split("/"),e=i[0]+"//"+i[2];t=t.replace(e,"")}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,i,e,n){if("string"!=typeof t||"string"!=typeof i||!t||!i)throw new Error("[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.");e&&"string"==typeof e||(e=""),Number(n)||(n=1),this.setAccount(),window._hmt.push(["_trackEvent",t,i,e,n]),this.isDebug&&console.log("[vue-baidu-analytics] track event done.\nsiteId: "+this.siteId+"\ncategory: "+t+"\naction: "+i+"\nlabel: "+e+"\nvalue: "+n)},t}(),i=function(){function i(t,i){this.siteIdList=t,this.isDebug=i}return i.prototype.init=function(){var i=this;this.siteIdList.forEach((function(e){new t(e,i.isDebug).init()}))},i.prototype.pv=function(i){var e=this;this.siteIdList.forEach((function(n){new t(n,e.isDebug).trackPageview(i)}))},i.prototype.event=function(i,e,n,o){var s=this;this.siteIdList.forEach((function(a){new t(a,s.isDebug).trackEvent(i,e,n,o)}))},i}();return function(t,e){var n=e.router,o=e.siteIdList,s=e.isDebug,a=void 0!==s&&s;if("undefined"==typeof document||"undefined"==typeof window)return!1;if(!n)throw new Error("[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.");if(!o)throw new Error("[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics.");var u=new i(o,a);t.prototype.$pushBAIDU=u,o&&u.init(),n.afterEach((function(t){var i=window.location.pathname.split("/").length,e=window.location.pathname.split("/").slice(0,i-1).join("/"),o="hash"===n.mode?e+"/#"+t.fullPath:""+e+t.fullPath;u.pv(o)}))}}));
|
||||||
|
//# sourceMappingURL=vue-baidu-analytics.min.js.map
|
1
dist/vue-baidu-analytics.min.js.map
vendored
Normal file
1
dist/vue-baidu-analytics.min.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user