forked from github/plane
2cd5dbcd02
* fix: handled undefined issue_id in list layout * chore: updated label select dropdown in the issue detail * fix: peekoverview issue is resolved * chore: user role validation for issue details. * fix: Link, Attachement, parent mutation * build-error: build error resolved in peekoverview * chore: user role validation for issue details. * chore: user role validation for `issue description`, `parent`, `relation` and `subscription`. * chore: issue subscription mutation * chore: user role validation for `labels` in issue details. --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// computed
|
|
import { IssueLinkDetail } from "./link-detail";
|
|
// hooks
|
|
import { useIssueDetail, useUser } from "hooks/store";
|
|
import { TLinkOperations } from "./root";
|
|
|
|
export type TLinkOperationsModal = Exclude<TLinkOperations, "create">;
|
|
|
|
export type TIssueLinkList = {
|
|
issueId: string;
|
|
linkOperations: TLinkOperationsModal;
|
|
};
|
|
|
|
export const IssueLinkList: FC<TIssueLinkList> = observer((props) => {
|
|
// props
|
|
const { issueId, linkOperations } = props;
|
|
// hooks
|
|
const {
|
|
link: { getLinksByIssueId },
|
|
} = useIssueDetail();
|
|
const {
|
|
membership: { currentProjectRole },
|
|
} = useUser();
|
|
|
|
const issueLinks = getLinksByIssueId(issueId);
|
|
|
|
if (!issueLinks) return <></>;
|
|
|
|
return (
|
|
<div className="space-y-2">
|
|
{issueLinks &&
|
|
issueLinks.length > 0 &&
|
|
issueLinks.map((linkId) => (
|
|
<IssueLinkDetail
|
|
linkId={linkId}
|
|
linkOperations={linkOperations}
|
|
isNotAllowed={currentProjectRole === 5 || currentProjectRole === 10}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
});
|