1
+ import React , { useEffect , useState } from 'react' ;
2
+ import List from '../componets/list'
3
+
4
+ import Cookies from 'js-cookie' ;
5
+
6
+
7
+ export default function Add ( props ) {
8
+
9
+ const [ data , setData ] = useState ( { todos : [ ] } ) ;
10
+
11
+ const [ input , setInput ] = useState ( "" ) ;
12
+
13
+ const [ error , setError ] = useState ( "" ) ;
14
+
15
+
16
+
17
+ async function deleteItem ( idx ) {
18
+
19
+
20
+ return console . log ( idx )
21
+
22
+ const req = await fetch ( "https://django-todo-list-api.herokuapp.com/api/todo/" + idx , { credentials : 'include' , method : 'DELETE' } )
23
+
24
+ const res = await req . json ( ) ;
25
+
26
+
27
+ console . log ( res ) ;
28
+
29
+ loadTodo ( ) ;
30
+
31
+
32
+
33
+ }
34
+ const updateList = async function ( e ) {
35
+
36
+
37
+ if ( input . length < 5 ) {
38
+
39
+ return alert ( 'Item too short' )
40
+ }
41
+
42
+
43
+ if ( input . length > 40 ) {
44
+ // return setError("Item too long");
45
+
46
+ return alert ( 'Item too long' )
47
+
48
+
49
+ }
50
+
51
+
52
+
53
+
54
+
55
+ // console.log(withCookies.)
56
+
57
+ const req = await fetch ( "https://django-todo-list-api.herokuapp.com/api/todo/" ,
58
+ {
59
+ method : 'POST' , // *GET, POST, PUT, DELETE, etc.
60
+ mode : 'cors' , // no-cors, *cors, same-origin
61
+ cache : 'no-cache' , // *default, no-cache, reload, force-cache, only-if-cached
62
+ credentials : 'include' , // include, *same-origin, omit
63
+ headers : {
64
+ 'Content-Type' : 'application/json' ,
65
+ // 'X-CSRFToken': ""
66
+
67
+ // 'Content-Type': 'application/x-www-form-urlencoded',
68
+ } ,
69
+
70
+ body : JSON . stringify ( {
71
+ text : input
72
+ } )
73
+ } )
74
+
75
+ const res = await req . json ( )
76
+
77
+
78
+
79
+ setInput ( '' )
80
+
81
+ // alert('Item added')
82
+
83
+ console . log ( res ) ;
84
+
85
+
86
+ loadTodo ( ) ;
87
+
88
+
89
+
90
+ }
91
+
92
+
93
+ const loadTodo = async ( ) => {
94
+
95
+ const req = await fetch ( "https://django-todo-list-api.herokuapp.com/api/todo/" , { credentials : 'include' } )
96
+
97
+
98
+ const res = await req . json ( ) ;
99
+ console . log ( res )
100
+
101
+ setData ( { todos : res . data } )
102
+
103
+
104
+
105
+ }
106
+
107
+
108
+
109
+ useEffect ( async ( ) => {
110
+
111
+ console . log ( 'CSRF' , document . cookie )
112
+ loadTodo ( ) ;
113
+
114
+ } , [ ] )
115
+
116
+
117
+ return (
118
+ < div className = "row" >
119
+ < div className = "col col-sm-12 col-md-6 col-lg-6 col-12" >
120
+
121
+
122
+ < div className = "add-container" >
123
+
124
+
125
+
126
+
127
+ < div className = "add-box" >
128
+ < h1 > My ToDo App</ h1 >
129
+ < div className = "input-box" >
130
+
131
+
132
+ < input type = "text" placeholder = "Add task" value = { input } onChange = { ( e ) => setInput ( e . target . value ) } />
133
+
134
+
135
+
136
+ < span onClick = { updateList } >
137
+ < i className = "fal fa-plus" > </ i >
138
+ </ span >
139
+ </ div >
140
+
141
+ </ div > </ div >
142
+ </ div >
143
+ < div className = "col col-sm-12 col-md-6 col-lg-6 col-12 list-parent" >
144
+ < List data = { data } deleteItem = { deleteItem } />
145
+
146
+
147
+ </ div >
148
+ </ div >
149
+ )
150
+
151
+ }
0 commit comments