-
Notifications
You must be signed in to change notification settings - Fork 0
/
actions.js
executable file
·21 lines (15 loc) · 998 Bytes
/
actions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { createAction } from 'redux-actions'
export const fetchContents = createAction('FETCH_CONTENTS')
export const finishAllocating = createAction('FINISH_ALLOCATING', allo_temp => allo_temp)
export const changeNowRound = createAction('CHANGE_NOW_ROUND')
export const changeRedoCount = createAction('CHANGE_REDO_COUNT')
export const changeChartRound = createAction('CHANGE_CHART_ROUND', chart_round => chart_round)
export const fallChartButton = createAction('FALL_CHART_BUTTON')
export const changeAlloTemp = createAction('CHANGE_ALLO_TEMP')
export const submitAlloTemp = createAction('SUBMIT_ALLO_TEMP')
export const responseOK = createAction('RESPONSE_OK')
export const responseNG = createAction('RESPONSE_NG')
export const redoAllcating = createAction('REDO_ALLOCATING')
export const fallSnackBarFlags = createAction('FALL_SNACK_BAR_FLAGS')
export const fallSnackBarFlags2 = createAction('FALL_SNACK_BAR_FLAGS2')
export const fallSnackBarFlags3 = createAction('FALL_SNACK_BAR_FLAGS3')