mirror of https://github.com/ctk-hq/ctk
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
4.4 KiB
TypeScript
183 lines
4.4 KiB
TypeScript
import { styled } from "@mui/joy";
|
|
import { Fragment, FunctionComponent, ReactElement, useCallback } from "react";
|
|
import {
|
|
ChevronDownIcon,
|
|
ChevronUpIcon,
|
|
PlusIcon
|
|
} from "@heroicons/react/outline";
|
|
import Record, { IFieldType } from "./Record";
|
|
import { useFormikContext } from "formik";
|
|
import lodash from "lodash";
|
|
import IconButton from "@mui/joy/IconButton";
|
|
import { useAccordionState } from "../hooks";
|
|
import { useParams } from "react-router-dom";
|
|
|
|
export interface IRecordsProps {
|
|
collapsible?: boolean;
|
|
defaultOpen?: boolean;
|
|
title: string;
|
|
name: string;
|
|
fields: (index: number) => IFieldType[];
|
|
newValue: any;
|
|
renderLayout?: (elements: ReactElement[]) => ReactElement;
|
|
renderField?: (element: ReactElement, field: IFieldType) => ReactElement;
|
|
renderRemove?: (element: ReactElement) => ReactElement;
|
|
renderBorder?: () => ReactElement;
|
|
}
|
|
|
|
interface IGroupProps {
|
|
empty: boolean;
|
|
}
|
|
|
|
const Group = styled("div", {
|
|
shouldForwardProp: (propName) => propName !== "empty"
|
|
})<IGroupProps>`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: ${({ empty }) => (empty ? "center" : "flex-end")};
|
|
row-gap: ${({ theme }) => theme.spacing(1)};
|
|
width: 100%;
|
|
@media (max-width: 640px) {
|
|
row-gap: 0;
|
|
}
|
|
`;
|
|
|
|
const GroupTitle = styled("h5")`
|
|
font-size: 0.85rem;
|
|
color: #374151;
|
|
font-weight: 700;
|
|
width: 100%;
|
|
text-align: left;
|
|
`;
|
|
|
|
const RecordList = styled("div")`
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
row-gap: ${({ theme }) => theme.spacing(1)};
|
|
margin-top: ${({ theme }) => theme.spacing(1)};
|
|
width: 100%;
|
|
`;
|
|
|
|
const AddButton = styled(IconButton)`
|
|
border-radius: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
const Description = styled("p")`
|
|
margin-top: ${({ theme }) => theme.spacing(1)};
|
|
text-align: center;
|
|
color: #7a7a7a;
|
|
font-size: 14px;
|
|
width: 100%;
|
|
`;
|
|
|
|
const Top = styled("div")`
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
`;
|
|
|
|
const ExpandButton = styled(IconButton)`
|
|
border-radius: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
const Records: FunctionComponent<IRecordsProps> = (
|
|
props: IRecordsProps
|
|
): ReactElement => {
|
|
const {
|
|
collapsible = true,
|
|
defaultOpen = false,
|
|
title,
|
|
name,
|
|
fields,
|
|
newValue,
|
|
renderLayout,
|
|
renderField,
|
|
renderRemove,
|
|
renderBorder
|
|
} = props;
|
|
|
|
const formik = useFormikContext();
|
|
const items = lodash.get(formik.values, name);
|
|
|
|
const { uuid } = useParams<{ uuid: string }>();
|
|
|
|
const id = `${uuid}.${name}`;
|
|
const { open, toggle } = useAccordionState(id, defaultOpen);
|
|
|
|
const handleNew = useCallback(() => {
|
|
formik.setFieldValue(`${name}[${items.length}]`, newValue);
|
|
}, [formik]);
|
|
|
|
const handleRemove = useCallback(
|
|
(index: number) => {
|
|
const newOptions = items.filter(
|
|
(_: unknown, currentIndex: number) => currentIndex != index
|
|
);
|
|
formik.setFieldValue(name, newOptions);
|
|
},
|
|
[formik]
|
|
);
|
|
|
|
if (!items) {
|
|
throw new Error(`"${name}" is falsy.`);
|
|
}
|
|
|
|
if (!Array.isArray(items)) {
|
|
throw new Error(`Expected "${name}" to be an array.`);
|
|
}
|
|
|
|
const empty = items && items.length === 0;
|
|
|
|
return (
|
|
<Group empty={empty}>
|
|
<Top onClick={toggle}>
|
|
{title && <GroupTitle>{title}</GroupTitle>}
|
|
{collapsible && (
|
|
<ExpandButton size="sm" variant="plain">
|
|
{open && <ChevronUpIcon className="h-5 w-5" />}
|
|
{!open && <ChevronDownIcon className="h-5 w-5" />}
|
|
</ExpandButton>
|
|
)}
|
|
</Top>
|
|
{(!collapsible || open) && !empty && (
|
|
<RecordList>
|
|
{items.map((_: unknown, index: number) => (
|
|
<Fragment key={index}>
|
|
<Record
|
|
index={index}
|
|
fields={fields(index)}
|
|
onRemove={handleRemove}
|
|
renderLayout={renderLayout}
|
|
renderField={renderField}
|
|
renderRemove={renderRemove}
|
|
/>
|
|
{renderBorder && renderBorder()}
|
|
</Fragment>
|
|
))}
|
|
</RecordList>
|
|
)}
|
|
|
|
{(!collapsible || open) && empty && (
|
|
<Description>No items available</Description>
|
|
)}
|
|
|
|
{(!collapsible || open) && (
|
|
<AddButton size="sm" variant="soft" onClick={handleNew}>
|
|
<PlusIcon className="h-4 w-4" />
|
|
</AddButton>
|
|
)}
|
|
</Group>
|
|
);
|
|
};
|
|
|
|
export default Records;
|