😎
React入門「Creact React App」は終わったので代替として「Remix V2」でチュートリアル:三目並べをする
これやろう。Creact React Appはサポート終わったので使わないほうがいいみたいだし、「Remix V2」でやろう。
Creact React Appの変わるものとして色々あるみたいだ。
素のReactならViteもあるけど、いまの選択肢ならRemixでOKなようです。
1.Remixのインストール
適当なディレクトリを作成して以下のコードでremixをインストールする。
npx create-remix@latest
remix v2.8.1 💿 Let's build a better website...
dir Where should we create your new project?
./my-remix-app
◼ Using basic template See https://remix.run/guides/templates for more
✔ Template copied
git Initialize a new git repository?
No
deps Install dependencies with npm?
Yes
開発ディレクトリに移動
cd my-remix-app
開発用ビルドとランコマンドで起動
npm run dev
Remixのインストール完。
2.Reactチュートリアル三目並べのスタイル、コンポーネントをコピーし適用する
root.tsxと同じ階層にCSSを新規作成するstyles.css
./app/styles.css
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
margin: 20px;
padding: 0;
}
h1 {
margin-top: 0;
font-size: 22px;
}
h2 {
margin-top: 0;
font-size: 20px;
}
h3 {
margin-top: 0;
font-size: 18px;
}
h4 {
margin-top: 0;
font-size: 16px;
}
h5 {
margin-top: 0;
font-size: 14px;
}
h6 {
margin-top: 0;
font-size: 12px;
}
code {
font-size: 1.2em;
}
ul {
padding-inline-start: 20px;
}
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
margin: 20px;
padding: 0;
}
.square {
background: #fff;
border: 1px solid #999;
float: left;
font-size: 24px;
font-weight: bold;
line-height: 34px;
height: 34px;
margin-right: -1px;
margin-top: -1px;
padding: 0;
text-align: center;
width: 34px;
}
.board-row:after {
clear: both;
content: '';
display: table;
}
.status {
margin-bottom: 10px;
}
.game {
display: flex;
flex-direction: row;
}
.game-info {
margin-left: 20px;
}
./app/root.tsxにスタイルシートを適用させる
root.tsx
import {
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration,
} from "@remix-run/react";
+ import "./styles.css";
./app/routes/_index.tsx
の内容を丸っと差し替える
./app/routes/_index.tsx
export default function Square() {
return <button className="square">X</button>;
}
これで準備OK!
あとはdevコマンドで開発用ビルドと起動しよう。
npm run dev
これでReactチュートリアル出来ます😆
React チュートリアル三目並べをType Scriptに書き直してやってみた
_index.tsx
import React, { useState } from 'react';
type SquareProps = {
value: 'X' | 'O' | null;
onSquareClick: () => void;
};
const Square: React.FC<SquareProps> = ({ value, onSquareClick }) => (
<button className="square" onClick={onSquareClick}>
{value}
</button>
);
type BoardProps = {
xIsNext: boolean;
squares: Array<'X' | 'O' | null>;
onPlay: (nextSquares: Array<'X' | 'O' | null>) => void;
};
const Board: React.FC<BoardProps> = ({ xIsNext, squares, onPlay }) => {
const handleClick = (i: number) => {
if (calculateWinner(squares) || squares[i]) {
return;
}
const nextSquares = squares.slice();
nextSquares[i] = xIsNext ? 'X' : 'O';
onPlay(nextSquares);
};
const winner = calculateWinner(squares);
let status: string;
if (winner) {
status = 'Winner: ' + winner;
} else {
status = 'Next player: ' + (xIsNext ? 'X' : 'O');
}
return (
<>
<div className="status">{status}</div>
<div className="board-row">
<Square value={squares[0]} onSquareClick={() => handleClick(0)} />
<Square value={squares[1]} onSquareClick={() => handleClick(1)} />
<Square value={squares[2]} onSquareClick={() => handleClick(2)} />
</div>
<div className="board-row">
<Square value={squares[3]} onSquareClick={() => handleClick(3)} />
<Square value={squares[4]} onSquareClick={() => handleClick(4)} />
<Square value={squares[5]} onSquareClick={() => handleClick(5)} />
</div>
<div className="board-row">
<Square value={squares[6]} onSquareClick={() => handleClick(6)} />
<Square value={squares[7]} onSquareClick={() => handleClick(7)} />
<Square value={squares[8]} onSquareClick={() => handleClick(8)} />
</div>
</>
);
};
const Game: React.FC = () => {
const [history, setHistory] = useState<Array<Array<'X' | 'O' | null>>>([Array(9).fill(null)]);
const [currentMove, setCurrentMove] = useState<number>(0);
const xIsNext = currentMove % 2 === 0;
const currentSquares = history[currentMove];
const handlePlay = (nextSquares: Array<'X' | 'O' | null>) => {
const nextHistory = history.slice(0, currentMove + 1).concat([nextSquares]);
setHistory(nextHistory);
setCurrentMove(nextHistory.length - 1);
};
const jumpTo = (nextMove: number) => {
setCurrentMove(nextMove);
};
const moves = history.map((_, move) => {
const description = move ? `Go to move #${move}` : 'Go to game start';
return (
<li key={move}>
<button onClick={() => jumpTo(move)}>{description}</button>
</li>
);
});
return (
<div className="game">
<div className="game-board">
<Board xIsNext={xIsNext} squares={currentSquares} onPlay={handlePlay} />
</div>
<div className="game-info">
<ol>{moves}</ol>
</div>
</div>
);
};
function calculateWinner(squares: Array<'X' | 'O' | null>): 'X' | 'O' | null {
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;
}
export default Game;
Discussion