aboutsummaryrefslogtreecommitdiff
path: root/src/features/todo/reducer.js
blob: 29422e91cd912bb874d2fad9219f8977b6834a74 (plain) (blame)
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
import { createSlice } from "@reduxjs/toolkit";

export const todo_slice = createSlice({
    name: "todo_list",
    initialState: {
        todos: [],
        last_id: 0,
    },

    reducers: {
        add_todo: (state, action) => {
            state.todos = [
                ...state.todos,
                {
                    id: ++state.last_id,
                    text: action.payload.text,
                    due_date: action.payload.due_date,
                    done: action.payload.done,
                    priority: action.payload.priority,
                    creation_date: action.payload.creation_date,
                },
            ];
            console.log(state.todos);
        },
    },
});

export const { add_todo } = todo_slice.actions;

export const select_todos = (state) => state.todo_list.todos;

export default todo_slice.reducer;