Fix/STAY-135 & STAY-127 * fix: make quantity and delivery separate steps in mobile * fix: update design for delivery step in ancillary flow * fix: add error state for missing time * fix: only allow points or cash payment for ancillaries * fix: break out stepper to design system * fix: update design of select quantity step in add ancillaries flow * fix: add error states for quantity * fix: handle insufficient points case * fix: update stepper to include optional disabledMessage tooltip * fix: handle validations * fix: change name to camel case Approved-by: Bianca Widstam Approved-by: Chuma Mcphoy (We Ahead)
30 lines
888 B
TypeScript
30 lines
888 B
TypeScript
import {
|
|
AncillaryStepEnum,
|
|
useAddAncillaryStore,
|
|
} from "@/stores/my-stay/add-ancillary-flow"
|
|
|
|
import ConfirmationStep from "./ConfirmationStep"
|
|
import DeliveryMethodStep from "./DeliveryDetailsStep"
|
|
import SelectQuantityStep from "./SelectQuantityStep"
|
|
|
|
import type { StepsProps } from "@/types/components/myPages/myStay/ancillaries"
|
|
|
|
export default function Steps({ user, savedCreditCards, error }: StepsProps) {
|
|
const currentStep = useAddAncillaryStore((state) => state.currentStep)
|
|
|
|
switch (currentStep) {
|
|
case AncillaryStepEnum.selectQuantity:
|
|
return <SelectQuantityStep user={user} />
|
|
case AncillaryStepEnum.selectDelivery:
|
|
return <DeliveryMethodStep />
|
|
case AncillaryStepEnum.confirmation:
|
|
return (
|
|
<ConfirmationStep
|
|
savedCreditCards={savedCreditCards}
|
|
user={user}
|
|
error={error}
|
|
/>
|
|
)
|
|
}
|
|
}
|