summaryrefslogtreecommitdiff
path: root/frontend/src/containers/gameBrowser.js
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 19:41:13 +0100
committerVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 19:41:13 +0100
commit20f26d37846d231ca74b3834b8282f8d497be64d (patch)
treec2c0978707def2f9363b6da16cf29eb1930cf87d /frontend/src/containers/gameBrowser.js
parentMade redux store fully immutable (diff)
downloadseven-wonders-20f26d37846d231ca74b3834b8282f8d497be64d.tar.gz
seven-wonders-20f26d37846d231ca74b3834b8282f8d497be64d.tar.bz2
seven-wonders-20f26d37846d231ca74b3834b8282f8d497be64d.zip
Add redux selectors
Diffstat (limited to 'frontend/src/containers/gameBrowser.js')
-rw-r--r--frontend/src/containers/gameBrowser.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/frontend/src/containers/gameBrowser.js b/frontend/src/containers/gameBrowser.js
index 11cadcf6..8c48f071 100644
--- a/frontend/src/containers/gameBrowser.js
+++ b/frontend/src/containers/gameBrowser.js
@@ -30,7 +30,7 @@ class App extends Component {
>
</InlineForm>
<Space auto />
- <Text><b>Username:</b> {this.props.username}</Text>
+ <Text><b>Username:</b> {this.props.currentPlayer.get('displayName')}</Text>
<Space x={1} />
</Flex>
<GamesList games={this.props.games} />
@@ -39,13 +39,14 @@ class App extends Component {
}
}
+import { getCurrentPlayer } from '../redux/players'
+import { getAllGames, actions } from '../redux/games'
const mapStateToProps = (state) => ({
- username: state.get('players').get('all').get(state.get('players').get('current')).get('displayName'),
- games: state.get('games')
+ currentPlayer: getCurrentPlayer(state),
+ games: getAllGames(state)
})
-import { actions } from '../redux/games'
const mapDispatchToProps = {
createGame: actions.createGame
}
bgstack15