-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreducer.js
293 lines (267 loc) · 5.58 KB
/
reducer.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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
const SET_DATE = "SET_DATE";
const VISIBLE_CALENDAR = "VISIBLE_CALENDER";
const VISIBLE_SET_TITLE = "VISIBLE_TITLE";
const SET_TIME = "SET_TIME";
const SET_MUSIC = "SET_MUSIC";
const SET_TITLE = "SET_TITLE";
const SET_VIBRATION = "SET_VIBRATION";
const SET_INTERVAL_REPEAT = "SET_INTERVAL_REPEAT";
const SET_DAYS_OF_WEEK = "SET_DAYS_OF_WEEK";
const SET_INITIAL_STATE = "SET_INITIAL_STATE";
const SET_REDUCE_STATE = "SET_REDUCE_STATE";
const setReduceState = item => {
return {
type: SET_REDUCE_STATE,
item
};
};
const setDaysOfWeek = daysOfWeek => {
const day = Object.keys(daysOfWeek);
return {
type: SET_DAYS_OF_WEEK,
day
};
};
const setInitialState = () => {
return {
type: SET_INITIAL_STATE
};
};
const setVibration = () => {
return {
type: SET_VIBRATION
};
};
const setDate = date => {
return {
type: SET_DATE,
date
};
};
const visibleCalendar = () => {
return {
type: VISIBLE_CALENDAR
};
};
const visibleSetTitle = () => {
return {
type: VISIBLE_SET_TITLE
};
};
const setTime = time => {
return {
type: SET_TIME,
time
};
};
const setMusic = music => {
return {
type: SET_MUSIC,
music
};
};
const setTitle = title => {
return {
type: SET_TITLE,
title
};
};
const setRepeatInterval = (interval, repeat) => {
return {
type: SET_INTERVAL_REPEAT,
repeatInterval: { interval, repeat }
};
};
const initialState = {
calendar: false,
settedDate: {},
time: "AM 01시 01분",
musicInfo: { uri: undefined, name: "설정 안 함" },
title: "설정 안 함",
visibleTitle: false,
vibration: false,
repeatInterval: { interval: [5, 0], repeat: [3, 0] },
daysOfWeek: {
monday: false,
tuesday: false,
wednesday: false,
thursday: false,
friday: false,
saturday: false,
sunday: false
}
};
const reducer = (state = initialState, action) => {
switch (action.type) {
case SET_DATE:
return applySetDate(state, action);
case VISIBLE_CALENDAR:
return applyVisibleCalender(state, action);
case SET_TIME:
return applySetTime(state, action);
case SET_MUSIC:
return applySetMusic(state, action);
case SET_TITLE:
return applySetTitle(state, action);
case VISIBLE_SET_TITLE:
return applyVisibleSetTitle(state, action);
case SET_VIBRATION:
return applySetVibration(state, action);
case SET_INTERVAL_REPEAT:
return applySetIntervalRepeat(state, action);
case SET_DAYS_OF_WEEK:
return applySetDaysOfWeek(state, action);
case SET_INITIAL_STATE:
return applySetInitialState(state, action);
case SET_REDUCE_STATE:
return applySetReduceState(state, action);
default:
return state;
}
};
const applySetReduceState = (state, action) => {
const getJsonData = JSON.parse(action.item);
let jsonVariable = {};
jsonVariable[getJsonData.calendar] = {
selected: true,
marked: true,
selectedColor: "#00008C"
};
return {
settedDate: {
...jsonVariable
},
time: getJsonData.time,
musicInfo: { name: getJsonData.musicInfo.name, uri: undefined },
title: getJsonData.title,
vibration: getJsonData.vibration,
repeatInterval: {
interval: [getJsonData.interval, 0],
repeat: [getJsonData.repeat, 0]
},
daysOfWeek: getJsonData.daysOfWeek
};
};
const applySetInitialState = (state, action) => {
return {
...initialState
};
};
const applySetDaysOfWeek = (state, action) => {
if (action.day[0] === "remove") {
return {
...state,
daysOfWeek: {
monday: false,
tuesday: false,
wednesday: false,
thursday: false,
friday: false,
saturday: false,
sunday: false
}
};
} else {
return {
...state,
daysOfWeek: {
...state.daysOfWeek,
[action.day[0]]: !state.daysOfWeek[action.day[0]]
}
};
}
};
const applySetIntervalRepeat = (state, action) => {
return {
...state,
repeatInterval: action.repeatInterval
};
};
const applySetVibration = (state, action) => {
return {
...state,
vibration: !state.vibration
};
};
const applyVisibleSetTitle = (state, action) => {
return {
...state,
visibleTitle: !state.visibleTitle
};
};
const applySetTitle = (state, action) => {
if ((state.title !== undefined, action.title === "")) {
return {
...state
};
} else {
return {
...state,
title: action.title
};
}
};
const applySetMusic = (state, action) => {
if ((state.musicInfo !== undefined, action.music.name === undefined)) {
return {
...state
};
} else {
return {
...state,
musicInfo: action.music
};
}
};
const applySetTime = (state, action) => {
return {
...state,
time: action.time
};
};
const applySetDate = (state, action) => {
const setDate = action.date.dateString;
let jsonVariable = {};
if (state.settedDate.hasOwnProperty(setDate)) {
delete state.settedDate[setDate];
} else {
jsonVariable[setDate] = {
selected: true,
marked: true,
selectedColor: "#00008C"
};
}
if (setDate === "remove") {
return {
...state,
settedDate: {}
};
} else {
return {
...state,
settedDate: {
...jsonVariable
}
};
}
};
const applyVisibleCalender = state => {
return {
...state,
calendar: !state.calendar
};
};
export const actionCreators = {
setDate,
visibleCalendar,
setTime,
setMusic,
setTitle,
visibleSetTitle,
setVibration,
setRepeatInterval,
setDaysOfWeek,
setInitialState,
setReduceState
};
export default reducer;