138 lines
4.4 KiB
TypeScript
138 lines
4.4 KiB
TypeScript
![]() |
import { TextField, Typography } from "@material-ui/core";
|
||
|
import HorizontalSpacer from "@saleor/apps/components/HorizontalSpacer";
|
||
|
import VerticalSpacer from "@saleor/apps/components/VerticalSpacer";
|
||
|
import ControlledCheckbox from "@saleor/components/ControlledCheckbox";
|
||
|
import RadioGroupField from "@saleor/components/RadioGroupField";
|
||
|
import { GiftCardError } from "@saleor/fragments/types/GiftCardError";
|
||
|
import TimePeriodField from "@saleor/giftCards/components/TimePeriodField";
|
||
|
import { GiftCardExpiryType } from "@saleor/giftCards/GiftCardCreateDialog/types";
|
||
|
import { getExpiryPeriodTerminationDate } from "@saleor/giftCards/GiftCardCreateDialog/utils";
|
||
|
import { getGiftCardErrorMessage } from "@saleor/giftCards/GiftCardUpdate/messages";
|
||
|
import useCurrentDate from "@saleor/hooks/useCurrentDate";
|
||
|
import { FormChange } from "@saleor/hooks/useForm";
|
||
|
import { TimePeriodTypeEnum } from "@saleor/types/globalTypes";
|
||
|
import React from "react";
|
||
|
import { FormattedMessage } from "react-intl";
|
||
|
import { MessageDescriptor, useIntl } from "react-intl";
|
||
|
|
||
|
import { giftCardCreateExpirySelectMessages as messages } from "./messages";
|
||
|
import { useGiftCardCreateExpirySelectStyles as useStyles } from "./styles";
|
||
|
|
||
|
interface UntranslatedOption {
|
||
|
label: MessageDescriptor;
|
||
|
value: GiftCardExpiryType;
|
||
|
}
|
||
|
|
||
|
const options: UntranslatedOption[] = [
|
||
|
{
|
||
|
label: messages.expiryPeriodLabel,
|
||
|
value: "EXPIRY_PERIOD"
|
||
|
},
|
||
|
{
|
||
|
label: messages.expiryDateLabel,
|
||
|
value: "EXPIRY_DATE"
|
||
|
}
|
||
|
];
|
||
|
|
||
|
interface GiftCardCreateExpirySelectProps {
|
||
|
change: FormChange;
|
||
|
expirySelected: boolean;
|
||
|
expiryPeriodType: TimePeriodTypeEnum;
|
||
|
expiryPeriodAmount: number;
|
||
|
expiryType: GiftCardExpiryType;
|
||
|
customOptions?: UntranslatedOption[];
|
||
|
errors?: Record<"expiryDate", GiftCardError>;
|
||
|
expiryDate?: string;
|
||
|
}
|
||
|
|
||
|
const GiftCardCreateExpirySelect: React.FC<GiftCardCreateExpirySelectProps> = ({
|
||
|
errors,
|
||
|
change,
|
||
|
expirySelected,
|
||
|
expiryPeriodType,
|
||
|
expiryPeriodAmount,
|
||
|
expiryType,
|
||
|
expiryDate
|
||
|
}) => {
|
||
|
const intl = useIntl();
|
||
|
const classes = useStyles({});
|
||
|
|
||
|
const translatedOptions = options.map(({ label, value }) => ({
|
||
|
value,
|
||
|
label: intl.formatMessage(label)
|
||
|
}));
|
||
|
|
||
|
const currentDate = useCurrentDate();
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<ControlledCheckbox
|
||
|
name={"expirySelected"}
|
||
|
label={intl.formatMessage(messages.expirySelectedLabel)}
|
||
|
checked={expirySelected}
|
||
|
onChange={change}
|
||
|
/>
|
||
|
{expirySelected && (
|
||
|
<>
|
||
|
<VerticalSpacer spacing={2} />
|
||
|
<RadioGroupField
|
||
|
innerContainerClassName={classes.radioGroupContainer}
|
||
|
choices={translatedOptions}
|
||
|
onChange={change}
|
||
|
name={"expiryType"}
|
||
|
value={expiryType}
|
||
|
variant="inline"
|
||
|
/>
|
||
|
<VerticalSpacer spacing={2} />
|
||
|
|
||
|
{expiryType === "EXPIRY_DATE" && (
|
||
|
<TextField
|
||
|
error={!!errors?.expiryDate}
|
||
|
helperText={getGiftCardErrorMessage(errors?.expiryDate, intl)}
|
||
|
onChange={change}
|
||
|
name={"expiryDate"}
|
||
|
className={classes.dateField}
|
||
|
label={intl.formatMessage(messages.expiryDateLabel)}
|
||
|
value={expiryDate}
|
||
|
InputLabelProps={{
|
||
|
shrink: true
|
||
|
}}
|
||
|
type="date"
|
||
|
/>
|
||
|
)}
|
||
|
|
||
|
{expiryType === "EXPIRY_PERIOD" && (
|
||
|
<div className={classes.periodField}>
|
||
|
<TimePeriodField
|
||
|
isError={!!errors?.expiryDate}
|
||
|
helperText={getGiftCardErrorMessage(errors?.expiryDate, intl)}
|
||
|
change={change}
|
||
|
periodType={expiryPeriodType}
|
||
|
periodAmount={expiryPeriodAmount}
|
||
|
amountFieldName={"expiryPeriodAmount"}
|
||
|
typeFieldName={"expiryPeriodType"}
|
||
|
/>
|
||
|
<HorizontalSpacer spacing={2} />
|
||
|
<div className={classes.dateText}>
|
||
|
<Typography variant="caption">
|
||
|
<FormattedMessage {...messages.expiryOnLabel} />
|
||
|
</Typography>
|
||
|
<Typography>
|
||
|
{getExpiryPeriodTerminationDate(
|
||
|
currentDate,
|
||
|
expiryPeriodType,
|
||
|
expiryPeriodAmount
|
||
|
)?.format("L")}
|
||
|
</Typography>
|
||
|
</div>
|
||
|
</div>
|
||
|
)}
|
||
|
<VerticalSpacer spacing={2} />
|
||
|
</>
|
||
|
)}
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default GiftCardCreateExpirySelect;
|