mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-05 19:41:42 +08:00
Compare commits
77 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f065747b65 | ||
|
74eee8344f | ||
|
7c2dc8487c | ||
|
9599702cb6 | ||
|
33748b69e6 | ||
|
fa98889803 | ||
|
a54ade27d1 | ||
|
b2916bffed | ||
|
93f8d306c4 | ||
|
22f0464913 | ||
|
67ad83991b | ||
|
9158f04e4d | ||
|
00336ceb4d | ||
|
6d71e9dba3 | ||
|
80ee80cc33 | ||
|
6e29068e95 | ||
|
708a418598 | ||
|
b4457614a9 | ||
|
3d37199fdc | ||
|
3aad6404e1 | ||
|
69ecd02121 | ||
|
cb18c6892e | ||
|
ed3e666286 | ||
|
900b744a5b | ||
|
3ad117891b | ||
|
fc0b4a7590 | ||
|
03077c8e3e | ||
|
e718db556d | ||
|
87d46b37cd | ||
|
2071c89e40 | ||
|
5146e16c44 | ||
|
8f3a4c8aa2 | ||
|
326b1833cf | ||
|
02fa4512d8 | ||
|
7b3e12053f | ||
|
a9678c8fec | ||
|
6401dbd6d7 | ||
|
cb1158e4c4 | ||
|
e3251ace0a | ||
|
501d647086 | ||
|
daba71481c | ||
|
66da1627f6 | ||
|
f9ca4e0f3b | ||
|
173917b754 | ||
|
e97f961068 | ||
|
fa9a822442 | ||
|
d7bfd85c6b | ||
|
c4351c2e3c | ||
|
60fe21cfd9 | ||
|
3ad286ffeb | ||
|
047a6f16ce | ||
|
802231dc90 | ||
|
1299528637 | ||
|
217bb57750 | ||
|
d3150001ce | ||
|
4aff1f5eac | ||
|
fedfa49e5e | ||
|
cb63eaa601 | ||
|
263757f20e | ||
|
a1da25c8e4 | ||
|
2bbebe8b14 | ||
|
377337d53b | ||
|
f96c833ca0 | ||
|
351af146c0 | ||
|
c2c814e326 | ||
|
840e3cc8f3 | ||
|
1e8b981491 | ||
|
669580c1ab | ||
|
6fd0cbf763 | ||
|
0e1984e314 | ||
|
1654d26050 | ||
|
4c4c2704a0 | ||
|
350fb3dfd5 | ||
|
91d323a89d | ||
|
1126833f04 | ||
|
27a45b8f56 | ||
|
bec6096098 |
2
.eslintignore
Normal file
2
.eslintignore
Normal file
@ -0,0 +1,2 @@
|
||||
dist/*
|
||||
demo/*
|
18
.eslintrc.js
Normal file
18
.eslintrc.js
Normal file
@ -0,0 +1,18 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: {
|
||||
node: true,
|
||||
browser: true,
|
||||
},
|
||||
extends: ['eslint:recommended', 'prettier'],
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 2020,
|
||||
},
|
||||
plugins: ['@typescript-eslint', 'prettier'],
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'prettier/prettier': 'warn',
|
||||
},
|
||||
}
|
12
.github/FUNDING.yml
vendored
Normal file
12
.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
otechie: # Replace with a single Otechie username
|
||||
custom: https://github.com/chengpeiquan/sponsor
|
71
.github/workflows/codeql-analysis.yml
vendored
Normal file
71
.github/workflows/codeql-analysis.yml
vendored
Normal file
@ -0,0 +1,71 @@
|
||||
# For most projects, this workflow file will not need changing; you simply need
|
||||
# to commit it to your repository.
|
||||
#
|
||||
# You may wish to alter this file to override the set of languages analyzed,
|
||||
# or to provide custom queries or build logic.
|
||||
#
|
||||
# ******** NOTE ********
|
||||
# We have attempted to detect the languages in your repository. Please check
|
||||
# the `language` matrix defined below to confirm you have the correct set of
|
||||
# supported CodeQL languages.
|
||||
#
|
||||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ master ]
|
||||
schedule:
|
||||
- cron: '30 16 * * 2'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'javascript' ]
|
||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
||||
# Learn more:
|
||||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v1
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v1
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 https://git.io/JvXDl
|
||||
|
||||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||
# and modify them (or add more) to build your code if your project
|
||||
# uses a compiled language
|
||||
|
||||
#- run: |
|
||||
# make bootstrap
|
||||
# make release
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v1
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
node_modules
|
4
.prettierrc
Normal file
4
.prettierrc
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"semi": false,
|
||||
"singleQuote": true
|
||||
}
|
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019 chengpeiquan
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
319
README.en.md
Normal file
319
README.en.md
Normal file
@ -0,0 +1,319 @@
|
||||
This package is no longer maintained, please use [@web-analytics/vue](https://analytics.js.org/vue/) , which has an easier method of use while maintaining the original functions.
|
||||
|
||||
---
|
||||
|
||||
<p align='center'>
|
||||
<img src="https://cdn.jsdelivr.net/gh/chengpeiquan/assets-storage/img/2021/04/20210404235335.png" alt="vue-baidu-analytics" />
|
||||
</p>
|
||||
|
||||
<p align='center'>
|
||||
<a href='https://www.npmjs.com/package/vue-baidu-analytics'>
|
||||
<img src="https://img.shields.io/npm/v/vue-baidu-analytics?color=41b883&label=npm" />
|
||||
</a>
|
||||
</p>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
[简体中文](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/README.md) | English
|
||||
|
||||
Only 3 kB, this plugin base on the Baidu analytics, it can help you quickly to collect the page views on your website, including single page web application.
|
||||
|
||||
>Since the version v2.0.0, it supports the Vue 3.0, and is compatible with the Vue 2.0, you can see the live demo to learn more.<br>If you haven’t started using Vue 3.0, welcome to read the tutorial [learning Vue3](https://vue3.chengpeiquan.com/) .
|
||||
|
||||
## Features
|
||||
|
||||
* Asynchronously load the Baidu analytics scripts, no need to modify the entry HTML.
|
||||
|
||||
* Support the deployment of multiple site IDs and corresponding data reporting.
|
||||
|
||||
* Supports automatic reporting of PV data generated by route switching (This feature need [Vue Router](https://router.vuejs.org/), It can support hash mode and history mode).
|
||||
|
||||
* Support manual submission of page views reports.
|
||||
|
||||
* Support manual submission of event reports.
|
||||
|
||||
* Since the version v2.0.0, the plugin can automatically recognize the Vue version at Vue 2.0 or Vue 3.0 .
|
||||
|
||||
* Since the version v2.1.0, Hooks API is provided (So the usage of CDN installation is slightly adjusted)
|
||||
|
||||
## Project
|
||||
|
||||
As long as Vue and Vue Router are introduced, the projects can be used normally, no matter what method is used to develop your project, e.g. :
|
||||
|
||||
* Vue-CLI scaffolding project
|
||||
|
||||
* Vite project
|
||||
|
||||
* Introduce the HTML page of Vue related CDN
|
||||
|
||||
* VuePress project
|
||||
|
||||
It is not limited to SPA single page projects, it can also be used in SSG / SSR projects.
|
||||
|
||||
## Preview
|
||||
|
||||
Both live demos have enabled debug mode, and you can open the console to view the report.
|
||||
|
||||
Vue 2.0 :[vue-baidu-analytics demo for Vue 2.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue2.html "vue-baidu-analytics demo for Vue 2.x")
|
||||
|
||||
Vue 3.0 :[vue-baidu-analytics demo for Vue 3.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue3.html "vue-baidu-analytics demo for Vue 3.x")
|
||||
|
||||
## Options
|
||||
|
||||
Option|Required|Type|Description
|
||||
:-:|:-:|:-:|-
|
||||
router|false|object|Vue Router(It is optional since v2.2.0.)
|
||||
siteIdList|true|string[]|The site ids for Baidu analytics, if only one site needs to be reported, just keep one item in the array.
|
||||
isDebug|false|boolean|if `true`, it will open the debug mode,you can see the log in the console.
|
||||
|
||||
Tips: Please remember to turn off the debug mode before publish.
|
||||
|
||||
## Install
|
||||
|
||||
You can install the plugin from NPM.
|
||||
|
||||
```bash
|
||||
npm install vue-baidu-analytics --save-dev
|
||||
```
|
||||
|
||||
Can also use the CDN URL in your HTML.
|
||||
|
||||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-baidu-analytics/dist/vue-baidu-analytics.min.js"></script>
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
If use NPM, you must import the plugin in `main.js` .
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
```
|
||||
|
||||
Then, refer to the sample code in Vue 2.0 and Vue 3.0 below to use it.
|
||||
|
||||
When the route is switched, the new URL address will be reported to Baidu analytics after the visit.
|
||||
|
||||
### Use in the Vue 2.0
|
||||
|
||||
See:[main.js - Vue 2.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue2.js)
|
||||
|
||||
>Since the version v2.1.0, if you use CDN in your HTML, must be use `baiduAnalytics.default` to use the plugin.
|
||||
|
||||
```js
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
```
|
||||
|
||||
### Use in the Vue 3.0
|
||||
|
||||
See:[main.js - Vue 3.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue3.js)
|
||||
|
||||
>Since the version v2.1.0, if you use CDN in your HTML, must be use `baiduAnalytics.default` to use the plugin.
|
||||
|
||||
```js
|
||||
createApp(app)
|
||||
.use(router)
|
||||
.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
})
|
||||
.mount('#app');
|
||||
```
|
||||
|
||||
### Use in the VuePress
|
||||
|
||||
The plugin can also be used in [VuePress](https://vuepress.vuejs.org/zh/) project.
|
||||
|
||||
In the `/docs/.vuepress` folder under the project, create a file named `enhanceApp.js`, and write the following code in this file.
|
||||
|
||||
You can see [App Level Enhancements - VuePress](https://vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements) to learn more.
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
|
||||
export default ({ Vue, router }) => {
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb',
|
||||
'ccccccccccccccccccc'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
};
|
||||
```
|
||||
|
||||
You can turn on the debug mode in the development environment to learn about related reports (remember to turn off debug before going online).
|
||||
|
||||
## API
|
||||
|
||||
Since the version v2.1.0, you can use the Global API `$pushBAIDU` and the Hooks API `usePush` in your project, they both support the Vue 2.0 and 3.0.
|
||||
|
||||
>The APIs can't be used directly, it needs to cooperate with the [Methods](#Methods) to operate the specific functions.
|
||||
|
||||
### The Global API
|
||||
|
||||
In the Vue 2.0:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
export default {
|
||||
// ...
|
||||
mounted () {
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
In the Vue 3.0, you can use the Global Properties:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const app = getCurrentInstance();
|
||||
app.appContext.config.globalProperties.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
You can also import the proxy component in the current instance to operate:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const { proxy } = getCurrentInstance();
|
||||
proxy.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### The Hooks API
|
||||
|
||||
In the Vue 2.0:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
// ...
|
||||
data () {
|
||||
return {
|
||||
baidu: usePush()
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.baidu.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
In the Vue 3.0, just use it as if you were using the route `const router = useRouter();`.
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const baidu = usePush();
|
||||
baidu.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
If the name of the hook API has already been declared, you can rename it when import.
|
||||
|
||||
```js
|
||||
import { usePush as useBaidu } from 'vue-baidu-analytics'
|
||||
const baidu = useBaidu();
|
||||
```
|
||||
|
||||
## Methods
|
||||
|
||||
All methods are needs to be triggered through the API, and the methods supported by the Global API and the Hooks API are exactly the same.
|
||||
|
||||
Method|Description
|
||||
:--|:--
|
||||
Manually report the page views|[Click here to see.](#manually-report-the-page-views)
|
||||
Manually report the event analysis|[Click here to see.](#manually-report-the-event-analysis)
|
||||
|
||||
>Since there are still many users of Vue 2.0, the following examples only use the operation method of Vue 2.0 to demonstrate. Vue 3.0 can call specific methods according to the description of the Hooks API.
|
||||
|
||||
Tips: If multiple site IDs are configured, the data will be reported to all sites at the same time.
|
||||
|
||||
### Manually report the page views
|
||||
|
||||
If you switch content rendering on some pages through Tab, but you need to report access data, you can use this method to manually report.
|
||||
|
||||
Method|Description
|
||||
:-:|-
|
||||
pv|Manually perform PV data reporting.
|
||||
|
||||
**Params**
|
||||
|
||||
Param|Required|Type|Description
|
||||
:-:|:-:|:-:|-
|
||||
pageUrl|false|string|The URL submitted for the report must be a relative path starting with `/`, if not filled, it will be submitted as the domain name root directory by default.
|
||||
|
||||
**Example**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
```
|
||||
|
||||
### Manually report the event analysis
|
||||
|
||||
For example, there is a "exchange" function button on your page. If you want to count the clicks of this button, you can perform click analysis by binding the button to report events.
|
||||
|
||||
Method|Description
|
||||
:-:|-
|
||||
event|Manually perform event analysis data reporting.
|
||||
|
||||
**Params**
|
||||
|
||||
Param|Required|Type|Description
|
||||
:-:|:-:|:-:|-
|
||||
category|true|string|The name of the location where the event occurred, e.g. `banner`
|
||||
action|true|string|The description of the behavior that generated the event, e.g. `click`
|
||||
label|false|string|The name of the label that generated the event can be used to record the event sub-id, e.g. `bannerId_123`. (@default: '')
|
||||
value|false|number|The score of the event. (@default: 0)
|
||||
|
||||
**Example**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.event(
|
||||
this.category,
|
||||
this.action,
|
||||
this.label,
|
||||
this.value
|
||||
);
|
||||
```
|
||||
|
||||
## CHANGELOG
|
||||
|
||||
See:[releases](https://github.com/analyticsjs/vue-baidu-analytics/releases)
|
||||
|
||||
## License
|
||||
|
||||
[MIT License](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/LICENSE) © 2019 [chengpeiquan](https://github.com/chengpeiquan)
|
312
README.md
312
README.md
@ -1,135 +1,337 @@
|
||||
vue-baidu-analytics 使用说明
|
||||
===
|
||||
本包不再维护,请使用 [@web-analytics/vue](https://analytics.js.org/vue/) ,在保持原有功能的基础上,具有更简单的使用方法。
|
||||
|
||||
基于Vue开发的百度统计插件,可以在 `Vue-CLI脚手架项目` 或者 `引入了Vue相关CDN的普通页面` 上使用,使用本插件的项目需要引入 `Vue Router`。
|
||||
---
|
||||
|
||||
注意:本插件在 `1.0.0` 版本的部分参数和api现在有所弃用,请按照当前最新文档说明使用新版本,或者安装以前的 `1.0.0` 旧版本使用。
|
||||
<p align='center'>
|
||||
<img src="https://cdn.jsdelivr.net/gh/chengpeiquan/assets-storage/img/2021/04/20210404235335.png" alt="vue-baidu-analytics" />
|
||||
</p>
|
||||
|
||||
<p align='center'>
|
||||
<a href='https://www.npmjs.com/package/vue-baidu-analytics'>
|
||||
<img src="https://img.shields.io/npm/v/vue-baidu-analytics?color=41b883&label=npm" />
|
||||
</a>
|
||||
</p>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
简体中文 | [English](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/README.en.md)
|
||||
|
||||
一个只有 3 kB 大小的插件,可以帮你轻松解决 SPA 单页面项目浏览数据不准确的问题,可基于 Vue 路由访问轨迹自动向百度统计平台上报 PV / 事件数据。
|
||||
|
||||
>本插件自 v2.0.0 开始,最新版插件支持在 Vue 3.0 项目下使用,同时兼容 Vue 2.0 项目的使用,具体使用方法请看下方说明以及在线 demo 。<br>对 Vue 3.0 感兴趣,但还在观望的同学,欢迎阅读我踩坑总结的:[Vue3.0学习教程与实战案例](https://vue3.chengpeiquan.com/) (持续更新ing)
|
||||
|
||||
## 功能
|
||||
|
||||
* 异步载入百度统计脚本,无需修改入口html
|
||||
* 异步载入百度统计脚本,无需修改入口 HTML
|
||||
|
||||
* 支持部署多个站点id,并对应进行数据上报
|
||||
* 支持部署多个站点 ID ,并对应进行数据上报(跨部门合作项目,双方均要收集数据时非常有用)
|
||||
|
||||
* 支持自动上报路由切换产生的pv数据(支持 `hash模式` 和 `history模式` 的地址)
|
||||
* 支持自动上报路由切换产生的 PV 数据(需引入 [Vue Router](https://router.vuejs.org/),支持 hash 模式和 history 模式的地址)
|
||||
|
||||
* 支持手动提交pv上报
|
||||
* 支持手动提交 PV 上报
|
||||
|
||||
* 支持手动提交事件分析上报
|
||||
|
||||
* 自动识别 Vue 版本,自动适配 Vue 2.0 / Vue 3.0 使用(本插件 v2.0.0 版本新增)
|
||||
|
||||
* 提供了 Hooks API(本插件 v2.1.0 版本新增,因此 CDN 安装的用法略有调整,请留意使用说明)
|
||||
|
||||
## 项目
|
||||
|
||||
理论上只要引入了 Vue (必须) 和 Vue Router (自 v2.2.0 起是可选) 的项目均可以正常使用,包括但不限于以下类型:
|
||||
|
||||
* Vue-CLI 脚手架项目
|
||||
|
||||
* Vite 项目
|
||||
|
||||
* 引入 Vue 相关 CDN 的 HTML 页面
|
||||
|
||||
* VuePress 项目
|
||||
|
||||
也不仅限于 SPA 单页面项目,在 SSG / SSR 项目里也可以使用。
|
||||
|
||||
## 预览
|
||||
|
||||
demo已开启debug模式,可开启控制台查看上报情况。
|
||||
两个在线 demo 均已开启 debug 模式,可开启控制台查看上报情况。
|
||||
|
||||
点击预览:[vue-baidu-analytics demo](https://chengpeiquan.github.io/vue-baidu-analytics/demo/ "vue-baidu-analytics demo")
|
||||
Vue 2.0 版本:[vue-baidu-analytics demo for Vue 2.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue2.html "vue-baidu-analytics demo for Vue 2.x")
|
||||
|
||||
## 参数
|
||||
Vue 3.0 版本:[vue-baidu-analytics demo for Vue 3.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue3.html "vue-baidu-analytics demo for Vue 3.x")
|
||||
|
||||
参数|是否必填|参数类型|参数说明
|
||||
## 选项
|
||||
|
||||
选项|是否必填|选项类型|选项说明
|
||||
:-:|:-:|:-:|-
|
||||
router|是|object|Vue Router,本插件基于路由使用
|
||||
siteIdList|是|object Array|百度统计的站点id列表,item为站点id<br>只有一个站点需要上报就保留一个item即可
|
||||
isDebug|否|boolean|是否开启debug模式,默认 `false`<br>开启后会在控制台打印上报信息,**上线前记得关闭**
|
||||
router|否|object|Vue Router(自 v2.2.0 版本开始为可选,无路由的单页则不必传该选项)
|
||||
siteIdList|是|string[]|百度统计的站点 id 列表,只有一个站点需要上报就保留一个 id 即可
|
||||
isDebug|否|boolean|是否开启 debug 模式,默认 `false`,开启后会在 F12 控制台打印上报信息
|
||||
|
||||
友情提示:上线前记得关闭 debug 模式。
|
||||
|
||||
## 安装
|
||||
|
||||
### 通过npm安装
|
||||
方式一:通过 NPM 安装
|
||||
|
||||
```
|
||||
```bash
|
||||
npm install vue-baidu-analytics --save-dev
|
||||
```
|
||||
|
||||
### 通过cdn安装
|
||||
方式二:通过 CDN 安装
|
||||
|
||||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-baidu-analytics/dist/vue-baidu-analytics.min.js"></script>
|
||||
```
|
||||
|
||||
## 使用
|
||||
## 启用
|
||||
|
||||
通过npm安装的项目,需要先在 `main.js` 里引入插件(通过cdn则无需该步骤)。
|
||||
通过 NPM 安装的项目,需要先在 main.js 里引入插件(通过 CDN 则无需该步骤)。
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
```
|
||||
|
||||
安装插件后,在 `main.js` 引入以下代码,即可开启自动上报功能,首次访问页面会部署统计代码并提交第一次访问数据上报。
|
||||
安装插件后,在 main.js 引入以下代码(注意 Vue 2.0 和 Vue 3.0 的用法区别),即可开启自动上报功能,首次访问页面会部署统计代码并提交第一次访问数据上报。
|
||||
|
||||
后续在路由切换过程中,也会根据路由的切换提交相应的url信息到友盟统计。
|
||||
后续在路由切换过程中,也会根据路由的切换提交相应的 URL 信息到百度统计。
|
||||
|
||||
### 在 Vue 2.0 里使用
|
||||
|
||||
可参考demo:[main.js - Vue 2.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue2.js)
|
||||
|
||||
>自 v2.1.0 版本开始,如果是通过 CDN 安装,需要使用 `baiduAnalytics.default` 去激活插件,通过 NPM 安装的脚手架项目则使用 `baiduAnalytics` 就可以
|
||||
|
||||
```js
|
||||
// 启动插件
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb',
|
||||
'ccccccccccccccccccc'
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
```
|
||||
|
||||
可在开发环境打开debug模式了解相关的上报情况(上线前记得关闭debug)。
|
||||
### 在 Vue 3.0 里使用
|
||||
|
||||
可参考demo:[main.js - Vue 3.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue3.js)
|
||||
|
||||
>自 v2.1.0 版本开始,如果是通过 CDN 安装,需要使用 `baiduAnalytics.default` 去激活插件,通过 NPM 安装的脚手架项目则使用 `baiduAnalytics` 就可以
|
||||
|
||||
```js
|
||||
/**
|
||||
* 初始化Vue
|
||||
*/
|
||||
createApp(app)
|
||||
// 启动路由
|
||||
.use(router)
|
||||
|
||||
// 启动插件
|
||||
.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
})
|
||||
|
||||
// 挂载到节点上
|
||||
.mount('#app');
|
||||
```
|
||||
|
||||
### 在 VuePress 里使用
|
||||
|
||||
插件也支持在Vue的静态文档 [VuePress](https://vuepress.vuejs.org/zh/) 项目里使用。
|
||||
|
||||
在项目下的 `/docs/.vuepress` 文件夹下,创建一个 `enhanceApp.js`,按照下面的方式引入即可启动数据上报功能。
|
||||
|
||||
官方文档传送门:[应用级别的配置 - VuePress](https://vuepress.vuejs.org/zh/guide/basic-config.html#%E5%BA%94%E7%94%A8%E7%BA%A7%E5%88%AB%E7%9A%84%E9%85%8D%E7%BD%AE)
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
|
||||
export default ({ Vue, router }) => {
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb',
|
||||
'ccccccccccccccccccc'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
};
|
||||
```
|
||||
|
||||
可在开发环境打开 debug 模式了解相关的上报情况(上线前记得关闭 debug )。
|
||||
|
||||
## API
|
||||
|
||||
自 v2.1.0 版本开始,插件支持直接调用的全局 API `$pushBAIDU` 和按需导入的钩子 API `usePush` 两种方式。
|
||||
|
||||
这两种方式在 Vue 2.0 和 3.0 里均可以使用,只不过按照使用习惯和从 Vue 官方推荐的角度来说,全局 API 更适合 Vue 2.0 项目,钩子 API 更适合 Vue 3.0 项目。
|
||||
|
||||
> 插件的 API 不可以直接使用,需要配合 API 里面的 [方法](#方法) 才可以操作到具体功能。
|
||||
|
||||
### 全局 API
|
||||
|
||||
在 Vue 2.0 里,只需要通过我们熟悉的 `this` 去操作即可:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
export default {
|
||||
// ...
|
||||
mounted () {
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
在 Vue 3.0 里,可以按照官方文档的推荐,导入当前实例变量,通过当前实例变量去操作全局方法:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const app = getCurrentInstance();
|
||||
app.appContext.config.globalProperties.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
也可以导入当前实例里的代理组件去操作:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const { proxy } = getCurrentInstance();
|
||||
proxy.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### 钩子 API
|
||||
|
||||
>钩子 API 需要在用到的组件里 import 导入才可以使用。
|
||||
|
||||
在 Vue 2.0 里,你可以绑定一个钩子变量去使用:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
// ...
|
||||
data () {
|
||||
return {
|
||||
// 创建钩子变量
|
||||
baidu: usePush()
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
// 通过钩子变量去触发方法
|
||||
this.baidu.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
在 Vue 3.0 里,就像在使用路由 `const router = useRouter();` 一样去使用就可以。
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
// 创建钩子变量
|
||||
const baidu = usePush();
|
||||
|
||||
// 通过钩子变量去触发方法
|
||||
baidu.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
另外,如果 API 与其他插件冲突的话(比如你同时使用了 [vue-cnzz-analytics](https://github.com/analyticsjs/vue-cnzz-analytics)),你可以在导入的时候重命名:
|
||||
|
||||
```js
|
||||
import { usePush as useBaidu } from 'vue-baidu-analytics'
|
||||
const baidu = useBaidu();
|
||||
```
|
||||
|
||||
## 方法
|
||||
|
||||
插件目前封装了两个常用的api,统一挂载到Vue实例上的 `$pushBAIDU` 去调用。
|
||||
方法需要通过 API 去触发,全局 API 和 钩子 API 支持的方法都是完全一样的。
|
||||
|
||||
注:如果配置了多个站点id,会同时上报给所有站点。
|
||||
方法功能|使用说明
|
||||
:--|:--
|
||||
手动上报页面 PV|[点击查看](#手动上报页面PV)
|
||||
手动上报事件分析|[点击查看](#手动上报事件分析)
|
||||
|
||||
### 手动上报页面PV
|
||||
> 由于目前 Vue 2.0 的使用者还比较多,下面的举例均只用 Vue 2.0 的操作方法进行演示,Vue 3.0 可根据钩子 API 的说明去调用具体的方法。
|
||||
|
||||
api名称|功能说明
|
||||
注:如果配置了多个站点 ID ,数据都会同时上报给所有站点。
|
||||
|
||||
### 手动上报页面 PV
|
||||
|
||||
如果你有些页面是通过 Tab 切页进行内容渲染切换,但又需要上报访问数据的话,就可以使用这个方法来进行手动上报。
|
||||
|
||||
方法名称|功能说明
|
||||
:-:|-
|
||||
pv|手动执行PV数据上报
|
||||
pv|手动执行 PV 数据上报
|
||||
|
||||
**api参数**
|
||||
**参数**
|
||||
|
||||
参数|是否必填|参数类型|参数说明
|
||||
:-:|:-:|:-:|-
|
||||
pageUrl|否|String|提交上报的url,必须是以 `/` 开头的相对路径<br>如果不填,则会默认提交为域名根目录
|
||||
pageUrl|否|string|提交上报的 URL ,必须是以 `/` 开头的相对路径,如果不填,则会默认提交为域名根目录
|
||||
|
||||
**使用示范**
|
||||
|
||||
在template里使用
|
||||
|
||||
```html
|
||||
<button @click="$pushBAIDU.pv('/test')">手动上报PV</button>
|
||||
```
|
||||
|
||||
在method里使用
|
||||
|
||||
```js
|
||||
// this是Vue实例
|
||||
this.$pushBAIDU.pv('/home');
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
```
|
||||
|
||||
### 手动上报事件分析
|
||||
|
||||
api名称|功能说明
|
||||
比如你的页面上有个 “换一换” 的功能按钮,想要统计这个按钮的点击情况,就可以通过给按钮绑定上报事件来进行点击情况分析。
|
||||
|
||||
方法名称|功能说明
|
||||
:-:|-
|
||||
event|手动执行事件分析数据上报
|
||||
|
||||
**api参数**
|
||||
**参数**
|
||||
|
||||
参数|是否必填|参数类型|参数说明
|
||||
:-:|:-:|:-:|-
|
||||
category|是|string|产生该事件的位置名称,比如 `首页banner`
|
||||
action|是|string|产生该事件的行为描述,比如 `点击`
|
||||
label|否|string|产生该事件的标签名称,可以用来记录事件子id,比如 `bannerId_123`,默认为空
|
||||
value|否|number|该事件的分值,默认0
|
||||
label|否|string|产生该事件的标签名称,可以用来记录事件子 id,比如 `bannerId_123`,默认为空
|
||||
value|否|number|该事件的分值,默认 0
|
||||
|
||||
**使用示范**
|
||||
|
||||
在template里使用(比如:点击了一个id为123的首页banner)
|
||||
|
||||
```html
|
||||
<button @click="$pushBAIDU.event('首页banner', '点击', 'bannerId_123')">手动上报点击事件</button>
|
||||
```js
|
||||
this.$pushBAIDU.event(
|
||||
this.category,
|
||||
this.action,
|
||||
this.label,
|
||||
this.value
|
||||
);
|
||||
```
|
||||
|
||||
在method里使用(比如:点击了一个id为123的首页banner,并设置该事件的价值为1)
|
||||
## 更新记录
|
||||
|
||||
```js
|
||||
// this是Vue实例
|
||||
this.$pushBAIDU.event('首页banner', '点击', 'bannerId_123', 1);
|
||||
```
|
||||
点击查看:[releases](https://github.com/analyticsjs/vue-baidu-analytics/releases)
|
||||
|
||||
## License
|
||||
|
||||
[MIT License](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/LICENSE) © 2019 [chengpeiquan](https://github.com/chengpeiquan)
|
||||
|
21
SECURITY.md
Normal file
21
SECURITY.md
Normal file
@ -0,0 +1,21 @@
|
||||
# Security Policy
|
||||
|
||||
## Supported Versions
|
||||
|
||||
Use this section to tell people about which versions of your project are
|
||||
currently being supported with security updates.
|
||||
|
||||
| Version | Supported |
|
||||
| ------- | ------------------ |
|
||||
| 5.1.x | :white_check_mark: |
|
||||
| 5.0.x | :x: |
|
||||
| 4.0.x | :white_check_mark: |
|
||||
| < 4.0 | :x: |
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
Use this section to tell people how to report a vulnerability.
|
||||
|
||||
Tell them where to go, how often they can expect to get an update on a
|
||||
reported vulnerability, what to expect if the vulnerability is accepted or
|
||||
declined, etc.
|
60
demo/css/style.css
Normal file
60
demo/css/style.css
Normal file
@ -0,0 +1,60 @@
|
||||
#app,
|
||||
.section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
.section {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.title {
|
||||
font-size: 40px;
|
||||
color: #000;
|
||||
}
|
||||
.link {
|
||||
color: #666;
|
||||
text-decoration: none;
|
||||
}
|
||||
.link:hover {
|
||||
color: #000;
|
||||
}
|
||||
.nav {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.nav .item {
|
||||
color: #666;
|
||||
margin: 0 10px 20px;
|
||||
}
|
||||
.nav .cur {
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
}
|
||||
.label {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.text {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
width: 60px;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.input {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 240px;
|
||||
height: 40px;
|
||||
font-size: 14px;
|
||||
box-sizing: border-box;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.button {
|
||||
padding: 5px 20px;
|
||||
cursor: pointer;
|
||||
}
|
82
demo/js/main-for-vue2.js
Normal file
82
demo/js/main-for-vue2.js
Normal file
@ -0,0 +1,82 @@
|
||||
/**
|
||||
* 初始化路由
|
||||
* routes是来自 js/routes.js 里面的配置
|
||||
*/
|
||||
const router = new VueRouter({
|
||||
routes,
|
||||
linkActiveClass: 'cur',
|
||||
linkExactActiveClass: 'cur'
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* 引入统计插件
|
||||
* @description 自 v2.1.0 版本开始,需要使用 .default 去激活插件
|
||||
*/
|
||||
Vue.use(baiduAnalytics.default, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: true
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* 初始化Vue
|
||||
*/
|
||||
const app = new Vue({
|
||||
el: '#app',
|
||||
router,
|
||||
data () {
|
||||
return {
|
||||
pageUrl: '',
|
||||
category: '',
|
||||
action: '',
|
||||
label: '',
|
||||
value: '',
|
||||
|
||||
// 也可以绑定一个钩子变量去使用
|
||||
baidu: baiduAnalytics.usePush()
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.baidu.pv('/use-push-api/?from=mounted');
|
||||
},
|
||||
methods: {
|
||||
/**
|
||||
* 提交 pv
|
||||
* @description 支持两种推送方式
|
||||
*/
|
||||
pv () {
|
||||
// 使用默认全局 API
|
||||
this.$pushBAIDU.pv(this.pageUrl);
|
||||
|
||||
// 使用钩子 API
|
||||
// this.baidu.pv(this.pageUrl);
|
||||
},
|
||||
|
||||
/**
|
||||
* 提交事件
|
||||
* @description 支持两种推送方式
|
||||
*/
|
||||
event () {
|
||||
// 使用默认全局 API
|
||||
// this.$pushBAIDU.event(
|
||||
// this.category,
|
||||
// this.action,
|
||||
// this.label,
|
||||
// this.value
|
||||
// );
|
||||
|
||||
// 使用钩子 API
|
||||
this.baidu.event(
|
||||
this.category,
|
||||
this.action,
|
||||
this.label,
|
||||
this.value
|
||||
);
|
||||
}
|
||||
}
|
||||
});
|
127
demo/js/main-for-vue3.js
Normal file
127
demo/js/main-for-vue3.js
Normal file
@ -0,0 +1,127 @@
|
||||
/**
|
||||
* 导入需要用到的组件
|
||||
*/
|
||||
const { createRouter, createWebHashHistory } = VueRouter;
|
||||
const { createApp, getCurrentInstance, ref } = Vue;
|
||||
const { usePush } = baiduAnalytics;
|
||||
|
||||
|
||||
/**
|
||||
* 初始化路由
|
||||
* routes是来自 js/routes.js 里面的配置
|
||||
*/
|
||||
const router = createRouter({
|
||||
history: createWebHashHistory(),
|
||||
routes,
|
||||
linkActiveClass: 'cur',
|
||||
linkExactActiveClass: 'cur'
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* 创建实例
|
||||
*/
|
||||
const app = {
|
||||
setup () {
|
||||
/**
|
||||
* 新的推荐方式
|
||||
* @description 创建一个钩子变量去使用,更适合于 TypeScript 项目
|
||||
*/
|
||||
const baidu = usePush();
|
||||
|
||||
/**
|
||||
* 原来的方式
|
||||
* @description 从当前实例里,导入代理组件去操作,对 TS 项目不够友好
|
||||
*/
|
||||
// const instance = getCurrentInstance();
|
||||
// const { proxy } = instance;
|
||||
|
||||
|
||||
// 初始化要用到的数据
|
||||
const pageUrl = ref('');
|
||||
const category = ref('');
|
||||
const action = ref('');
|
||||
const label = ref('');
|
||||
const value = ref('');
|
||||
|
||||
/**
|
||||
* 提交 pv
|
||||
* @description 支持两种推送方式
|
||||
*/
|
||||
const pv = () => {
|
||||
// 通过钩子去操作
|
||||
baidu.pv(pageUrl.value);
|
||||
|
||||
// 也可以通过全局属性去操作
|
||||
// instance.appContext.config.globalProperties.$pushBAIDU.pv(pageUrl.value);
|
||||
|
||||
// 也可以通过代理组件去操作
|
||||
// proxy.$pushBAIDU.pv(pageUrl.value);
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交事件
|
||||
* @description 支持两种推送方式
|
||||
*/
|
||||
const event = () => {
|
||||
// 通过钩子去操作
|
||||
baidu.event(
|
||||
category.value,
|
||||
action.value,
|
||||
label.value,
|
||||
value.value
|
||||
);
|
||||
|
||||
// 也可以通过全局属性去操作
|
||||
// instance.appContext.config.globalProperties.$pushBAIDU.event(
|
||||
// category.value,
|
||||
// action.value,
|
||||
// label.value,
|
||||
// value.value
|
||||
// );
|
||||
|
||||
// 也可以通过代理组件去操作
|
||||
// proxy.$pushBAIDU.event(
|
||||
// category.value,
|
||||
// action.value,
|
||||
// label.value,
|
||||
// value.value
|
||||
// );
|
||||
}
|
||||
|
||||
// Vue 3.0 需要把模板要用到的东西 return 出去
|
||||
return {
|
||||
// 数据
|
||||
pageUrl,
|
||||
category,
|
||||
action,
|
||||
label,
|
||||
value,
|
||||
|
||||
// 方法
|
||||
pv,
|
||||
event
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* 初始化Vue
|
||||
*/
|
||||
createApp(app)
|
||||
// 启动路由
|
||||
.use(router)
|
||||
|
||||
// 启动插件
|
||||
.use(baiduAnalytics.default, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: true
|
||||
})
|
||||
|
||||
// 挂载到节点上
|
||||
.mount('#app');
|
@ -1,68 +0,0 @@
|
||||
// 定义路由信息
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
redirect: '/page1'
|
||||
},
|
||||
{
|
||||
path: '/page1',
|
||||
component: {
|
||||
template: '<div class="view">当前是 <strong>Page1</strong> 的路由</div>'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/page2',
|
||||
component: {
|
||||
template: '<div class="view">当前是 <strong>Page2</strong> 的路由</div>'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/page3',
|
||||
component: {
|
||||
template: '<div class="view">当前是 <strong>Page3</strong> 的路由</div>'
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
// 初始化路由
|
||||
const router = new VueRouter({
|
||||
routes,
|
||||
linkActiveClass: 'cur',
|
||||
linkExactActiveClass: 'cur'
|
||||
});
|
||||
|
||||
// 引入统计插件
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb',
|
||||
'ccccccccccccccccccc'
|
||||
],
|
||||
isDebug: true
|
||||
});
|
||||
|
||||
// 初始化Vue
|
||||
const app = new Vue({
|
||||
el: '#app',
|
||||
router,
|
||||
data () {
|
||||
return {
|
||||
pageUrl: '',
|
||||
category: '',
|
||||
action: '',
|
||||
label: '',
|
||||
value: ''
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
},
|
||||
methods: {
|
||||
pv () {
|
||||
this.$pushBAIDU.pv(this.pageUrl);
|
||||
},
|
||||
event () {
|
||||
this.$pushBAIDU.event(this.category, this.action, this.label, this.value);
|
||||
}
|
||||
}
|
||||
});
|
27
demo/js/routes.js
Normal file
27
demo/js/routes.js
Normal file
@ -0,0 +1,27 @@
|
||||
/**
|
||||
* 定义路由信息
|
||||
*/
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
redirect: '/page1'
|
||||
},
|
||||
{
|
||||
path: '/page1',
|
||||
component: {
|
||||
template: '<div class="view">当前是 <strong>Page1</strong> 的路由</div>'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/page2',
|
||||
component: {
|
||||
template: '<div class="view">当前是 <strong>Page2</strong> 的路由</div>'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/page3',
|
||||
component: {
|
||||
template: '<div class="view">当前是 <strong>Page3</strong> 的路由</div>'
|
||||
}
|
||||
}
|
||||
];
|
@ -3,64 +3,19 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>vue baidu analytics demo</title>
|
||||
<script src="https://unpkg.com/vue/dist/vue.js"></script>
|
||||
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
|
||||
<style>
|
||||
#app,
|
||||
.section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
.section {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.nav {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.nav .item {
|
||||
color: #666;
|
||||
margin: 0 10px 20px;
|
||||
}
|
||||
.nav .cur {
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
}
|
||||
.label {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.text {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
width: 60px;
|
||||
font-size: 14px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.input {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 240px;
|
||||
height: 40px;
|
||||
font-size: 14px;
|
||||
box-sizing: border-box;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.button {
|
||||
padding: 5px 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
<title>[Vue2] vue baidu analytics demo</title>
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-router@3"></script>
|
||||
<link rel="stylesheet" href="./css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="app">
|
||||
<h1>Hello App!</h1>
|
||||
|
||||
<section class="section">
|
||||
<h1 class="title">Hello Vue2 App!</h1>
|
||||
<a href="./vue3.html" class="link">[ 切换到vue3 ]</a>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>切换路由自动上报测试</h2>
|
||||
@ -104,7 +59,8 @@
|
||||
</div>
|
||||
|
||||
<script src="../dist/vue-baidu-analytics.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
<script src="./js/routes.js"></script>
|
||||
<script src="./js/main-for-vue2.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
66
demo/vue3.html
Normal file
66
demo/vue3.html
Normal file
@ -0,0 +1,66 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>[Vue3] vue baidu analytics demo</title>
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue@3"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-router@4"></script>
|
||||
<link rel="stylesheet" href="./css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="app">
|
||||
|
||||
<section class="section">
|
||||
<h1 class="title">Hello Vue3 App!</h1>
|
||||
<a href="./vue2.html" class="link">[ 切换到vue2 ]</a>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>切换路由自动上报测试</h2>
|
||||
<div class="nav">
|
||||
<router-link class="item" to="/page1" exact>Go to Page1</router-link>
|
||||
<router-link class="item" to="/page2">Go to Page2</router-link>
|
||||
<router-link class="item" to="/page3">Go to Page3</router-link>
|
||||
</div>
|
||||
<router-view></router-view>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>提交pv测试</h2>
|
||||
<label class="label">
|
||||
<span class="text">pageUrl</span>
|
||||
<input class="input" type="text" placeholder="输入页面的url" v-model="pageUrl">
|
||||
</label>
|
||||
<button class="button" @click="pv">提交一个pv</button>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>提交event测试</h2>
|
||||
<label class="label">
|
||||
<span class="text">category</span>
|
||||
<input class="input" type="text" placeholder="输入产生该事件的位置名称" v-model="category">
|
||||
</label>
|
||||
<label class="label">
|
||||
<span class="text">action</span>
|
||||
<input class="input" type="text" placeholder="输入产生该事件的行为描述" v-model="action">
|
||||
</label>
|
||||
<label class="label">
|
||||
<span class="text">label</span>
|
||||
<input class="input" type="text" placeholder="输入产生该事件的标签名称" v-model="label">
|
||||
</label>
|
||||
<label class="label">
|
||||
<span class="text">value</span>
|
||||
<input class="input" type="text" placeholder="输入该事件的分值" v-model="value">
|
||||
</label>
|
||||
<button class="button" @click="event">提交一个event</button>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<script src="../dist/vue-baidu-analytics.js"></script>
|
||||
<script src="./js/routes.js"></script>
|
||||
<script src="./js/main-for-vue3.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
26
dist/main.d.ts
vendored
26
dist/main.d.ts
vendored
@ -1 +1,25 @@
|
||||
export default function install(Vue: Vue, { router, siteIdList, isDebug }: Partial<Options>): boolean;
|
||||
import type { Options, Vue } from '@/types'
|
||||
/**
|
||||
* 暴露 Hooks
|
||||
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
|
||||
* @example
|
||||
* import { usePush } from 'vue-baidu-analytics'
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
export declare function usePush(): {
|
||||
pv: (pageUrl: string) => void
|
||||
event: (
|
||||
category: string,
|
||||
action: string,
|
||||
label: string,
|
||||
value: number
|
||||
) => void
|
||||
}
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
export default function install(
|
||||
Vue: Vue,
|
||||
{ router, siteIdList, isDebug }: Partial<Options>
|
||||
): void
|
||||
|
36
dist/modules/baidu.d.ts
vendored
36
dist/modules/baidu.d.ts
vendored
@ -1,10 +1,26 @@
|
||||
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;
|
||||
/**
|
||||
* 定义基础配置
|
||||
* 官方文档 https://tongji.baidu.com/open/api/more?p=guide_overview
|
||||
*/
|
||||
declare class BAIDU {
|
||||
siteId: string;
|
||||
isDebug: boolean;
|
||||
constructor(siteId?: string, isDebug?: boolean);
|
||||
/**
|
||||
* 初始化
|
||||
*/
|
||||
init(): void;
|
||||
/**
|
||||
* 设置要响应的站点
|
||||
*/
|
||||
setAccount(): void;
|
||||
/**
|
||||
* 提交PV、UV
|
||||
*/
|
||||
trackPageview(pageUrl: string): void;
|
||||
/**
|
||||
* 提交点击事件
|
||||
*/
|
||||
trackEvent(category: string, action: string, label: string, value: number): void;
|
||||
}
|
||||
export default BAIDU;
|
||||
|
7
dist/modules/getVueVersion.d.ts
vendored
Normal file
7
dist/modules/getVueVersion.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import type { Vue } from '@/types'
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
declare const getVueVersion: (Vue: Vue) => number
|
||||
export default getVueVersion
|
30
dist/modules/pushBAIDU.d.ts
vendored
30
dist/modules/pushBAIDU.d.ts
vendored
@ -1,9 +1,21 @@
|
||||
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;
|
||||
/**
|
||||
* 定义推送操作
|
||||
*/
|
||||
declare class PushBAIDU {
|
||||
siteIdList: string[];
|
||||
isDebug: boolean;
|
||||
constructor(siteIdList: string[], isDebug: boolean);
|
||||
/**
|
||||
* 批量部署站点
|
||||
*/
|
||||
init(): void;
|
||||
/**
|
||||
* 批量提交pv上报
|
||||
*/
|
||||
pv(pageUrl: string): void;
|
||||
/**
|
||||
* 批量提交事件上报
|
||||
*/
|
||||
event(category: string, action: string, label: string, value: number): void;
|
||||
}
|
||||
export default PushBAIDU;
|
||||
|
12
dist/types.d.ts
vendored
Normal file
12
dist/types.d.ts
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
export interface Options {
|
||||
router: any
|
||||
siteIdList: string[]
|
||||
isDebug: boolean
|
||||
}
|
||||
export interface Vue {
|
||||
prototype: any
|
||||
$pushBAIDU: PushBAIDU
|
||||
version: number | string
|
||||
config: any
|
||||
}
|
397
dist/vue-baidu-analytics.js
vendored
397
dist/vue-baidu-analytics.js
vendored
@ -1,122 +1,297 @@
|
||||
/**
|
||||
/*!
|
||||
* name: vue-baidu-analytics
|
||||
* version: v1.1.0
|
||||
* version: v2.2.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';
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
? factory(exports)
|
||||
: typeof define === 'function' && define.amd
|
||||
? define(['exports'], factory)
|
||||
: ((global =
|
||||
typeof globalThis !== 'undefined' ? globalThis : global || self),
|
||||
factory((global.baiduAnalytics = {})))
|
||||
})(this, function (exports) {
|
||||
'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;
|
||||
}());
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
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;
|
||||
}());
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
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;
|
||||
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.
|
||||
***************************************************************************** */
|
||||
function __spreadArray(to, from, pack) {
|
||||
if (pack || arguments.length === 2)
|
||||
for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i)
|
||||
ar[i] = from[i]
|
||||
}
|
||||
}
|
||||
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 to.concat(ar || from)
|
||||
}
|
||||
|
||||
return install;
|
||||
/**
|
||||
* 定义基础配置
|
||||
* 官方文档 https://tongji.baidu.com/open/api/more?p=guide_overview
|
||||
*/
|
||||
var BAIDU = /** @class */ (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 () {
|
||||
var _a
|
||||
window._hmt = window._hmt ? window._hmt : []
|
||||
var SCRIPT = document.createElement('script')
|
||||
SCRIPT['async'] = true
|
||||
SCRIPT['src'] = 'https://hm.baidu.com/hm.js?' + this.siteId
|
||||
;(_a = document.querySelector('head')) === null || _a === void 0
|
||||
? void 0
|
||||
: _a.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])
|
||||
}
|
||||
/**
|
||||
* 提交PV、UV
|
||||
*/
|
||||
BAIDU.prototype.trackPageview = function (pageUrl) {
|
||||
// 如果页面链接没传或者无效链接,则默认为根域名
|
||||
if (!pageUrl || typeof pageUrl !== 'string') {
|
||||
pageUrl = '/'
|
||||
}
|
||||
// 如果页面链接带上了域名,则需要过滤掉
|
||||
if (pageUrl.startsWith('http')) {
|
||||
var PAGE_CUT = pageUrl.split('/')
|
||||
var HOST_NAME = PAGE_CUT[0] + '//' + PAGE_CUT[2]
|
||||
pageUrl = pageUrl.replace(HOST_NAME, '')
|
||||
}
|
||||
// 设置响应 id 并提交数据
|
||||
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
|
||||
}
|
||||
// 设置响应id并提交数据
|
||||
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 = /** @class */ (function () {
|
||||
function PushBAIDU(siteIdList, isDebug) {
|
||||
this.siteIdList = __spreadArray([], 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()
|
||||
})
|
||||
}
|
||||
/**
|
||||
* 批量提交pv上报
|
||||
*/
|
||||
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
|
||||
})()
|
||||
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
var getVueVersion = function (Vue) {
|
||||
var version = 2
|
||||
// 获取Vue的版本号
|
||||
var VUE_VERSION = String(Vue.version)
|
||||
// Vue 2.x
|
||||
if (VUE_VERSION.slice(0, 2) === '2.') {
|
||||
version = 2
|
||||
}
|
||||
// Vue 3.x
|
||||
if (VUE_VERSION.slice(0, 2) === '3.') {
|
||||
version = 3
|
||||
}
|
||||
return version
|
||||
}
|
||||
|
||||
/**
|
||||
* 全局的数据
|
||||
*/
|
||||
var __GLOBAL__ = {
|
||||
pushBAIDU: {},
|
||||
}
|
||||
/**
|
||||
* 暴露 Hooks
|
||||
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
|
||||
* @example
|
||||
* import { usePush } from 'vue-baidu-analytics'
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
function usePush() {
|
||||
// 提交 pv
|
||||
function pv(pageUrl) {
|
||||
return __GLOBAL__.pushBAIDU.pv(pageUrl)
|
||||
}
|
||||
// 提交事件
|
||||
function event(category, action, label, value) {
|
||||
return __GLOBAL__.pushBAIDU.event(category, action, label, value)
|
||||
}
|
||||
return {
|
||||
pv: pv,
|
||||
event: event,
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
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
|
||||
if (!siteIdList) {
|
||||
throw new Error(
|
||||
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
|
||||
)
|
||||
}
|
||||
/**
|
||||
* 挂载推送的方法
|
||||
*/
|
||||
var pushBAIDU = new PushBAIDU(siteIdList, isDebug)
|
||||
__GLOBAL__.pushBAIDU = pushBAIDU
|
||||
/**
|
||||
* 挂载全局变量到 Vue 上
|
||||
* 获取Vue版本(获取失败则默认为2)
|
||||
*/
|
||||
var VUE_VERSION = getVueVersion(Vue) || 2
|
||||
switch (VUE_VERSION) {
|
||||
case 2:
|
||||
Vue.prototype.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
case 3:
|
||||
Vue.config.globalProperties.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
}
|
||||
/**
|
||||
* 部署站点并初始化
|
||||
*/
|
||||
if (siteIdList && Array.isArray(siteIdList)) {
|
||||
pushBAIDU.init()
|
||||
}
|
||||
/**
|
||||
* 路由切换时执行PV上报
|
||||
*/
|
||||
if (router) {
|
||||
router.afterEach(function () {
|
||||
// 获取要上报的链接(当前版本不需要拼接了)
|
||||
var PAGE_URL = window.location.href
|
||||
// 上报数据
|
||||
pushBAIDU.pv(PAGE_URL)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
exports.default = install
|
||||
exports.usePush = usePush
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true })
|
||||
})
|
||||
//# sourceMappingURL=vue-baidu-analytics.js.map
|
||||
|
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
171
dist/vue-baidu-analytics.min.js
vendored
171
dist/vue-baidu-analytics.min.js
vendored
@ -1,7 +1,172 @@
|
||||
/**
|
||||
/*!
|
||||
* name: vue-baidu-analytics
|
||||
* version: v1.1.0
|
||||
* version: v2.2.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)}))}}));
|
||||
!(function (t, e) {
|
||||
'object' == typeof exports && 'undefined' != typeof module
|
||||
? e(exports)
|
||||
: 'function' == typeof define && define.amd
|
||||
? define(['exports'], e)
|
||||
: e(
|
||||
((t =
|
||||
'undefined' != typeof globalThis
|
||||
? globalThis
|
||||
: t || self).baiduAnalytics = {})
|
||||
)
|
||||
})(this, function (t) {
|
||||
'use strict'
|
||||
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.'
|
||||
)
|
||||
;(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) {
|
||||
if (i || 2 === arguments.length)
|
||||
for (var n, o = 0, s = e.length; o < s; o++)
|
||||
(!n && o in e) ||
|
||||
(n || (n = Array.prototype.slice.call(e, 0, o)), (n[o] = e[o]))
|
||||
return t.concat(n || e)
|
||||
})([], t)),
|
||||
(this.isDebug = e)
|
||||
}
|
||||
return (
|
||||
(t.prototype.init = function () {
|
||||
var t = this
|
||||
this.siteIdList.forEach(function (i) {
|
||||
new e(i, t.isDebug).init()
|
||||
})
|
||||
}),
|
||||
(t.prototype.pv = function (t) {
|
||||
var i = this
|
||||
this.siteIdList.forEach(function (n) {
|
||||
new e(n, i.isDebug).trackPageview(t)
|
||||
})
|
||||
}),
|
||||
(t.prototype.event = function (t, i, n, o) {
|
||||
var s = this
|
||||
this.siteIdList.forEach(function (r) {
|
||||
new e(r, s.isDebug).trackEvent(t, i, n, o)
|
||||
})
|
||||
}),
|
||||
t
|
||||
)
|
||||
})(),
|
||||
n = { pushBAIDU: {} }
|
||||
;(t.default = function (t, e) {
|
||||
var o = e.router,
|
||||
s = e.siteIdList,
|
||||
r = e.isDebug,
|
||||
a = void 0 !== r && r
|
||||
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.'
|
||||
)
|
||||
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)
|
||||
})
|
||||
}
|
||||
}),
|
||||
(t.usePush = function () {
|
||||
return {
|
||||
pv: function (t) {
|
||||
return n.pushBAIDU.pv(t)
|
||||
},
|
||||
event: function (t, e, i, o) {
|
||||
return n.pushBAIDU.event(t, e, i, o)
|
||||
},
|
||||
}
|
||||
}),
|
||||
Object.defineProperty(t, '__esModule', { value: !0 })
|
||||
})
|
||||
//# sourceMappingURL=vue-baidu-analytics.min.js.map
|
||||
|
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
48
package.json
48
package.json
@ -1,25 +1,34 @@
|
||||
{
|
||||
"name": "vue-baidu-analytics",
|
||||
"version": "1.1.0",
|
||||
"description": "A data collection tool that supports reporting of single-page application data built by Vue-cli, based on baidu statistics.",
|
||||
"version": "2.2.0",
|
||||
"description": "A data collection tool that supports reporting of single-page application data built by Vue 3.0 & 2.0 & VuePress, based on baidu statistics.",
|
||||
"main": "dist/vue-baidu-analytics.min.js",
|
||||
"types": "vue-baidu-analytics.d.ts",
|
||||
"scripts": {
|
||||
"build": "rollup -c rollup.config.ts"
|
||||
"build": "rollup -c rollup.config.ts",
|
||||
"lint": "eslint src --ext .js,.ts",
|
||||
"prettier": "prettier --write src"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chengpeiquan/vue-baidu-analytics.git"
|
||||
"url": "git+https://github.com/analyticsjs/vue-baidu-analytics.git"
|
||||
},
|
||||
"keywords": [
|
||||
"baidu",
|
||||
"vue baidu",
|
||||
"vue 百度统计",
|
||||
"vue analytics",
|
||||
"vuepress analytics",
|
||||
"vue 3.0 baidu",
|
||||
"vue 3.0 百度统计",
|
||||
"vue 3.0 analytics",
|
||||
"spa analytics",
|
||||
"baidu统计",
|
||||
"vuepress统计",
|
||||
"百度统计"
|
||||
],
|
||||
"author": "chengpeiquan",
|
||||
"homepage": "https://github.com/analyticsjs/vue-baidu-analytics",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.11.1",
|
||||
@ -31,12 +40,33 @@
|
||||
"@rollup/plugin-json": "^4.1.0",
|
||||
"@rollup/plugin-node-resolve": "^9.0.0",
|
||||
"@types/babel__core": "^7.1.9",
|
||||
"rollup": "^2.26.4",
|
||||
"rollup-plugin-banner": "^0.2.1",
|
||||
"rollup-plugin-banner2": "^1.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^4.20.0",
|
||||
"@typescript-eslint/parser": "^4.20.0",
|
||||
"chalk": "^4.1.1",
|
||||
"eslint": "^7.23.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"husky": "4.2.3",
|
||||
"lint-staged": "^11.0.0",
|
||||
"prettier": "^2.3.1",
|
||||
"rollup": "^2.44.0",
|
||||
"rollup-plugin-banner2": "^1.2.2",
|
||||
"rollup-plugin-terser": "^7.0.0",
|
||||
"rollup-plugin-typescript2": "^0.27.2",
|
||||
"tslib": "^2.0.1",
|
||||
"rollup-plugin-typescript2": "^0.30.0",
|
||||
"tslib": "^2.3.0",
|
||||
"typescript": "^4.0.2"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged",
|
||||
"commit-msg": "node scripts/verifyCommit.js"
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,jsx,vue,ts,tsx}": [
|
||||
"prettier --write",
|
||||
"eslint --fix",
|
||||
"git add"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -7,14 +7,12 @@ import banner2 from 'rollup-plugin-banner2'
|
||||
import typescript from 'rollup-plugin-typescript2'
|
||||
import pkg from './package.json'
|
||||
|
||||
// 版权信息配置
|
||||
const ResolveBanner = () => {
|
||||
return `/**
|
||||
* name: ${pkg.name}
|
||||
* version: v${pkg.version}
|
||||
* author: ${pkg.author}
|
||||
*/
|
||||
`;
|
||||
// 输出选项
|
||||
const outputOptions = {
|
||||
format: 'umd',
|
||||
name: 'baiduAnalytics',
|
||||
exports: 'named',
|
||||
sourcemap: true
|
||||
}
|
||||
|
||||
export default {
|
||||
@ -22,32 +20,31 @@ export default {
|
||||
output: [
|
||||
{
|
||||
file: `dist/vue-baidu-analytics.js`,
|
||||
format: 'umd',
|
||||
name: 'baiduAnalytics',
|
||||
sourcemap: true
|
||||
...outputOptions
|
||||
},
|
||||
{
|
||||
file: `dist/vue-baidu-analytics.min.js`,
|
||||
format: 'umd',
|
||||
name: 'baiduAnalytics',
|
||||
plugins: [
|
||||
terser()
|
||||
],
|
||||
sourcemap: true
|
||||
...outputOptions
|
||||
}
|
||||
],
|
||||
plugins: [
|
||||
resolve({
|
||||
browser: true
|
||||
}),
|
||||
|
||||
babel({
|
||||
babelHelpers: 'bundled'
|
||||
}),
|
||||
|
||||
commonjs(),
|
||||
|
||||
json(),
|
||||
|
||||
typescript(),
|
||||
banner2( ResolveBanner, {
|
||||
sourcemap: true
|
||||
})
|
||||
|
||||
banner2(() => `/*!\n * name: ${pkg.name}\n * version: v${pkg.version}\n * author: ${pkg.author}\n */\n`)
|
||||
]
|
||||
};
|
||||
|
27
scripts/verifyCommit.js
Normal file
27
scripts/verifyCommit.js
Normal file
@ -0,0 +1,27 @@
|
||||
// Invoked on the commit-msg git hook by yorkie.
|
||||
|
||||
const fs = require('fs')
|
||||
const chalk = require('chalk')
|
||||
const msgPath = process.env.HUSKY_GIT_PARAMS
|
||||
const msg = fs.readFileSync(msgPath, 'utf-8').trim()
|
||||
|
||||
const commitRE =
|
||||
/^(revert: )?(feat|fix|docs|dx|style|refactor|perf|test|workflow|build|ci|chore|types|wip|release)(\(.+\))?: .{1,50}/
|
||||
|
||||
if (!commitRE.test(msg)) {
|
||||
console.log()
|
||||
console.error(
|
||||
` ${chalk.bgRed.white(' ERROR ')} ${chalk.red(
|
||||
`invalid commit message format.`
|
||||
)}\n\n` +
|
||||
chalk.red(
|
||||
` Proper commit message format is required for automated changelog generation. Examples:\n\n`
|
||||
) +
|
||||
` ${chalk.green(`feat(compiler): add 'comments' option`)}\n` +
|
||||
` ${chalk.green(
|
||||
`fix(v-model): handle events on blur (close #28)`
|
||||
)}\n\n` +
|
||||
chalk.red(` See .github/commit-convention.md for more details.\n`)
|
||||
)
|
||||
process.exit(1)
|
||||
}
|
20
src/global.d.ts
vendored
20
src/global.d.ts
vendored
@ -1,22 +1,8 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
/* eslint-disable no-unused-vars */
|
||||
export {}
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
_hmt: any
|
||||
}
|
||||
|
||||
interface Options {
|
||||
router: any
|
||||
siteIdList: string[]
|
||||
isDebug: boolean
|
||||
}
|
||||
|
||||
interface Vue {
|
||||
prototype: any
|
||||
$pushBAIDU: PushBAIDU
|
||||
}
|
||||
|
||||
interface To {
|
||||
fullPath: string
|
||||
}
|
||||
}
|
||||
}
|
||||
|
111
src/main.ts
111
src/main.ts
@ -1,43 +1,100 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
import getVueVersion from '@m/getVueVersion'
|
||||
import type { Options, Vue } from '@/types'
|
||||
|
||||
export default function install (Vue: Vue, { router, siteIdList, isDebug = false }: Partial<Options>) {
|
||||
/**
|
||||
* 全局的数据
|
||||
*/
|
||||
const __GLOBAL__ = {
|
||||
pushBAIDU: {} as PushBAIDU,
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 暴露 Hooks
|
||||
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
|
||||
* @example
|
||||
* import { usePush } from 'vue-baidu-analytics'
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
export function usePush() {
|
||||
// 提交 pv
|
||||
function pv(pageUrl: string) {
|
||||
return __GLOBAL__.pushBAIDU.pv(pageUrl)
|
||||
}
|
||||
|
||||
// 提交事件
|
||||
function event(
|
||||
category: string,
|
||||
action: string,
|
||||
label: string,
|
||||
value: number
|
||||
) {
|
||||
return __GLOBAL__.pushBAIDU.event(category, action, label, value)
|
||||
}
|
||||
|
||||
return {
|
||||
pv,
|
||||
event,
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
export default function install(
|
||||
Vue: Vue,
|
||||
{ router, siteIdList, isDebug = false }: Partial<Options>
|
||||
) {
|
||||
/**
|
||||
* 一些环境和参数的检查
|
||||
*/
|
||||
if ( typeof document === 'undefined' || typeof window === 'undefined' ) {
|
||||
return false;
|
||||
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.'
|
||||
)
|
||||
}
|
||||
|
||||
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.');
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 挂载推送的方法
|
||||
*/
|
||||
const pushBAIDU = new PushBAIDU(siteIdList, isDebug);
|
||||
Vue.prototype.$pushBAIDU = pushBAIDU;
|
||||
const pushBAIDU: PushBAIDU = new PushBAIDU(siteIdList, isDebug)
|
||||
__GLOBAL__.pushBAIDU = pushBAIDU
|
||||
|
||||
/**
|
||||
* 部署站点并初始化
|
||||
/**
|
||||
* 挂载全局变量到 Vue 上
|
||||
* 获取Vue版本(获取失败则默认为2)
|
||||
*/
|
||||
if ( siteIdList ) {
|
||||
pushBAIDU.init();
|
||||
const VUE_VERSION: number = getVueVersion(Vue) || 2
|
||||
switch (VUE_VERSION) {
|
||||
case 2:
|
||||
Vue.prototype.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
case 3:
|
||||
Vue.config.globalProperties.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
}
|
||||
|
||||
/**
|
||||
* 路由切换时执行PV上报
|
||||
/**
|
||||
* 部署站点并初始化
|
||||
*/
|
||||
router.afterEach( (to: To) => {
|
||||
const PAGE_PATH_DIR_COUNT = window.location.pathname.split('/').length;
|
||||
const PAGE_PATH = window.location.pathname.split('/').slice(0, PAGE_PATH_DIR_COUNT - 1).join('/');
|
||||
const PAGE_URL = router.mode === 'hash' ? `${PAGE_PATH}/#${to.fullPath}` : `${PAGE_PATH}${to.fullPath}`;
|
||||
if (siteIdList && Array.isArray(siteIdList)) {
|
||||
pushBAIDU.init()
|
||||
}
|
||||
|
||||
pushBAIDU.pv(PAGE_URL);
|
||||
});
|
||||
/**
|
||||
* 路由切换时执行PV上报
|
||||
* @description 自 v2.2.0 版本开始允许不强制引入路由
|
||||
*/
|
||||
if (router) {
|
||||
router.afterEach(() => {
|
||||
// 获取要上报的链接(当前版本不需要拼接了)
|
||||
const PAGE_URL: string = window.location.href
|
||||
|
||||
// 上报数据
|
||||
pushBAIDU.pv(PAGE_URL)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -1,90 +1,102 @@
|
||||
/**
|
||||
/**
|
||||
* 定义基础配置
|
||||
* 官方文档 https://tongji.baidu.com/open/api/more?p=guide_overview
|
||||
*/
|
||||
class BAIDU {
|
||||
siteId: string;
|
||||
isDebug: boolean;
|
||||
siteId: string
|
||||
isDebug: boolean
|
||||
|
||||
constructor (siteId: string = '', isDebug: boolean = false) {
|
||||
this.siteId = siteId;
|
||||
this.isDebug = isDebug;
|
||||
constructor(siteId: string = '', isDebug: boolean = false) {
|
||||
this.siteId = siteId
|
||||
this.isDebug = isDebug
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 初始化
|
||||
*/
|
||||
init () {
|
||||
window._hmt = window._hmt ? window._hmt : [];
|
||||
const SCRIPT = document.createElement('script');
|
||||
SCRIPT['async'] = true;
|
||||
SCRIPT['src'] = `https://hm.baidu.com/hm.js?${this.siteId}`;
|
||||
document.querySelector('head').appendChild(SCRIPT);
|
||||
init() {
|
||||
window._hmt = window._hmt ? window._hmt : []
|
||||
const 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}`);
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
`[vue-baidu-analytics] siteId load done.\nsiteId: ${this.siteId}`
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 设置要响应的站点
|
||||
*/
|
||||
setAccount () {
|
||||
window._hmt.push(['_setAccount', this.siteId]);
|
||||
setAccount() {
|
||||
window._hmt.push(['_setAccount', this.siteId])
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 提交PV、UV
|
||||
*/
|
||||
trackPageview (pageUrl: string) {
|
||||
trackPageview(pageUrl: string) {
|
||||
// 如果页面链接没传或者无效链接,则默认为根域名
|
||||
if ( !pageUrl || typeof pageUrl !== 'string' ) {
|
||||
pageUrl = '/';
|
||||
if (!pageUrl || typeof pageUrl !== 'string') {
|
||||
pageUrl = '/'
|
||||
}
|
||||
|
||||
// 如果页面链接带上了域名,则需要过滤掉
|
||||
if ( pageUrl.includes('http') ) {
|
||||
const PAGE_CUT = pageUrl.split('/');
|
||||
const HOST_NAME = `${PAGE_CUT[0]}//${PAGE_CUT[2]}`;
|
||||
pageUrl = pageUrl.replace(HOST_NAME, '');
|
||||
if (pageUrl.startsWith('http')) {
|
||||
const PAGE_CUT = pageUrl.split('/')
|
||||
const HOST_NAME = `${PAGE_CUT[0]}//${PAGE_CUT[2]}`
|
||||
pageUrl = pageUrl.replace(HOST_NAME, '')
|
||||
}
|
||||
|
||||
// 设置响应id并提交数据
|
||||
this.setAccount();
|
||||
window._hmt.push(['_trackPageview', pageUrl]);
|
||||
// 设置响应 id 并提交数据
|
||||
this.setAccount()
|
||||
window._hmt.push(['_trackPageview', pageUrl])
|
||||
|
||||
if ( this.isDebug ) {
|
||||
console.log(`[vue-baidu-analytics] track pv done.\nsiteId: ${this.siteId}\npageUrl: ${pageUrl}`);
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
`[vue-baidu-analytics] track pv done.\nsiteId: ${this.siteId}\npageUrl: ${pageUrl}`
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 提交点击事件
|
||||
*/
|
||||
trackEvent (category: string, action: string, label: string, value: number) {
|
||||
trackEvent(category: string, action: string, label: string, value: number) {
|
||||
// 前两个是必填项
|
||||
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.');
|
||||
return false;
|
||||
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 (!label || typeof label !== 'string') {
|
||||
label = ''
|
||||
}
|
||||
|
||||
if ( !Number(value) ) {
|
||||
value = 1;
|
||||
if (!Number(value)) {
|
||||
value = 1
|
||||
}
|
||||
|
||||
// 设置响应id并提交数据
|
||||
this.setAccount();
|
||||
window._hmt.push(['_trackEvent', category, action, label, value]);
|
||||
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}`);
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
`[vue-baidu-analytics] track event done.\nsiteId: ${this.siteId}\ncategory: ${category}\naction: ${action}\nlabel: ${label}\nvalue: ${value}`
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default BAIDU;
|
||||
export default BAIDU
|
||||
|
26
src/modules/getVueVersion.ts
Normal file
26
src/modules/getVueVersion.ts
Normal file
@ -0,0 +1,26 @@
|
||||
import type { Vue } from '@/types'
|
||||
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
const getVueVersion = (Vue: Vue): number => {
|
||||
let version: number = 2
|
||||
|
||||
// 获取Vue的版本号
|
||||
const VUE_VERSION: string = String(Vue.version)
|
||||
|
||||
// Vue 2.x
|
||||
if (VUE_VERSION.slice(0, 2) === '2.') {
|
||||
version = 2
|
||||
}
|
||||
|
||||
// Vue 3.x
|
||||
if (VUE_VERSION.slice(0, 2) === '3.') {
|
||||
version = 3
|
||||
}
|
||||
|
||||
return version
|
||||
}
|
||||
|
||||
export default getVueVersion
|
@ -1,47 +1,46 @@
|
||||
import BAIDU from '@m/baidu'
|
||||
|
||||
/**
|
||||
/**
|
||||
* 定义推送操作
|
||||
*/
|
||||
class PushBAIDU {
|
||||
siteIdList: string[];
|
||||
isDebug: boolean;
|
||||
siteIdList: string[]
|
||||
isDebug: boolean
|
||||
|
||||
constructor (siteIdList: string[], isDebug: boolean) {
|
||||
this.siteIdList = siteIdList;
|
||||
this.isDebug = isDebug;
|
||||
constructor(siteIdList: string[], isDebug: boolean) {
|
||||
this.siteIdList = [...siteIdList]
|
||||
this.isDebug = isDebug
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 批量部署站点
|
||||
*/
|
||||
init () {
|
||||
this.siteIdList.forEach( (siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug);
|
||||
SITE.init();
|
||||
});
|
||||
init() {
|
||||
this.siteIdList.forEach((siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug)
|
||||
SITE.init()
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 批量提交pv上报
|
||||
*/
|
||||
pv (pageUrl: string) {
|
||||
this.siteIdList.forEach( (siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug);
|
||||
SITE.trackPageview(pageUrl);
|
||||
});
|
||||
pv(pageUrl: string) {
|
||||
this.siteIdList.forEach((siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug)
|
||||
SITE.trackPageview(pageUrl)
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* 批量提交事件上报
|
||||
*/
|
||||
event (category: string, action: string, label: string, value: number) {
|
||||
this.siteIdList.forEach( (siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug);
|
||||
SITE.trackEvent(category, action, label, value);
|
||||
});
|
||||
event(category: string, action: string, label: string, value: number) {
|
||||
this.siteIdList.forEach((siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug)
|
||||
SITE.trackEvent(category, action, label, value)
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default PushBAIDU;
|
||||
export default PushBAIDU
|
||||
|
14
src/types.ts
Normal file
14
src/types.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
|
||||
export interface Options {
|
||||
router: any
|
||||
siteIdList: string[]
|
||||
isDebug: boolean
|
||||
}
|
||||
|
||||
export interface Vue {
|
||||
prototype: any
|
||||
$pushBAIDU: PushBAIDU
|
||||
version: number | string
|
||||
config: any
|
||||
}
|
@ -2,11 +2,15 @@
|
||||
"compilerOptions": {
|
||||
"target": "ES5",
|
||||
"module": "ES2015",
|
||||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"importHelpers": true,
|
||||
"moduleResolution": "node",
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"noImplicitAny": true,
|
||||
"removeComments": true,
|
||||
"preserveConstEnums": true,
|
||||
"sourceMap": true,
|
||||
"strictNullChecks": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
|
1
vue-baidu-analytics.d.ts
vendored
Normal file
1
vue-baidu-analytics.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
declare module 'vue-baidu-analytics'
|
Loading…
x
Reference in New Issue
Block a user