Skip to content

Commit d06a7b8

Browse files
committed
added heroku api
1 parent 720bb78 commit d06a7b8

13 files changed

+1498
-60
lines changed

componets/add.jsx

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
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+
}

componets/list.jsx

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
import { useState, useEffect } from 'react';
2+
3+
4+
5+
const List = function (props) {
6+
7+
8+
useEffect(() => {
9+
10+
console.log(props);
11+
12+
}, [])
13+
14+
15+
16+
return (
17+
<div className="list-container">
18+
19+
<div className="list-container-inner">
20+
21+
22+
<div className="list-title">
23+
24+
<h1>Hi, Harsh!</h1>
25+
<p>Here is the list of all your unfinished tasks ,</p>
26+
27+
<p><span> {props.data.todos.length} Unfinished tasks</span></p>
28+
29+
</div>
30+
31+
<div className="list-scroll">
32+
33+
{props.data.todos.map((td, i) => <Card key={i} data={td} idx={i + 1} deleteItem={props.deleteItem} />)}
34+
</div>
35+
</div>
36+
37+
</div>
38+
)
39+
}
40+
41+
42+
const Card = function (props) {
43+
44+
45+
46+
47+
return (
48+
49+
<div className="list-card">
50+
<div className="todo">
51+
52+
<h1> <span>{props.idx}</span> {props.data.text}</h1>
53+
<span className="date"> {new Date(props.data.created_at).toLocaleString()}</span>
54+
55+
56+
</div>
57+
58+
<div className="delete-button" onClick={() => props.deleteItem(props.data.id)}>
59+
<i className="fal fa-times-circle"></i>
60+
</div>
61+
62+
63+
64+
65+
66+
</div>
67+
)
68+
}
69+
70+
71+
export default List

0 commit comments

Comments
 (0)