All files index.js

18.18% Statements 6/33
29.41% Branches 5/17
8.33% Functions 1/12
15.62% Lines 5/32

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228                                                                                                                                                                                                                                                                                                                                                                                                                        3x                   3x 12x 12x 3x                    
/**
 * @file 3目並べゲームを作成するチュートリアル。
 */
 
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
 
/**
 * Squareコンポーネントを描画する。
 * Squareコンポーネントの中に配置するbuttonタグを描画する。
 * buttonタグのonClick属性にはpropsのonClick関数を設定する。
 * @param props Squareコンポーネントのプロパティ。
 * @return tag buttonタグを返す。
 */
function Square(props) {
  return (
    <button className="square" onClick={props.onClick}>
      {props.value}
    </button>
  );
}
 
/**
 * Boardコンポーネント。
 */
class Board extends React.Component {
  /**
   * インデックスを指定してBoardコンポーネントの上に配置されるSquare
   * コンポーネントを描画する関数。
   * <ul>
   * <li>
   *   value属性 - Boardコンポーネントのプロパティのsquares配列要素の
   *   値('O' または 'X')を設定する。
   * </li>
   * <li>
   *   onClick属性 - BoardコンポーネントのプロパティのonClick
   *   関数を設定する。
   * </li>
   * </ul>
   * @param i Squareコンポーネントのインデックス。
   * @return tag Squareタグを返す。
   */
  renderSquare(i) {
    return (
      <Square
        value={this.props.squares[i]}
        onClick={() => this.props.onClick(i)}
      />
    );
  }
 
  /**
   * 3 x 3 のSquareコンポーネントが配置されたBoardコンポーネントを描画する。
   * @return tag 3x3のSquareタグを返す。
   */
  render() {
    return (
      <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>
    );
  }
}
 
/**
 * Gameコンポーネント。
 */
class Game extends React.Component {
  /**
   * Gameコンポーネントを構築する。
   * Gameコンポーネントのプロパティに以下のプロパティを設定する。
   * <ul>
   * <li>
   *   history< - Bordコンポーネントに配置された3x3のSquareコンポーネントの
   *     表示内容の履歴の初期値として、3x3のSquareすべてにnullを設定する。
   * </li>
   * <li>
   *   stepNumber - 対局のカウンタとして0を設定する。
   * </li>
   * <li>
   *   xIsNext - true を設定する。
   * </li>
   * </ul>
   */
  constructor(props) {
    super(props);
    this.state = {
      history: [{
        squares: Array(9).fill(null),
      }],
      stepNumber: 0,
      xIsNext: true,
    };
  }
 
  /**
   * 指定されたインデックスのSquareコンポーネントがクリックされたときの処理を
   * 実行する関数。
   * TODO 関数の処理内容を記載する
   * @param i Squareコンポーネントのインデックス。
   */
  handleClick(i) {
    const history = this.state.history.slice(0, this.state.stepNumber + 1);
    const current = history[history.length - 1];
    const squares = current.squares.slice();
    if (calculateWinner(squares) || squares[i]) {
      return;
    }
    squares[i] = this.state.xIsNext ? 'X' : 'O';
    this.setState({
      history: history.concat([{
        squares: squares,
      }]),
      stepNumber: history.length,
      xIsNext: !this.state.xIsNext,
    });
  }
 
  /**
   * 指定された対局の履歴まで戻る。
   * Gameコンポーネントのプロパティを以下のように設定する。
   * <ul>
   * <li>
   *   stepNumber - step引数の値
   * </li>
   * <li>
   *   xIsNext - step引数が偶数の場合はtrue、そうでない場合はfalse
   * </li>
   * </ul>
   * @param step 履歴のインデックスを指定する。
   */
  jumpTo(step) {
    this.setState({
      stepNumber: step,
      xIsNext: (step %2) === 0,
    });
  }
 
  /**
   * Gameコンポーネントを描画する。
   * TODO 処理内容を記載する。
   * @return tag Bordコンポーネントと対局履歴を配置したdivタグを返す。
   */
  render() {
    const history = this.state.history;
    const current = history[this.state.stepNumber];
    const winner = calculateWinner(current.squares);
 
    const moves = history.map((step, move) => {
      const desc = move ? 'Go to move #' + move : 'Go to game start';
      return (
        <li key={move}>
          <button onClick={() => this.jumpTo(move)}>{desc}</button>
        </li>
      );
    });
 
    let status;
    if (winner) {
      status = 'Winner: ' + winner;
    } else {
      status = 'Next player: ' + (this.state.xIsNext ? 'X' : 'O');
    }
 
    return (
      <div className="game">
        <div className="game-board">
          <Board
            squares={current.squares}
            onClick={(i) => this.handleClick(i)}
          />
        </div>
        <div className="game-info">
          <div>{status}</div>
          <ol>{moves}</ol>
        </div>
      </div>
    );
  }
}
 
// ========================================
/**
 * 勝者の判定をする関数。
 * @param suquares 3x3のSquareコンポーネントに表示される記号の配列。
 * @return String 勝者が判定できた場合は勝者の記号('O'または'X')を返す。
 *   勝者が判定出来ない場合はnullを返す。
 */
function calculateWinner(squares) {
  const lines = [
    [0, 1, 2],
    [3, 4, 5],
    [6, 7, 8],
    [0, 3, 6],
    [1, 4, 7],
    [2, 5, 8],
    [0, 4, 8],
    [2, 4, 6],
  ];
  for (let i = 0; i < lines.length; i++) {
    const [a, b, c] = lines[i];
    if (squares[a] && squares[a] === squares[b] && squares[a] === squares[c]) {
      return squares[a];
    }
  }
  return null;
}
 
// ========================================
 
//const root = ReactDOM.createRoot(document.getElementById("root"));
//root.render(<Game />);