前提・実現したいこと
このreduxの書き方をアロー関数を使った書き方にしていただきたいです
該当のソースコード
React.js
1import React from 'react' 2import ReactDOM from 'react-dom' 3import { createStore } from 'redux' 4import { Provider, connect } from 'react-redux' 5 6//Presentational Components 7class AppComponents extends React.Component { 8 9 send(e){ 10 this.props.onClick(this.refs.inputText.value); 11 } 12 13 14 render() { 15 return ( 16 <div> 17 <input type="text" defaultValue="" ref="inputText" /> { /* 入力フォーム */ } 18 <button onClick={this.send.bind(this)}>計算</button> { /* ボタン */ } 19 <br /> 20 {this.props.price} { /* 表示させる税込の金額 */ } 21 </div> 22 ); 23 } 24} 25 26function mapStateToProps(state) { 27 return { 28 price: state.price 29 }; 30} 31 32function mapDispatchToProps(dispatch) { 33 return { 34 onClick(price){ 35 dispatch(addTax(price)); 36 } 37 }; 38} 39 40let AppContainer = connect( 41 mapStateToProps, 42 mapDispatchToProps 43)(AppComponents); 44 45 46 47// ActionCreator 48const ADDTAX = 'ADDTAX'; 49function addTax(price) { 50 return { 51 type: ADDTAX, 52 price 53 }; 54} 55 56 57// Reducer 58function appReducer(state, action) { 59 switch (action.type) { 60 case 'ADDTAX': 61 return ( 62 Object.assign({}, state, {price: action.price * 1.08}) 63 ); 64 default: 65 return state 66 } 67} 68 69 70//state初期化 71const initialState = { 72 price: '' 73}; 74 75//store作成 76const store = createStore(appReducer, initialState); 77 78//レンダリング 79ReactDOM.render( 80 <Provider store={store}> 81 <AppContainer /> 82 </Provider>, 83 document.getElementById('root') 84);
回答1件
あなたの回答
tips
プレビュー