Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | import { Stack, Box } from "@mui/material";
import { Checkbox, RHFCheckbox } from "@common/Checkbox";
import { Text } from "@common/Text";
import { palette } from "@palette";
import { ComingSoonTag } from "@common/Tag";
import { RHFCustomIntegerInput } from "@common/CustomIntegerInput";
import FadeUpWrapper from "@components/animation/FadeUpWrapper";
type EventConfigurationProps = {
title: string;
titleSize?: "large" | "medium";
isEdit?: boolean;
};
const EventConfiguration = ({
title,
titleSize = "large",
isEdit = false,
}: EventConfigurationProps) => {
return (
<Stack direction="column" gap={isEdit ? 2 : 4} flexGrow={1}>
<Stack direction="column" gap="24px">
<FadeUpWrapper delay={200}>
<Box sx={maxTicketsBoxStyle}>
<Text fontWeight="book" color={palette.neutral[80]}>
Max tickets that can be purchased at once
</Text>
<RHFCustomIntegerInput
name="configuration.maxTickets"
width="82px"
min={1}
max={99}
/>
</Box>
</FadeUpWrapper>
<FadeUpWrapper delay={300}>
<RHFCheckbox
name="configuration.customer_pays_fees"
label="Customer pays the credit card fee"
sx={{
"& .MuiButtonBase-root.MuiCheckbox-root": {
height: 24,
},
}}
/>
</FadeUpWrapper>
<FadeUpWrapper delay={400}>
<Stack direction="column">
<Stack
direction="row"
alignItems="center"
justifyContent="space-between"
>
<RHFCheckbox
disabled
name="configuration.browse_more"
label="Browse more Payment forms"
sx={{
"& .MuiButtonBase-root.MuiCheckbox-root": {
height: 24,
},
}}
/>
<ComingSoonTag />
</Stack>
<Text
color={palette.gray[300]}
fontSize="16px"
fontWeight="book"
lineHeight="19.2px"
ml={4}
>
Allow users to explore more of your published Payment forms.
</Text>
</Stack>
</FadeUpWrapper>
</Stack>
</Stack>
);
};
const maxTicketsBoxStyle = {
display: "flex",
justifyContent: "space-between",
padding: "8px",
alignItems: "center",
background: palette.neutral[10],
borderRadius: "8px",
};
export default EventConfiguration;
|