-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.js
More file actions
148 lines (133 loc) · 3.12 KB
/
index.js
File metadata and controls
148 lines (133 loc) · 3.12 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import React, { Component } from 'react'
import { connect } from 'react-redux'
import {
PollContainer,
PollTitle,
Question,
ChoiceList,
PollChoice,
PollLabel,
ViewVoteContainer,
ViewResultLink,
VoteContainer,
VoteButton,
VoteTick
} from "./style"
import Loading from '../../../../Common/Components/Loading'
class PollQuestion extends Component {
constructor(props) {
super(props)
this.state = { choice_id: 1 }
}
loadPoll = (poll_id, user_id) => {
const { dispatch } = this.props
dispatch({
type: 'GET_POLL',
payload: {
poll_id,
user_id,
dispatch
}
})
}
onChangeChoice = e => {
this.setState({
choice_id: parseInt(e.currentTarget.value)
})
}
onVote = () => {
const { poll_id, dispatch } = this.props
const user_id = -1
const question_id = -1
const { choice_id } = this.state
const data = {
poll_id: poll_id,
user_id: user_id,
question_id: question_id,
choice_id: choice_id
}
dispatch({
type: 'POST_POLL',
payload: {
data,
dispatch
}
})
this.onViewResult()
}
onViewResult = () => {
const { dispatch } = this.props
dispatch({
type: 'VIEW_POLL_RESULT',
})
}
componentWillMount() {
const poll_id = -1
const user_id = -1
this.loadPoll(poll_id, user_id)
}
renderPollChoice = results => {
const { choice_id } = this.state
return results.map((vote, i) => {
return (
<PollChoice key={i}>
<input
type='radio'
id={ `pollChoice${i + 1}` }
name='pollChoice'
value={i + 1}
checked={choice_id === i + 1}
onChange={this.onChangeChoice}/>
<label htmlFor={ `pollChoice${i + 1}` }>
<PollLabel>{vote.response}</PollLabel>
</label>
</PollChoice>
)
})
}
render() {
const { question, results, isLoading, loaded } = this.props
return (
<PollContainer>
<PollTitle>
Poll Question
</PollTitle>
<Question>
{question}
</Question>
{isLoading && <Loading />}
{loaded &&
<div>
<ChoiceList>
{this.renderPollChoice(results)}
</ChoiceList>
<ViewVoteContainer>
<div>
<ViewResultLink
onClick={this.onViewResult}
>
View result
</ViewResultLink>
</div>
<VoteContainer>
<span>Vote</span>
<VoteButton
onClick={this.onVote}
>
<VoteTick>✔</VoteTick>
</VoteButton>
</VoteContainer>
</ViewVoteContainer>
</div>
}
</PollContainer>
)
}
}
export default connect(state => ({
isLoading: state.poll.get('loading'),
loaded: state.poll.get('loaded'),
poll_id: state.poll.get('poll_id'),
question: state.poll.get('question'),
results: state.poll.get('results').toJS()
}))(PollQuestion)