264 lines
8.0 KiB
TypeScript
264 lines
8.0 KiB
TypeScript
import {
|
|
Button,
|
|
Modal,
|
|
ModalOverlay,
|
|
ModalContent,
|
|
ModalHeader,
|
|
ModalBody,
|
|
ModalFooter,
|
|
Heading,
|
|
HStack,
|
|
Text
|
|
} from "@chakra-ui/react";
|
|
import React, { useState, useContext } from "react";
|
|
import { format, isSameDay } from "date-fns";
|
|
import DemoStickers from "../stickers/DemoStickers";
|
|
import { StickersContext } from "../../../contexts/StickerContext";
|
|
|
|
interface AddStickerProps {
|
|
isOpen: boolean;
|
|
updateIsOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
date: Date;
|
|
updateSticker: React.Dispatch<React.SetStateAction<StickerVal>>;
|
|
currSticker: StickerVal;
|
|
step: number;
|
|
updateStep: React.Dispatch<React.SetStateAction<number>>;
|
|
}
|
|
|
|
/**
|
|
* Handles adding and modifying the stickers for the given month.
|
|
* @param {boolean} isOpen tells the component when the modal should be open.
|
|
* @param {React.Dispatch<React.SetStateAction<boolean>>} updateIsOpen used to close the modal.
|
|
* @param {date} date the date for which the sticker will be added or modified.
|
|
* @param {React.Dispatch<React.SetStateAction<StickerVal>>} updateSticker the react state function to update the sticker.
|
|
* @param {StickerVal} currSticker the current sticker for the date.
|
|
* @param {number} step a numerical variable that represents the page the modal should be at.
|
|
* @param {React.Dispatch<React.SetStateAction<number>>} updateStep used to navigate the pages of the modal by updating the step the modal is on.
|
|
*/
|
|
const AddSticker = ({
|
|
isOpen,
|
|
updateIsOpen,
|
|
date,
|
|
updateSticker,
|
|
currSticker,
|
|
step,
|
|
updateStep
|
|
}: AddStickerProps): JSX.Element => {
|
|
// TODO: Import the stickers array from the calender context.
|
|
|
|
// TODO: Add a function that will add or update the sticker for the current date.
|
|
|
|
/**
|
|
* TODO: Add logic into the contents of the modal to show messages if the selected date is out of range.
|
|
* Show a message when a date in the future is selected.
|
|
* Show a message when a date before the current date is selected.
|
|
*/
|
|
|
|
const [selectedSticker, setSelectedSticker] = useState<StickerVal>(null);
|
|
|
|
const { addEditSticker } = useContext(StickersContext);
|
|
|
|
const [modalVariant] = useState<"currDate" | "notCurrDate">(
|
|
isSameDay(date, new Date()) ? "currDate" : "notCurrDate"
|
|
);
|
|
|
|
// ! Step is not setting back to 0 when modal is closet. Try to move out of this component and take it in as an arg.
|
|
|
|
const handleClose = () => {
|
|
setSelectedSticker(null);
|
|
updateIsOpen(false);
|
|
};
|
|
|
|
// TODO: Validate that the provided sticker is not the current sticker. Throw an error if the same sticker is attempted.
|
|
const handleSubmit = (sticker) => {
|
|
const newSticker: Sticker = addEditSticker(date, sticker);
|
|
updateSticker(newSticker.sticker);
|
|
handleClose();
|
|
};
|
|
|
|
// * Double check that the submit button is disabled if the selected sticker is the same as the current sticker.
|
|
|
|
// TODO: Display the current sticker above the selection screen if a current sticker exists.
|
|
|
|
// TODO: Trigger a warning if the date is in the past showing the sticker change.
|
|
// ! DO NOT update the sticker state or trigger the edd/edit function until that new warning is accepted.
|
|
|
|
const variants = {
|
|
currDate: [
|
|
{
|
|
header: `Which sticker did you earn for ${format(date, "LLL d, y")}?`,
|
|
body: (
|
|
<HStack
|
|
w="100%"
|
|
h="auto"
|
|
justifyContent={"center"}
|
|
alignContent={"center"}
|
|
spacing={14}
|
|
>
|
|
<Button
|
|
isDisabled={currSticker >= 1}
|
|
border={selectedSticker === 1 ? "1px solid #FFF" : "opx"}
|
|
bg={selectedSticker === 1 && "gray.800"}
|
|
onClick={() => setSelectedSticker(1)}
|
|
variant="stickerButton"
|
|
>
|
|
<DemoStickers stickerVal={1} />
|
|
</Button>
|
|
<Button
|
|
isDisabled={currSticker === 0}
|
|
border={selectedSticker === 0 ? "1px solid #FFF" : "opx"}
|
|
bg={selectedSticker === 0 && "gray.800"}
|
|
onClick={() => setSelectedSticker(0)}
|
|
variant="stickerButton"
|
|
>
|
|
<DemoStickers stickerVal={0} />
|
|
</Button>
|
|
<Button
|
|
isDisabled={currSticker <= -1}
|
|
border={selectedSticker === -1 ? "1px solid #FFF" : "opx"}
|
|
bg={selectedSticker === -1 && "gray.800"}
|
|
onClick={() => setSelectedSticker(-1)}
|
|
variant="stickerButton"
|
|
>
|
|
<DemoStickers stickerVal={-1} />
|
|
</Button>
|
|
</HStack>
|
|
),
|
|
footer: (
|
|
<Button
|
|
variant="submit"
|
|
isDisabled={
|
|
selectedSticker === null || selectedSticker === currSticker
|
|
}
|
|
onClick={() => handleSubmit(selectedSticker)}
|
|
>
|
|
{"Submit"}
|
|
</Button>
|
|
)
|
|
}
|
|
],
|
|
notCurrDate: [
|
|
{
|
|
header: `Which sticker did you want to update for ${format(
|
|
date,
|
|
"LLL d, y"
|
|
)}?`,
|
|
body: (
|
|
<Text
|
|
w="100%"
|
|
h="auto "
|
|
fontSize={"3xl"}
|
|
textAlign={"center"}
|
|
fontWeight={"bold"}
|
|
>
|
|
{"Filler"}
|
|
</Text>
|
|
),
|
|
footer: (
|
|
<Button
|
|
variant="primary"
|
|
// isDisabled={
|
|
// selectedSticker === null || selectedSticker === currSticker
|
|
// }
|
|
onClick={() => updateStep(step + 1)}
|
|
>
|
|
{"Next"}
|
|
</Button>
|
|
)
|
|
},
|
|
{
|
|
header: `Are you sure you want to change the sticker for ${format(
|
|
date,
|
|
"M/d/y"
|
|
)}?`,
|
|
body: (
|
|
<Text
|
|
w="100%"
|
|
h="auto "
|
|
fontSize={"3xl"}
|
|
textAlign={"center"}
|
|
fontWeight={"bold"}
|
|
>
|
|
{"Filler"}
|
|
</Text>
|
|
),
|
|
footer: (
|
|
<HStack
|
|
w="100%"
|
|
h="auto"
|
|
justifyContent={"space-between"}
|
|
alignContent={"center"}
|
|
>
|
|
<Button variant="primary" onClick={() => updateStep(step - 1)}>
|
|
{"Previous"}
|
|
</Button>
|
|
<HStack w="auto" h="auto" alignContent={"center"} spacing={6}>
|
|
<Button
|
|
variant="submit"
|
|
// isDisabled={
|
|
// selectedSticker === null || selectedSticker === currSticker
|
|
// }
|
|
// onClick={() => handleSubmit(selectedSticker)}
|
|
>
|
|
{"Confirm"}
|
|
</Button>
|
|
<Button
|
|
backgroundColor="transparent"
|
|
_hover={{ backgroundColor: "brand.danger" }}
|
|
onClick={() => updateIsOpen(!isOpen)}
|
|
>
|
|
{"Cancel"}
|
|
</Button>
|
|
</HStack>
|
|
</HStack>
|
|
)
|
|
}
|
|
]
|
|
};
|
|
|
|
// const JSX = <></>;
|
|
// const example = {
|
|
// currDate: [{ header: JSX, body: JSX, footer: JSX }],
|
|
// notCurrDate: [
|
|
// { header: JSX, body: JSX, footer: JSX },
|
|
// { header: JSX, body: JSX, footer: JSX }
|
|
// ]
|
|
// };
|
|
|
|
return (
|
|
<Modal
|
|
isCentered
|
|
isOpen={isOpen}
|
|
onClose={() => handleClose()}
|
|
motionPreset="slideInBottom"
|
|
scrollBehavior="inside"
|
|
size={modalVariant === "currDate" ? "xl" : "2xl"}
|
|
>
|
|
<ModalOverlay />
|
|
<ModalContent>
|
|
<ModalHeader>
|
|
<HStack
|
|
w="100%"
|
|
h="auto"
|
|
justifyContent={"space-between"}
|
|
alignContent={"center"}
|
|
>
|
|
<Heading textAlign="center" as="h2" size="md" w="100%" h="auto">
|
|
{modalVariant && variants[modalVariant][step].header}
|
|
</Heading>
|
|
<Button onClick={() => updateIsOpen(!isOpen)}>{"X"}</Button>
|
|
</HStack>
|
|
</ModalHeader>
|
|
<ModalBody>
|
|
{modalVariant && variants[modalVariant][step].body}
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
{modalVariant && variants[modalVariant][step].footer}
|
|
</ModalFooter>
|
|
</ModalContent>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default AddSticker;
|