16 lines
514 B
TypeScript
16 lines
514 B
TypeScript
'use client'
|
|
|
|
import { useEffect } from 'react'
|
|
import { useProductStore } from '@/stores/product-store'
|
|
import { debugProps } from '@/lib/debug'
|
|
|
|
export function SetCurrentProduct({ id, name }: { id: string; name: string }) {
|
|
const { setCurrentProduct, clearCurrentProduct } = useProductStore()
|
|
|
|
useEffect(() => {
|
|
setCurrentProduct(id, name)
|
|
return () => clearCurrentProduct()
|
|
}, [id, name, setCurrentProduct, clearCurrentProduct])
|
|
|
|
return <span {...debugProps('set-current-product')} hidden />
|
|
}
|