👔 feat: add save button endpoint handler

This commit is contained in:
2026-03-29 11:34:08 +07:00
parent 6f2588250c
commit 99bf72c1af
3 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,5 @@
"use client";
import { addHeroBannerMediaToSaved } from "@/features/home/actions/Hero/addHeroBannerMediaToSaved";
import { useAuth } from "@/shared/contexts/AuthContext";
import { Button } from "@/shared/libs/shadcn/ui/button";
import { Icon } from "@iconify/react";
@ -5,10 +7,16 @@ import { Icon } from "@iconify/react";
const AddToList = ({ mediaId }: { mediaId: string }) => {
const { session } = useAuth();
const handleAddToList = async () => {
const result = await addHeroBannerMediaToSaved(mediaId);
console.log("Hasil dari fungsi server:", result);
};
return (
<div>
{session?.user && (
<Button
onClick={handleAddToList}
variant="secondary"
className="h-full flex gap-1 px-4 rounded-xl border border-neutral-400/10 bg-neutral-950/20 hover:bg-neutral-950/40 backdrop-blur-lg text-neutral-200"
>