前提・実現したいこと
現在ポートフォリオ作成のための勉強しており、React.jsでReduxを導入してボタンをクリックするとステートが変更されるコードを記述しております。
参考書を見ながら記述しており、ブラウザ上で表示する際に以下のエラーが起きました。
発生している問題・エラーメッセージ
Failed to compile. src/App.js Line 36:3: 'style' is not defined no-undef Line 55:3: 'style' is not defined no-undef Search for the keywords to learn more about each error.
該当のソースコード
JavaScript
1import React,{ Component } from 'react'; 2import './App.css'; 3import { connect } from 'react-redux'; 4 5function mappingState(state){ 6 return state; 7} 8 9class App extends Component{ 10 constructor(props){ 11 super(props); 12 } 13 render(){ 14 return( 15 <div> 16 <h1>Redux</h1> 17 <Message /> 18 <Button /> 19 </div> 20 ); 21 } 22} 23App = connect()(App); 24 25class Message extends Component{ 26 style = { 27 fontSize:"20pt", 28 padding:"20px 5px" 29 } 30 render(){ 31 return( 32 <p style={this.style}> 33 {this.props.message}: {this.props.counter} 34 </p> 35 ); 36 } 37} 38Message = connect(mappingState)(Message); 39 40 41class Button extends Component{ 42 style = { 43 fontSize:"16pt", 44 padding:"5px 10px" 45 } 46 constructor(props){ 47 super(props); 48 this.doAction = this.doAction.bind(this); 49 } 50 doAction(e){ 51 if (e.shiftKey){ 52 this.props.dispatch({type:'DECREMENT'}); 53 }else{ 54 this.props.dispatch({type:'INCREMENT'}); 55 } 56 } 57 render(){ 58 return( 59 <button style={this.style} onClick={this.action}>click</button> 60 ) 61 } 62} 63Button = connect()(Button); 64 65export default App;
試したこと
- Reduxを導入する前までは、コンポーネントクラスにcss情報をオブジェクトにしてJSXにstyleを反映させることはできていたので、プロジェクトを作り直して再度Reduxを導入。
→同じエラー
- スペルミスかと思い参考書の配布用ソースコードで、VSコードのCompare Active File with Clipbordで検証後、各所スペースの有無が見られたため、配布用ソースコードからindex.jsとApp.jsに対してコードをコピペして実行。
→同じエラー
- 参考書で使用しているNode.js/Reduxのバージョンが現在のバージョン仕様が大きく異なり記述規則が違うのかと思い、バージョンによる変更内容を調べる。
参考書:node-10.14.0 redux-4.0.1 _ 自分:node-14.15.4 redux-4.0.5
→仕様変更を見つけられず。
補足情報(FW/ツールのバージョンなど)
- node-14.15.4
- redux-4.0.5
- macOSを使用
Reduxを導入する際に用いたコマンド
- npm install --save redux
- npm install --save react-redux
回答1件
あなたの回答
tips
プレビュー