-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from JohnMwendwa/wish-list
- Loading branch information
Showing
9 changed files
with
621 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
import { FaCheckSquare, FaEdit, FaRegSquare, FaTrash } from "react-icons/fa"; | ||
import { useSession } from "next-auth/react"; | ||
import { toast } from "react-toastify"; | ||
import { useRouter } from "next/router"; | ||
import { WishProps } from "lib/db/models/wish_model"; | ||
import { FormEvent, useState } from "react"; | ||
|
||
interface Props extends WishProps { | ||
idx: number; | ||
} | ||
|
||
const Wish = ({ _id, title, author, finished, idx }: Props) => { | ||
const { status } = useSession(); | ||
const router = useRouter(); | ||
const [isEditing, setIsEditing] = useState(false); | ||
const [bookTitle, setBookTitle] = useState(title); | ||
const [bookAuthor, setBookAuthor] = useState(author); | ||
|
||
const handleCompleteWish = async () => { | ||
const res = await fetch("/api/wish/complete", { | ||
method: "PATCH", | ||
body: JSON.stringify({ id: _id }), | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
}); | ||
const data = await res.json(); | ||
|
||
if (data.error) { | ||
toast.error(data.error, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
return; | ||
} else { | ||
toast.success(data.message, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
router.reload(); | ||
return; | ||
} | ||
}; | ||
|
||
const handleEdit = () => { | ||
setIsEditing((prev) => !prev); | ||
}; | ||
const handleDelete = async () => { | ||
const res = await fetch("/api/wish/complete", { | ||
method: "DELETE", | ||
body: JSON.stringify({ id: _id }), | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
}); | ||
const data = await res.json(); | ||
|
||
if (data.error) { | ||
toast.error(data.error, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
return; | ||
} else { | ||
toast.success(data.message, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
router.reload(); | ||
return; | ||
} | ||
}; | ||
const handleUpdate = async (e: FormEvent<HTMLFormElement>) => { | ||
e.preventDefault(); | ||
const res = await fetch("/api/wish/complete", { | ||
method: "POST", | ||
body: JSON.stringify({ id: _id, bookTitle, bookAuthor }), | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
}); | ||
const data = await res.json(); | ||
|
||
if (data.error) { | ||
toast.error(data.error, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
return; | ||
} else { | ||
toast.success(data.message, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
router.reload(); | ||
return; | ||
} | ||
}; | ||
|
||
return ( | ||
<div className="flex items-center justify-between p-2 border rounded-md odd:bg-blue-100 even:bg-gray-100 shadow-md group"> | ||
{isEditing ? ( | ||
<form | ||
onSubmit={handleUpdate} | ||
className="flex flex-1 gap-2 justify-between" | ||
> | ||
<span className=""> | ||
<input | ||
type="text" | ||
placeholder="Book title" | ||
className="border rounded-md px-2 py-1 mr-2 outline-none" | ||
value={bookTitle} | ||
onChange={(e) => setBookTitle(e.target.value)} | ||
/> | ||
<input | ||
type="text" | ||
placeholder="Author" | ||
className="border rounded-md px-2 py-1 outline-none" | ||
value={bookAuthor} | ||
onChange={(e) => setBookAuthor(e.target.value)} | ||
/> | ||
</span> | ||
<span> | ||
<button | ||
type="submit" | ||
className="bg-green-500 px-4 py-1 rounded-md mr-2" | ||
> | ||
Update | ||
</button> | ||
<button | ||
type="button" | ||
onClick={handleEdit} | ||
className="bg-red-500 px-4 py-1 rounded-md text-white" | ||
> | ||
cancel | ||
</button> | ||
</span> | ||
</form> | ||
) : ( | ||
<> | ||
<span> | ||
{idx + 1}.{" "} | ||
<span className={`${finished ? "line-through" : ""}`}> | ||
{title} - {author} | ||
</span> | ||
</span> | ||
{status === "authenticated" && ( | ||
<span className="flex items-center gap-2"> | ||
<span className="cursor-pointer" onClick={handleCompleteWish}> | ||
{finished ? ( | ||
<FaCheckSquare className="text-2xl text-blue-500 group-even:text-gray-500" /> | ||
) : ( | ||
<FaRegSquare className="text-2xl text-blue-500 group-even:text-gray-500" /> | ||
)} | ||
</span> | ||
<span> | ||
<FaEdit | ||
onClick={handleEdit} | ||
className="text-2xl text-green-500 group-even:text-green-400 cursor-pointer" | ||
/> | ||
</span> | ||
<span> | ||
<FaTrash | ||
onClick={handleDelete} | ||
className="text-2xl text-red-500 cursor-pointer" | ||
/> | ||
</span> | ||
</span> | ||
)} | ||
</> | ||
)} | ||
</div> | ||
); | ||
}; | ||
|
||
export default Wish; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
import { FormEvent, useEffect, useState } from "react"; | ||
import { useSession } from "next-auth/react"; | ||
import { toast } from "react-toastify"; | ||
import { useRouter } from "next/router"; | ||
|
||
import Wish from "./Wish"; | ||
|
||
const WishList = () => { | ||
const { status } = useSession(); | ||
const [wishes, setWishes] = useState([]); | ||
const [loading, setLoading] = useState(true); | ||
const [title, setTitle] = useState(""); | ||
const [author, setAuthor] = useState(""); | ||
const router = useRouter(); | ||
|
||
useEffect(() => { | ||
fetchWishList(); | ||
}, []); | ||
|
||
const fetchWishList = async () => { | ||
const res = await fetch("/api/wish"); | ||
const data = await res.json(); | ||
|
||
if (data.error) { | ||
setLoading(false); | ||
return; | ||
} | ||
setWishes(data.wishes); | ||
setLoading(false); | ||
}; | ||
|
||
const handleSubmit = async (e: FormEvent<HTMLFormElement>) => { | ||
e.preventDefault(); | ||
|
||
const res = await fetch("/api/wish/new", { | ||
method: "POST", | ||
body: JSON.stringify({ | ||
title, | ||
author, | ||
}), | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
}); | ||
const data = await res.json(); | ||
|
||
if (data.error) { | ||
toast.error(data.error, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
return; | ||
} else { | ||
toast.success(data.message, { | ||
position: "top-right", | ||
autoClose: 5000, | ||
hideProgressBar: false, | ||
closeOnClick: true, | ||
pauseOnHover: true, | ||
draggable: true, | ||
progress: undefined, | ||
theme: "colored", | ||
}); | ||
router.reload(); | ||
setTitle(""); | ||
setAuthor(""); | ||
return; | ||
} | ||
}; | ||
|
||
if (loading) { | ||
return ( | ||
<div className="flex-1 w-full flex flex-col items-center justify-center"> | ||
<svg | ||
aria-hidden="true" | ||
className="inline w-12 h-12 mr-2 text-gray-200 animate-spin fill-blue-600" | ||
viewBox="0 0 100 101" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z" | ||
fill="currentColor" | ||
/> | ||
<path | ||
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z" | ||
fill="currentFill" | ||
/> | ||
</svg> | ||
<span className="sr-only">Loading wishes...</span> | ||
</div> | ||
); | ||
} else { | ||
return ( | ||
<div className="flex flex-col flex-1 gap-2"> | ||
{status === "authenticated" && ( | ||
<form | ||
onSubmit={handleSubmit} | ||
className="w-full gap-2 flex flex-col sm:flex-row flex-wrap items-center justify-center" | ||
> | ||
<input | ||
type="text" | ||
required | ||
value={title} | ||
onChange={(e) => setTitle(e.target.value)} | ||
placeholder="Book title" | ||
className="border-2 px-2 py-1 rounded-md" | ||
/> | ||
<input | ||
type="text" | ||
required | ||
value={author} | ||
onChange={(e) => setAuthor(e.target.value)} | ||
placeholder="Author" | ||
className="border-2 px-2 py-1 rounded-md" | ||
/> | ||
<button | ||
type="submit" | ||
className="bg-blue-500 text-white px-4 py-1 rounded-md" | ||
> | ||
Add New | ||
</button> | ||
</form> | ||
)} | ||
{wishes.length > 0 ? ( | ||
<div className="max-w-3xl w-full mx-auto grid gap-2"> | ||
{wishes.map((book, idx) => { | ||
return <Wish key={book._id} {...book} idx={idx} />; | ||
})} | ||
</div> | ||
) : ( | ||
<div className="flex flex-col items-center justify-center w-full flex-1 text-2xl text-red-600 font-bold font-mono "> | ||
No wishes yet! | ||
</div> | ||
)} | ||
</div> | ||
); | ||
} | ||
}; | ||
|
||
export default WishList; |
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
Oops, something went wrong.