import { useEffect } from "react"; import { useRouter } from "next/router"; // mobx import { useMobxStore } from "lib/mobx/store-provider"; import { observer } from "mobx-react-lite"; // components import { CustomCheckboxAttribute, CustomDateTimeAttribute, CustomEmailAttribute, CustomFileAttribute, CustomNumberAttribute, CustomRelationAttribute, CustomSelectAttribute, CustomTextAttribute, CustomUrlAttribute, } from "components/custom-attributes"; // ui import { Loader } from "components/ui"; // types import { ICustomAttributeValueFormData, IIssue } from "types"; // constants import { CUSTOM_ATTRIBUTES_LIST } from "constants/custom-attributes"; type Props = { issue: IIssue | undefined; projectId: string; }; export const SidebarCustomAttributesList: React.FC = observer(({ issue, projectId }) => { const router = useRouter(); const { workspaceSlug } = router.query; const { customAttributes: customAttributesStore, customAttributeValues: customAttributeValuesStore, } = useMobxStore(); const { entityAttributes, fetchEntityDetails } = customAttributesStore; const { issueAttributeValues, fetchIssueAttributeValues, deleteAttributeValue } = customAttributeValuesStore; const handleAttributeUpdate = (attributeId: string, value: string | string[] | undefined) => { if (!issue || !workspaceSlug) return; if (!value) { deleteAttributeValue(workspaceSlug.toString(), projectId, issue.id, attributeId); return; } const payload: ICustomAttributeValueFormData = { issue_properties: { [attributeId]: Array.isArray(value) ? value : [value], }, }; customAttributeValuesStore.createAttributeValue( workspaceSlug.toString(), issue.project, issue.id, payload ); }; // fetch the object details if object state has id useEffect(() => { if (!issue?.entity) return; if (!entityAttributes[issue.entity]) { if (!workspaceSlug) return; fetchEntityDetails(workspaceSlug.toString(), issue.entity); } }, [issue?.entity, entityAttributes, fetchEntityDetails, workspaceSlug]); // fetch issue attribute values useEffect(() => { if (!issue) return; if (!issueAttributeValues || !issueAttributeValues[issue.id]) { if (!workspaceSlug) return; fetchIssueAttributeValues(workspaceSlug.toString(), issue.project, issue.id); } }, [fetchIssueAttributeValues, issue, issueAttributeValues, workspaceSlug]); if (!issue || !issue?.entity) return null; if (!entityAttributes[issue.entity] || !issueAttributeValues?.[issue.id]) return ( ); return (
{Object.values(entityAttributes?.[issue.entity] ?? {}).map((attribute) => { const typeMetaData = CUSTOM_ATTRIBUTES_LIST[attribute.type]; const attributeValue = issueAttributeValues?.[issue.id].find( (a) => a.id === attribute.id )?.prop_value; return (

{attribute.display_name}

{attribute.type === "checkbox" && ( handleAttributeUpdate(attribute.id, [`${val}`])} projectId={issue.project} value={ attributeValue ? (attributeValue?.[0]?.value === "true" ? true : false) : false } /> )} {attribute.type === "datetime" && ( { handleAttributeUpdate(attribute.id, val ? [val.toISOString()] : undefined); }} projectId={issue.project} value={attributeValue ? new Date(attributeValue?.[0]?.value ?? "") : undefined} /> )} {attribute.type === "email" && ( { handleAttributeUpdate(attribute.id, val && val !== "" ? [val] : undefined); }} projectId={issue.project} value={attributeValue ? attributeValue?.[0]?.value : undefined} /> )} {attribute.type === "file" && ( handleAttributeUpdate(attribute.id, val)} projectId={issue.project} value={attributeValue ? attributeValue?.[0]?.value : undefined} /> )} {attribute.type === "multi_select" && ( handleAttributeUpdate(attribute.id, val)} projectId={issue.project} value={Array.isArray(attributeValue) ? attributeValue.map((v) => v.value) : []} multiple /> )} {attribute.type === "number" && ( { handleAttributeUpdate(attribute.id, val ? [val.toString()] : undefined); }} projectId={issue.project} value={ attributeValue ? parseInt(attributeValue?.[0]?.value ?? "0", 10) : undefined } /> )} {attribute.type === "relation" && ( handleAttributeUpdate(attribute.id, val)} projectId={issue.project} value={attributeValue ? attributeValue?.[0]?.value : undefined} /> )} {attribute.type === "select" && ( handleAttributeUpdate(attribute.id, val)} projectId={issue.project} value={attributeValue ? attributeValue?.[0]?.value : undefined} multiple={false} /> )} {attribute.type === "text" && ( handleAttributeUpdate(attribute.id, val && val !== "" ? [val] : undefined) } projectId={issue.project} value={attributeValue ? attributeValue?.[0].value : undefined} /> )} {attribute.type === "url" && ( handleAttributeUpdate(attribute.id, val && val !== "" ? [val] : undefined) } projectId={issue.project} value={attributeValue ? attributeValue?.[0]?.value : undefined} /> )}
); })}
); });