Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@xunlei/vuex-connector
Advanced tools
基于 Vue 生态实现的Vuex store connector,借鉴 React 容器组件(Smart/Container Components)和展示组件(Dumb/Presentational Components)的模式
基于 Vue 生态实现的 Vuex store connector,借鉴 React 容器组件(Smart/Container Components)和展示组件(Dumb/Presentational Components)的模式
npm install @xunlei/vuex-connector
store/index.js
import VuexConnector from '@xunlei/VuexConnector';
// 将store传入connecor进行连接
export const connector = new VuexConnector(store);
containers/CounterContainer.vue
import Counter from '@/components/Counter';
import {connector} from '@/store';
export default connector.connect({
mapStateToProps: {
// total是Counter接收的prop之一
total: state => state.count,
},
mapCommitToProps: {
// onIncrease,onDecrease都是是Counter接收的prop
onIncrease: 'increment',
onDecrease: 'decrement',
},
})(Counter);
App.vue
<template>
<div>
<h1>容器组件-展示组件模式</h1>
<CounterContainer/>
</div>
</template>
<script lang="ts">
import CounterContainer from '@/containers/CounterContainer'
export default {
components: {
CounterContainer
}
}
</script>
class
VuexConnector构造函数需要传入一个 Vuex store 的实例
typescript 定义
connect({
mapStateToProps?,
mapGettersToProps?,
mapDispatchToProps?,
mapCommitToProps?
}): (Component: typeof Vue) => FunctionalComponentOptions<any>
connect 函数根据传入配置,生成一个高阶函数,高阶函数传入一个要连接的展示组件,即可生成最终的容器组件。
{
[prop: string]: (state) => anyState;
}
例子:
connector.connect({
mapStateToProps: {
userId: state => state.userId,
},
})(Counter);
{
[prop: string]: (getters) => anyGetter;
}
例子:
connector.connect({
mapGettersToProps: {
isLogin: getters => getters.isLogin,
},
})(Counter);
{
[prop: string]: action: string;
}
例子:
connector.connect({
mapDispatchToProps: {
// onIncrease,onDecrease都是是Counter接收的prop
onIncrease: 'increment',
onDecrease: 'decrement',
},
})(Counter);
{
[prop: string]: mutation: string;
}
例子:
connector.connect({
mapCommitToProps: {
// onIncrease,onDecrease都是是Counter接收的prop
onIncrease: 'increment',
onDecrease: 'decrement',
},
})(Counter);
Copyright (c) 2017 XunleiF2E
FAQs
基于 Vue 生态实现的Vuex store connector,借鉴 React 容器组件(Smart/Container Components)和展示组件(Dumb/Presentational Components)的模式
The npm package @xunlei/vuex-connector receives a total of 10 weekly downloads. As such, @xunlei/vuex-connector popularity was classified as not popular.
We found that @xunlei/vuex-connector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.