taro中集成redux-saga

taro中redux处理方案是采用redux-thunk,这里采用redux-saga解决异步问题,引入目前最新[email protected]

引入方式一

可以直接下载种子项目,已经引入了saga,并做好了相关配置,可在此基础上再次开发
taro-redux-saga-seed

// 下载种子项目
git clone https://github.com/Z-HNAN/taro-redux-saga-seed

// 安装依赖
cd taro-redux-saga-seed
npm i 

// 启动项目-小程序(微信开发者工具查看效果,有一个3s延迟的add示例)
npm run dev:weapp

引入方式二

在自己已经有的项目上引入,按照后续步骤自行引入即可

安装redux-saga

npm i redux-saga

更改目录形式

将每个文件放在模块中,利于查找,便于引入,后面引入saga文件也比较清晰,当然这里只是一个个人喜好,也可按照自己的目录形式来安排,这里只做一个参考,请多留意引入文件路径是否正确。

└─src                     
    │  app.jsx            
    │  app.less           
    │  index.html         
    │                     
    ├─pages               
    │  └─index            
    │          action.js  
    │          index.jsx  
    │          index.less 
    │          reducer.js 
    |          saga.js
    │                     
    └─store               
            index.js      
            reducer.js
            saga.js    

引入index模块的saga

  • pages/index/saga.js捕获当前模块中的action
import { put, delay, takeEvery} from 'redux-saga/effects'

function* asyncAddRequest (action) {
  const { timeout } = action.payload
  yield delay(timeout)
  yield put({ type: 'ADD' })
}

export default function* () {
  yield takeEvery('ASYNC_ADD', asyncAddRequest)
}

配置根saga文件

  • store/saga.js启动各个模块的saga
import { all } from 'redux-saga/effects'

import index from '../pages/index/saga'

export default function* () {
  yield all([
    index()
  ])
}

在store中引入sagaMiddleware

  • store/index.jssaga连接到store
    • 引入saga
    • 配置saga中间件到middlewares
    • 启动saga
import { createStore, applyMiddleware, compose } from 'redux'
/* 引入saga */
import createSagaMiddleware from 'redux-saga'
import rootSaga from './saga'
import rootReducer from './reducer'

const composeEnhancers =
  typeof window === 'object' &&
  window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ?   
    window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({
      // Specify extension’s options like name, actionsBlacklist, actionsCreators, serialize...
    }) : compose

/* 生成sagaMiddleware */
const sagaMiddleware = createSagaMiddleware();

const middlewares = [
  /* 应用saga */
  sagaMiddleware
]

/* 处理redux-logger */
if (process.env.NODE_ENV === 'development' && process.env.TARO_ENV !== 'quickapp') {
  middlewares.push(require('redux-logger').createLogger())
}

const enhancer = composeEnhancers(
  applyMiddleware(...middlewares),
  // other store enhancers if any
)

export default function configStore () {
  const store = createStore(rootReducer, enhancer)
  /* 启动saga */
  sagaMiddleware.run(rootSaga)
  return store
}

检测

  • pages/index/index.jsx 本例以taro的redux为基础进行测试
import Taro, { Component } from '@tarojs/taro'
import { View, Button, Text } from '@tarojs/components'
import { connect } from '@tarojs/redux'

import { add, minus, asyncAdd } from './action'

import './index.less'

const mapStateToProps = (state) => {
  return {
    counter: state.index.num
  }
}

const mapDispatchToProps = (dispatch) => {
  return {
    add: () => {
      dispatch(add())
    },
    asyncAdd: () => {
      dispatch(asyncAdd({ timeout: 3000 }))
    },
    minus: () => {
      dispatch(minus())
    }
  }
}

@connect(mapStateToProps, mapDispatchToProps)
class Index extends Component {

    config = {
    navigationBarTitleText: '首页'
  }

  componentWillReceiveProps (nextProps) {
    // console.log(this.props, nextProps)
  }

  componentWillUnmount () { }

  componentDidShow () { }

  componentDidHide () { }

  render () {
    return (
      <View className='index'>
        <Button className='add_btn' onClick={this.props.add}>+</Button>
        <Button className='dec_btn' onClick={this.props.minus}>-</Button>
        <Button className='dec_btn' onClick={this.props.asyncAdd}>async</Button>
        <View><Text>{this.props.counter}</Text></View>
        <View><Text>Hello, Redux-saga</Text></View>
      </View>
    )
  }
}

export default Index

你可能感兴趣的:(taro,redux-saga)