redux-counter计数器

目录

0.redux脑图

1.工作流程

2.项目结构

3.源码效果

app.jsx

actions.js

actions-types.js

reducers.js

index.js

store.js


0.redux脑图

等我学完再做

1.工作流程

2.项目结构

3.源码效果

app.jsx

import React, {Component} from 'react'
import {INCREMENT, DECREMENT} from '../redux/action-types.js'
import * as actions from '../redux/actions'
export default class App extends Component {

	increment = () =>{
		//1.得到选择,增加数量
		const number = this.select.value*1
		//2.调用store的方法更新状态
		// this.props.store.dispatch({type:INCREMENT,data:number})
		this.props.store.dispatch(actions.increment(number))
	}
	
	decrement = () =>{
		//1.得到选择,增加数量
		const number = this.select.value*1
		//2.调用store的方法更新状态
		// this.props.store.dispatch({type:DECREMENT,data:number})
		this.props.store.dispatch(actions.decrement(number))
	}
	
	incrementIfOdd = () =>{
		//1.得到选择,增加数量
		const number = this.select.value*1
		//2.得到原本count状态,并计算新count
		const count = this.props.store.getState()
		//判断满足条件再更新
		if(count%2===1){
			//3.更新状态
			// this.props.store.dispatch({type:INCREMENT,data:number})
			this.props.store.dispatch(actions.increment(number))
		}		
	}
	
	incrementAsync = () =>{
		//1.得到选择,增加数量
		const number = this.select.value*1
		//2.得到原本count状态,并计算新count

		//启动延时定时器
		setTimeout(() => {
			//3.更新状态
			this.props.store.dispatch(actions.decrement(number))
		},1000)		
	}
	
	render() {
		//从外层获取参数
		//传结构用const {count},传数值用户= count
		const count = this.props.store.getState()
		// debugger
		return (
		  <div>
		  <p>click {count} times</p>
		    <div>
		      <select ref={select => this.select =select}>
			    <option value="1">1</option>
			    <option value="2">2</option>
			    <option value="3">3</option>
			  </select>&nbsp;
			  <button onClick={this.increment}>+</button>
			  <button onClick={this.decrement}>-</button>&nbsp;
			  <button onClick={this.incrementIfOdd}>increment if odd</button>
			  <button onClick={this.incrementAsync}>increment async</button>	  					      
		    </div>		      
		  </div>
		
	  
	  )
	}
}

actions.js

/*
action creator模块
 */
import {INCREMENT, DECREMENT} from './action-types'

export const increment = (number) => ({type: INCREMENT,data: number})
export const decrement = (number) => ({type: DECREMENT,data: number})

actions-types.js

/*
Action对象的type常量名称模块
 */
export const INCREMENT = 'increment'
export const DECREMENT = 'decrement'

reducers.js

/* 包含n个reducer函数的模块 */
import {INCREMENT, DECREMENT} from './action-types'
//指定形参默认值
export function counter(state = 0, action) {
  console.log('counter', state, action)
  switch (action.type) {
    case INCREMENT:
      return state + action.data
    case DECREMENT:
      return state - action.data
    default:
      return state
  }
}

index.js

import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/app';
import {createStore} from 'redux'
import {counter} from './redux/reducers'
//根据counter函数创建store对象
const store = createStore(counter)//内部会第一次调用reducer函数得到初始state
console.log(store)

//重绘状态
function render(){
	ReactDOM.render(<App store={store}/>, document.getElementById('root'))
}
//初始化渲染
render()
//订阅监听(store中的状态变化了,就会自动进行重绘)
store.subscribe(render)

store.js

index.js这部分其实可以拿出来单独作为一个模块

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值