// @flow import { Button, Classes } from '@blueprintjs/core' import type { List } from 'immutable'; import React from 'react'; import { connect } from 'react-redux'; import type { ApiLobby } from '../../api/model'; import type { GlobalState } from '../../reducers'; import { actions } from '../../redux/actions/lobby'; import { getAllGames } from '../../redux/games'; import './GameList.css'; import { GameStatus } from './GameStatus'; import { PlayerCount } from './PlayerCount'; type GameListProps = { games: List, joinGame: (gameId: string) => void, }; const GameListPresenter = ({ games, joinGame }: GameListProps) => ( {games.map((game: ApiLobby) => )}
); const GameListHeaderRow = () => ( Name Status Nb Players Join ); const GameListItemRow = ({game, joinGame}) => ( {game.name} ); const JoinButton = ({game, joinGame}) => { const disabled = game.state !== 'LOBBY'; const onClick = () => joinGame(game.id); return