React のチュートリアル(6)
※ これは 2023/05/18 時点の create-react-app@5.0.1 の情報です
最新版では動作が異なる可能性がありますのでご注意ください
前回に引き続き React のチュートリアルの続きを焦らず少しずつ進める
前回作成した index.js
の中で下記の部分を
class Square extends React.Component { render() { return ( <button className="square" onClick={() => this.props.onClick()} > {this.props.value} </button> ); } }
次のように変更
function Square(props) { return ( <button className="square" onClick={props.onClick}> {props.value} </button> ); }
<Square>
を状態を持たないただの関数に書き換えた
前回で
この時点で全体のコードはこんな感じ
import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; function Square(props) { return ( <button className="square" onClick={props.onClick}> {props.value} </button> ); } class Board extends React.Component { constructor(props) { super(props); this.state = { squares: Array(9).fill(null), }; } handleClick(i) { const squares = this.state.squares.slice(); squares[i] = 'X'; this.setState({ squares: squares }); } renderSquare(i) { return ( <Square value={this.state.squares[i]} onClick={() => this.handleClick(i)} /> ); } render() { const status = 'Next player: X'; return ( <div> <div className="status">{status}</div> <div className="board-row"> {this.renderSquare(0)} {this.renderSquare(1)} {this.renderSquare(2)} </div> <div className="board-row"> {this.renderSquare(3)} {this.renderSquare(4)} {this.renderSquare(5)} </div> <div className="board-row"> {this.renderSquare(6)} {this.renderSquare(7)} {this.renderSquare(8)} </div> </div> ); } } class Game extends React.Component { render() { return ( <div className="game"> <div className="game-board"> <Board /> </div> <div className="game-info"> <div>{/* status */}</div> <ol>{/* TODO */}</ol> </div> </div> ); } } // ======================================== const root = ReactDOM.createRoot(document.getElementById("root")); root.render(<Game />);
これを実行、VSCode のターミナルから下記コマンドを実行してブラウザで開く
npm start
やはり動作上は変わらずリファクタリングされているだけ