From 73389ad516af4cb49873cc19c2dc65efc77d6eb8 Mon Sep 17 00:00:00 2001 From: Joffrey BION Date: Sat, 9 Jun 2018 13:36:45 +0200 Subject: Split GameBrowser into multiple connected components --- frontend/src/scenes/GameBrowser/index.js | 73 -------------------------------- frontend/src/scenes/index.js | 2 +- 2 files changed, 1 insertion(+), 74 deletions(-) delete mode 100644 frontend/src/scenes/GameBrowser/index.js (limited to 'frontend/src/scenes') diff --git a/frontend/src/scenes/GameBrowser/index.js b/frontend/src/scenes/GameBrowser/index.js deleted file mode 100644 index 5a94e290..00000000 --- a/frontend/src/scenes/GameBrowser/index.js +++ /dev/null @@ -1,73 +0,0 @@ -// @flow -import { Button, Classes, InputGroup, Intent, Text } from '@blueprintjs/core'; -import type { List } from 'immutable'; -import React, { Component } from 'react'; -import { connect } from 'react-redux'; -import { Flex } from 'reflexbox'; -import { GameList } from '../../components/gameList'; -import type { Game } from '../../models/games'; -import type { Player } from '../../models/players'; -import { actions, getAllGames } from '../../redux/games'; -import { getCurrentPlayer } from '../../redux/players'; - -export type GameBrowserProps = { - currentPlayer: Player, - games: List, - createGame: (gameName: string) => void, - joinGame: (gameId: string) => void -} - -class GameBrowserPresenter extends Component { - props: { - currentPlayer: Player, - games: List, - createGame: (gameName: string) => void, - joinGame: (gameId: string) => void - }; - - _gameName: string | void = undefined; - - createGame = (e: SyntheticEvent<*>): void => { - e.preventDefault(); - if (this._gameName !== undefined) { - this.props.createGame(this._gameName); - } - }; - - render() { - return ( -
- - ) => (this._gameName = e.target.value)} - rightElement={} - /> - - Username: - {' '} - {this.props.currentPlayer && this.props.currentPlayer.displayName} - - - -
- ); - } -} - -const CreateGameButton = ({onClick}) => ( - -); - -const mapStateToProps = state => ({ - currentPlayer: getCurrentPlayer(state.get('players')), - games: getAllGames(state.get('games')), -}); - -const mapDispatchToProps = { - createGame: actions.requestCreateGame, - joinGame: actions.requestJoinGame, -}; - -export const GameBrowser = connect(mapStateToProps, mapDispatchToProps)(GameBrowserPresenter); diff --git a/frontend/src/scenes/index.js b/frontend/src/scenes/index.js index 5d75f275..eb15e626 100644 --- a/frontend/src/scenes/index.js +++ b/frontend/src/scenes/index.js @@ -1,6 +1,6 @@ import React from 'react'; import { Redirect, Route, Switch } from 'react-router-dom'; -import { GameBrowser } from './GameBrowser'; +import { GameBrowser } from '../components/game-browser/GameBrowser'; import { Lobby } from './Lobby'; import { SplashScreen } from './SplashScreen'; -- cgit