-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDescription.js
59 lines (56 loc) · 2.25 KB
/
Description.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import React, { Component } from 'react'
import { connect } from 'react-redux'
import {Card, CardText, CardTitle } from 'material-ui/Card'
import {List, ListItem} from 'material-ui/List'
import { getGamemodeName } from 'util/index'
const mapStateToProps = ({ game_mode, game_round}) => ({
game_mode,
game_round
})
class Description extends Component {
render() {
const { game_mode, game_round } = this.props
if( game_mode == "ultimatum") {
return (
<Card>
<CardTitle title={getGamemodeName(game_mode)} subtitle="ルールの説明" />
<CardText>
<p>あなたは誰かとペアになって実験を行います。<br/>参加者には2つの役割があり、今回は{game_round-1}回の役割交代があります。</p>
<List>
<ListItem
primaryText="提案者"
secondaryText="提案者はポイントを自分と受け手の間でどう分けるか提案できます"
/>
<ListItem
primaryText="受け手"
secondaryText="受け手は提案者の提案を承認するか拒否するか選択できます。"
/>
</List>
<p>受け手が拒否した場合、そのラウンドに提案者に配られたポイントは没収されます。</p>
</CardText>
</Card>
)
}
else {
return (
<Card>
<CardTitle title={getGamemodeName(game_mode)} subtitle="ルールの説明" />
<CardText>
<p>あなたは誰かとペアになって実験を行います。<br/>参加者には2つの役割があり、今回は{game_round-1}回の役割交代があります。</p>
<List>
<ListItem
primaryText="独裁者"
secondaryText="提案者は始めにポイントが配られ、それを自分と受け手の間でどう分けるか決定できます"
/>
<ListItem
primaryText="受け手"
secondaryText="受け手は提案者の提案を承認します。"
/>
</List>
</CardText>
</Card>
)
}
}
}
export default connect(mapStateToProps)(Description)