Board that corresponds to what the api gives us #4
5
ui/.prettierrc
Normal file
5
ui/.prettierrc
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"semi": true
|
||||
}
|
@ -1,7 +1,25 @@
|
||||
import React from 'react'
|
||||
import React from "react";
|
||||
import { Cell } from "./types";
|
||||
import styles from "../styles/board.module.css";
|
||||
|
||||
const Board = () => (
|
||||
<input/>
|
||||
)
|
||||
interface BoardProps {
|
||||
cells: Cell[];
|
||||
cellWidth: number;
|
||||
}
|
||||
|
||||
export default Board;
|
||||
const Board = (props: BoardProps) => {
|
||||
return (
|
||||
<div
|
||||
className={styles.gridContainer}
|
||||
style={{
|
||||
gridTemplateColumns: `repeat(${props.cellWidth}, 1fr)`,
|
||||
}}
|
||||
>
|
||||
{props.cells.map((cell) => (
|
||||
<div className={styles.gridCell}>{cell.terrainType}</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Board;
|
||||
|
30
ui/components/game.tsx
Normal file
30
ui/components/game.tsx
Normal file
@ -0,0 +1,30 @@
|
||||
import React from "react";
|
||||
import Board from "./board";
|
||||
|
||||
const Game = () => {
|
||||
return (
|
||||
<Board
|
||||
cellWidth={4}
|
||||
cells={[
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
{ terrainType: 1 },
|
||||
]}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default Game;
|
9
ui/components/types.ts
Normal file
9
ui/components/types.ts
Normal file
@ -0,0 +1,9 @@
|
||||
export interface Piece {
|
||||
rank: number;
|
||||
owner: number;
|
||||
}
|
||||
|
||||
export interface Cell {
|
||||
piece?: Piece;
|
||||
terrainType: number;
|
||||
}
|
@ -1,19 +1,19 @@
|
||||
import type { NextPage } from 'next'
|
||||
import Head from 'next/head'
|
||||
import Image from 'next/image'
|
||||
import Board from '../components/board'
|
||||
import styles from '../styles/Home.module.css'
|
||||
import type { NextPage } from "next";
|
||||
import Head from "next/head";
|
||||
import Image from "next/image";
|
||||
import Game from "../components/game";
|
||||
import styles from "../styles/BoardPage.module.css";
|
||||
|
||||
const Home: NextPage = () => (
|
||||
<>
|
||||
<div className={styles.main}>
|
||||
<Head>
|
||||
<title>Free Go Game</title>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<main>
|
||||
<Board />
|
||||
<Game />
|
||||
</main>
|
||||
</>
|
||||
)
|
||||
</div>
|
||||
);
|
||||
|
||||
export default Home
|
||||
export default Home;
|
||||
|
4
ui/styles/BoardPage.module.css
Normal file
4
ui/styles/BoardPage.module.css
Normal file
@ -0,0 +1,4 @@
|
||||
.main {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
}
|
8
ui/styles/board.module.css
Normal file
8
ui/styles/board.module.css
Normal file
@ -0,0 +1,8 @@
|
||||
.gridContainer {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.gridCell {
|
||||
border: 1px solid black;
|
||||
padding-top: 91%; /* 100% is supposed to be 1:1 aspect ratio but it doesn't look like it */
|
||||
}
|
Loading…
Reference in New Issue
Block a user