blob: b39d5d97b5f78971f3baa77a5424d7195633eec9 (
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
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
|
import React from "react";
import { Search } from "./ToDo-UI/Search";
import { NewToDo } from "./ToDo-UI/NewToDo";
import { ListToDos } from "./ToDo-UI/ListToDo";
import { useDispatch } from "react-redux";
import {
set_last_id,
set_todo,
refresh_filtered_todos,
} from "./features/todo/reducer";
import { get_todos_function, get_last_id_function } from "./api/axios_methods";
function App() {
const get_todos = get_todos_function();
const dispatch = useDispatch();
function handler(data) {
data.map((todo) => {
const due_date = new Date(todo.dueDate);
const offset = due_date.getTimezoneOffset();
dispatch(
set_todo({
id: todo.id,
text: todo.text,
due_date:
todo.dueDate != null
? new Date(due_date - offset * 60 * 1000)
.toISOString()
.slice(0, -1)
: "",
done: todo.done,
priority: todo.priority,
creation_date: todo.creationDate,
})
);
});
dispatch(refresh_filtered_todos());
}
get_todos(handler);
const last_id_api = get_last_id_function();
last_id_api((response) => {
dispatch(
set_last_id({
id: response,
})
);
});
return (
<div>
<Search />
<NewToDo />
<ListToDos />
</div>
);
}
export default App;
|