-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreducer.ts
123 lines (102 loc) · 2.32 KB
/
reducer.ts
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
import { Task } from "./class/task";
export enum TypeAction {
INCREMENT = "increment",
DECREMENT = "decrement",
INCREMENT_SBTASK = "increment_sbtask",
DECREMENT_SBTASK = "decrement_sbtask",
DELETE_TASK = "delete_task",
SWITCH_STATUS = "switch_status_task",
FINISH_TASK = "finish_task",
UNFINISH_TASK = "unfinish_task",
FINISH_SBTASK = "finish_sbtask",
UNFINISH_SBTASK = "unfinish_sbtask",
}
interface IPayload {
id?: string;
value?: string;
}
interface TaskAction {
type: TypeAction;
payload: IPayload;
}
export interface TasksState {
tasks?: Task[];
}
export type initTasksState = {
tasks: Array<Task>;
};
export const tasksReducer = (
state: initTasksState,
action: TaskAction
): initTasksState => {
const { type, payload } = action;
const { tasks } = state;
const index = tasks.findIndex((log) => log.id === payload.id);
const task = tasks[index];
switch (type) {
case "increment":
if (!payload.value) {
throw new Error("Invalid increment");
}
return {
...state,
tasks: [...tasks, new Task(payload.value)],
};
case "decrement":
task?.delete();
return {
...state,
tasks,
};
case "increment_sbtask":
if (!payload.value || !payload.id) {
throw new Error("Invalid increment");
}
task?.addSubTask(payload.value);
return {
...state,
tasks,
};
case "decrement_sbtask":
if (!payload.id || !payload.value) {
throw new Error("Invalid decrement");
}
task?.deleteSubTask(payload.value);
return {
...state,
tasks,
};
case "finish_task":
task?.finish();
return {
...state,
tasks,
};
case "unfinish_task":
task.unfinish();
return {
...state,
tasks,
};
case "finish_sbtask":
if (!payload.value || !payload.id) {
throw new Error("Invalid Finish!");
}
task.finishSubTask(payload.value);
return {
...state,
tasks,
};
case "unfinish_sbtask":
if (!payload.value || !payload.id) {
throw new Error("Invalid Finish!");
}
task.unfinishSubTask(payload.value);
return {
...state,
tasks,
};
default:
return state;
}
};