mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Compare commits
3 commits
2a89f75ac6
...
2d6fead452
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2d6fead452 | ||
![]() |
2f71aa12ae | ||
![]() |
28461e257c |
2 changed files with 33 additions and 38 deletions
Binary file not shown.
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 40 KiB |
|
@ -2,7 +2,7 @@
|
|||
|
||||
import { Button } from "@nextui-org/react";
|
||||
import { PostType } from "@/types/PostType";
|
||||
import { Heart, LoaderCircle } from "lucide-react";
|
||||
import { Heart } from "lucide-react";
|
||||
import { toast } from "react-toastify";
|
||||
import { getCookie } from "@/helpers/cookie";
|
||||
import { redirect } from "next/navigation";
|
||||
|
@ -11,7 +11,6 @@ import { useTheme } from "next-themes";
|
|||
|
||||
export default function LikeButton({ post }: { post: PostType }) {
|
||||
const [likes, setLikes] = useState<number>(post.likes.length);
|
||||
const [loading, setLoading] = useState<boolean>(false);
|
||||
const [liked, setLiked] = useState<boolean>(false);
|
||||
const { theme } = useTheme();
|
||||
const [reduceMotion, setReduceMotion] = useState<boolean>(false);
|
||||
|
@ -43,11 +42,10 @@ export default function LikeButton({ post }: { post: PostType }) {
|
|||
: "",
|
||||
}}
|
||||
onPress={async () => {
|
||||
if (loading || liked) {
|
||||
return;
|
||||
if (!getCookie("token")) {
|
||||
redirect("/login");
|
||||
}
|
||||
|
||||
setLoading(true);
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? "https://d2jam.com/api/v1/like"
|
||||
|
@ -66,49 +64,46 @@ export default function LikeButton({ post }: { post: PostType }) {
|
|||
}
|
||||
);
|
||||
|
||||
post.hasLiked = !post.hasLiked;
|
||||
|
||||
if (post.hasLiked) {
|
||||
setLiked(true);
|
||||
setTimeout(() => setLiked(false), 1000);
|
||||
setLikes(likes + 1);
|
||||
} else {
|
||||
setLiked(false);
|
||||
setLikes(likes - 1);
|
||||
}
|
||||
|
||||
if (!response.ok) {
|
||||
setLoading(false);
|
||||
if (response.status == 401) {
|
||||
redirect("/login");
|
||||
} else {
|
||||
post.hasLiked = !post.hasLiked;
|
||||
toast.error("An error occurred");
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
const data = await response.json();
|
||||
setLikes(parseInt(data.likes));
|
||||
post.hasLiked = data.action === "like";
|
||||
setLoading(false);
|
||||
setLiked(data.action === "like");
|
||||
setTimeout(() => setLiked(false), 1000);
|
||||
}
|
||||
}}
|
||||
>
|
||||
{loading ? (
|
||||
<LoaderCircle className="animate-spin" size={16} />
|
||||
) : (
|
||||
<div
|
||||
className="flex gap-2 items-center"
|
||||
style={{ position: "relative" }}
|
||||
>
|
||||
<Heart size={16} />
|
||||
<Heart
|
||||
size={16}
|
||||
className={
|
||||
liked && !reduceMotion
|
||||
? "animate-ping absolute top-0 left-0"
|
||||
: "absolute top-0 left-0"
|
||||
}
|
||||
style={{
|
||||
position: "absolute",
|
||||
top: "0",
|
||||
left: "0",
|
||||
zIndex: "10",
|
||||
}}
|
||||
/>
|
||||
<p>{likes}</p>
|
||||
</div>
|
||||
)}
|
||||
<div className="flex gap-2 items-center" style={{ position: "relative" }}>
|
||||
<Heart size={16} />
|
||||
<Heart
|
||||
size={16}
|
||||
className={
|
||||
liked && !reduceMotion
|
||||
? "animate-ping absolute top-0 left-0"
|
||||
: "absolute top-0 left-0"
|
||||
}
|
||||
style={{
|
||||
position: "absolute",
|
||||
top: "0",
|
||||
left: "0",
|
||||
zIndex: "10",
|
||||
}}
|
||||
/>
|
||||
<p>{likes}</p>
|
||||
</div>
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue