Created
July 11, 2021 13:00
-
-
Save enesakar/221bc64f0c633bf6a0b6dfab79934ac4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Head from 'next/head' | |
import Image from 'next/image' | |
import styles from '../styles/Home.module.css' | |
import {useEffect, useState} from "react"; | |
export default function Home() { | |
const [data, setData] = useState([]); | |
const [loading, setLoading] = useState(false); | |
const [todo, setTodo] = useState(""); | |
let changeHandler = (event) => { | |
setTodo(event.target.value) | |
} | |
let addTodo = (event) => { | |
setLoading(true) | |
event.preventDefault(); | |
fetch('/api/add?todo=' + todo) | |
.then(res => res.json()) | |
.then(data => { | |
loadTodos() | |
}) | |
} | |
let removeTodo = (rtodo) => { | |
setLoading(true) | |
fetch('/api/remove?todo=' + rtodo) | |
.then(res => res.json()) | |
.then(data => { | |
loadTodos() | |
}) | |
} | |
let loadTodos = () => { | |
console.log("load todos") | |
fetch('/api/list') | |
.then(res => res.json()) | |
.then(data => { | |
setData(data) | |
setLoading(false) | |
} | |
) | |
} | |
useEffect(() => { | |
setLoading(true) | |
loadTodos() | |
}, []) | |
if (!data) return "Loading..."; | |
return ( | |
<div className={styles.container}> | |
<Head> | |
<title>Next.js TODO APP</title> | |
<meta name="description" content="Generated by create next app"/> | |
<link rel="icon" href="/favicon.ico"/> | |
</Head> | |
<main className={styles.main}> | |
<div className={styles.grid}> | |
<h1 className={styles.title}> | |
TODO App with <a href="https://blog.upstash.com/nextjs-todo">Next.js!</a> | |
<br/> | |
<br/> | |
</h1> | |
{ | |
loading ? | |
<a href="#" className={styles.card}> | |
<img src="/loader.gif"/> | |
</a> | |
: | |
<form className={styles.cardForm} onSubmit={addTodo}> | |
<input className={styles.cardInput} type="text" | |
name="todo" onChange={changeHandler} | |
placeholder="Enter your exciting TODO item!"/> | |
</form> | |
} | |
{data.map((item) => | |
<a href="#" onClick={() => removeTodo(item)} className={styles.card}> | |
<p>{item}</p> | |
</a>)} | |
</div> | |
</main> | |
<footer className={styles.footer}> | |
<a | |
href="https://blog.upstash.com/nextjs-todo" | |
target="_blank" | |
rel="noopener noreferrer" | |
> | |
Powered by{' '} | |
<span className={styles.logo}> | |
<Image src="/logo.png" alt="Upstash Logo" width={87} height={25}/> | |
</span> | |
</a> | |
</footer> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment