import { FC } from "react"; import { observer } from "mobx-react-lite"; // hooks import { useIssueDetail } from "hooks/store"; // components import { IssueAttachmentsDetail } from "./attachment-detail"; // types import { TAttachmentOperations } from "./root"; type TAttachmentOperationsRemoveModal = Exclude; type TIssueAttachmentsList = { issueId: string; handleAttachmentOperations: TAttachmentOperationsRemoveModal; disabled?: boolean; }; export const IssueAttachmentsList: FC = observer((props) => { const { issueId, handleAttachmentOperations, disabled } = props; // store hooks const { attachment: { getAttachmentsByIssueId }, } = useIssueDetail(); const issueAttachments = getAttachmentsByIssueId(issueId); if (!issueAttachments) return <>; return ( <> {issueAttachments && issueAttachments.length > 0 && issueAttachments.map((attachmentId) => ( ))} ); });