
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
react-tag-component
Advanced tools
react埋点组件,持续集成埋点方式
$ npm install --save react-tag-component
import React from 'react'
import { init, TD } from 'react-tag-component'
//埋点数据
const data = const data = {
'mount': 'componentdidmount 生命周期埋点',
'click': 'click 事件埋点'
}
/**
* 埋点事件
* @param {Object} bd 埋点数据,由内部注入
* @param {Object} tag 组件上Tag对象,由内部注入
*/
function log(bd, tag) {
const ld = bd[tag.key] //获取埋点数据仓库对应值
... //相应处理
}
//数据、事件注入
init(data)(log)
//埋点组件
export default class App extends React.Component {
constructor(props) {
super(props)
}
render() {
return <div>
<TD onClick={() => console.log('点击')} Tag={{ key: 'click', params: 'c', type: 'click' }}>
点击时输出
</TD>
</div>
}
}
1.引入接口:
名 | 描述 | 使用
init 初始换函数,数据注入。 init(数据)(方法)
injectData 埋点数据注入(追加)。 injectData(数据)
injectFunction 埋点方法注入(替换)。 injectFunction(方法)
TD 埋点组件。 <TD Tag={...}>
2.组件参数
名 | 描述
type[必填] 埋点方式。
pid[type=='scroll'] 祖先节点id(用于滑动展现容器节点)。
... 扩充参数可在埋点事件中获取。
3.type类型
名 | 描述
render render时执行
click click时执行
mount componentDidMount生命周期执行
scroll 上滑/左滑展现时执行
如有问题,联系QQ: 784846435
FAQs
react埋点组件
The npm package react-tag-component receives a total of 1 weekly downloads. As such, react-tag-component popularity was classified as not popular.
We found that react-tag-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.