👔 feat: add save button endpoint handler
This commit is contained in:
@ -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"
|
||||
>
|
||||
|
||||
@ -28,8 +28,6 @@ const HeroSwiper = (props: HeroSwiperProps) => {
|
||||
<Swiper
|
||||
spaceBetween={0}
|
||||
slidesPerView={1}
|
||||
onSlideChange={() => console.log("slide change")}
|
||||
onSwiper={(swiper) => console.log(swiper)}
|
||||
className="h-full"
|
||||
autoplay={{ delay: 5000, disableOnInteraction: false }}
|
||||
modules={[Autoplay, Pagination, Navigation]}
|
||||
|
||||
Reference in New Issue
Block a user