2020-12-10 23:06:54 +08:00
|
|
|
import {
|
|
|
|
CLOSE_SNACKBAR,
|
|
|
|
SnackbarActionTypes,
|
|
|
|
} from "../actions/snackbarActions";
|
|
|
|
import {
|
2020-12-13 23:51:40 +08:00
|
|
|
BATCH_DELETE_DEAD_TASKS_SUCCESS,
|
2020-12-10 23:06:54 +08:00
|
|
|
DELETE_DEAD_TASK_SUCCESS,
|
|
|
|
DELETE_RETRY_TASK_SUCCESS,
|
|
|
|
DELETE_SCHEDULED_TASK_SUCCESS,
|
|
|
|
TasksActionTypes,
|
|
|
|
} from "../actions/tasksActions";
|
|
|
|
|
|
|
|
interface SnackbarState {
|
|
|
|
isOpen: boolean;
|
|
|
|
message: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const initialState: SnackbarState = {
|
|
|
|
isOpen: false,
|
|
|
|
message: "",
|
|
|
|
};
|
|
|
|
|
|
|
|
function snackbarReducer(
|
|
|
|
state = initialState,
|
|
|
|
action: TasksActionTypes | SnackbarActionTypes
|
|
|
|
): SnackbarState {
|
|
|
|
switch (action.type) {
|
|
|
|
case CLOSE_SNACKBAR:
|
|
|
|
return {
|
|
|
|
// Note: We keep the message state unchanged for
|
|
|
|
// smoother transition animation.
|
|
|
|
...state,
|
|
|
|
isOpen: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
case DELETE_SCHEDULED_TASK_SUCCESS:
|
|
|
|
return {
|
|
|
|
isOpen: true,
|
|
|
|
// TODO: show only task id
|
|
|
|
message: `Scheduled task ${action.taskKey} deleted`,
|
|
|
|
};
|
|
|
|
|
|
|
|
case DELETE_RETRY_TASK_SUCCESS:
|
|
|
|
return {
|
|
|
|
isOpen: true,
|
|
|
|
// TODO: show only task id
|
|
|
|
message: `Retry task ${action.taskKey} deleted`,
|
|
|
|
};
|
|
|
|
|
|
|
|
case DELETE_DEAD_TASK_SUCCESS:
|
|
|
|
return {
|
|
|
|
isOpen: true,
|
|
|
|
// TODO: show only task id
|
|
|
|
message: `Dead task ${action.taskKey} deleted`,
|
|
|
|
};
|
|
|
|
|
2020-12-13 23:51:40 +08:00
|
|
|
case BATCH_DELETE_DEAD_TASKS_SUCCESS: {
|
|
|
|
const n = action.payload.deleted_keys.length;
|
|
|
|
return {
|
|
|
|
isOpen: true,
|
|
|
|
message: `${n} Dead ${n === 1 ? "task" : "tasks"} deleted`,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-12-10 23:06:54 +08:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default snackbarReducer;
|