survey.js
1.09 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
// action
const GET_SURVEY = 'GET_SURVEY';
const GET_SURVEY_SUCCESS = 'GET_SURVEY_SUCCESS';
const GET_SURVEY_ERROR = 'GET_SURVEY_ERROR';
// action creators
export const getSurvey = () => ({type:GET_SURVEY});
export const getSurveySuccess = (data) => ({type: GET_SURVEY_SUCCESS, payload: data});
export const getSurveyError = (e) => ({type: GET_SURVEY_ERROR, payload: e});
const initialState = {
loading: true,
data: null,
error: null
}
function survey(
state = initialState,
action
){
switch(action.type){
case GET_SURVEY: {
return{
loading: true,
data: null,
error: null
}
}
case GET_SURVEY_SUCCESS:{
return{
loading: false,
data: action.payload,
error: null
}
}
case GET_SURVEY_ERROR:{
return{
loading: false,
data: null,
error: action.payload
}
}
default:
return state;
}
}
export default survey;