1.0.2 • Published 6 years ago

wpy-redux v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

基于 wepy-redux 更改连接风格 更接近react-redux的写法

wepy 和 redux 结合的连接器

安装

npm install wpy-redux --save

示例

<template>
  <view class="container">
    <text class="info">{{num}}</text>
    <text class="info">{{inc}}</text>
    <button @tap="addNumAct" size="mini">  + num  </button>
    <button @tap="asyncIncAct" size="mini">  async inc </button>
  </view>
</template>

<script>
  import wepy from 'wepy'
  import { connect } from 'wpy-redux'
  import List from '../components/list'
  import Panel from '../components/panel'
  import Counter from '../components/counter'
  import Group from '../components/group'
  import { INCREMENT } from '../store/types/counter'
  import { asyncInc } from '../store/actions'
  import testMixin from '../mixins/test'
  import {bindActionCreators} from 'redux';


  const mapStateToProps=(state,props)=>({
    num:state.counter.num,
    inc:'inc'
  })

  const mapDispatchToProps=(dispatch)=>bindActionCreators({
    addNumAct:()=>async (dispatch,getState)=>{
      dispatch({type:INCREMENT})
    },
    asyncIncAct:asyncInc
  },dispatch)

  @connect(mapStateToProps,mapDispatchToProps)
  export default class Index extends wepy.page {
  	// ...
    methods = {
      // ...
    }
    // ...
    onLoad() {
    }
  }
</script>

使用

  1. 初始化 store
// app.wpy
import { createStore,applyMiddleware } from 'redux'
import { setStore } from 'wpy-redux'
import rootReducer from './reducers'
//支持action内dispatch
import thunk from 'redux-thunk'

const store = createStore(rootReducer,applyMiddleware(thunk))
// set!!
setStore(store)
  1. 得到 store
import { getStore } from 'wpy-redux'

const store = getStore()
// 可以直接使用 store 实例了
// dispatch
store.dispatch({type: 'xx'})
// state
const state = store.getState()
  1. 连接组件,就以上边的示例来说明
// ...
  import { connect } from 'wpy-redux'
   const mapStateToProps=(state,props)=>({
    num:state.counter.num,
    inc:'inc'
  })

  const mapDispatchToProps=(dispatch)=>bindActionCreators({
    addNum:()=>async (dispatch,getState)=>{
      dispatch({type:INCREMENT})
    },
    asyncIncAct:asyncInc
  },dispatch)

  @connect(mapStateToProps,mapDispatchToProps)
  export default class Index extends wepy.page {
  	// ...
    methods = {
      // ...
    }
    // ...
    onLoad() {
    }
  }
1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

1.5.6

6 years ago