Feat/SW-1370/Guarantee my stay ancillaries * feat(SW-1370): guarantee for ancillaries * feat(SW-1370): remove console log * feat(SW-1370): add translations * feat(SW-1370): small fix * feat(SW-1370): fix must be guaranteed * feat(SW-1370): fix logic and comments pr * feat(SW-1370): fix comments pr * feat(SW-1370): fix comments pr * feat(SW-1370): add translation * feat(SW-1370): add translation and fix pr comment * feat(SW-1370): fix pr comment * feat(SW-1370): fix encoding path refId issue * feat(SW-1370): refactor AddAncillaryStore usage and introduce context provider * feat(SW-1370): refactor * feat(SW-1370): refactor ancillaries * feat(SW-1370): fix merge Approved-by: Simon.Emanuelsson
22 lines
705 B
TypeScript
22 lines
705 B
TypeScript
import { useAddAncillaryStore } from "@/stores/my-stay/add-ancillary-flow"
|
|
|
|
import { AncillaryCard } from "@/components/TempDesignSystem/AncillaryCard"
|
|
|
|
import type { SelectedAncillary } from "@/types/components/myPages/myStay/ancillaries"
|
|
|
|
interface WrappedAncillaryProps {
|
|
ancillary: SelectedAncillary
|
|
}
|
|
|
|
export default function WrappedAncillaryCard({
|
|
ancillary,
|
|
}: WrappedAncillaryProps) {
|
|
const { description, ...ancillaryWithoutDescription } = ancillary
|
|
const selectAncillary = useAddAncillaryStore((state) => state.selectAncillary)
|
|
return (
|
|
<div role="button" onClick={() => selectAncillary(ancillary)}>
|
|
<AncillaryCard ancillary={ancillaryWithoutDescription} />
|
|
</div>
|
|
)
|
|
}
|