mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4611ec0b83
* fix: handled undefined issue_id in list layout * dev: issue detail store and optimization * dev: issue filter and list operations * fix: typo on labels update * dev: Handled all issues in the list layout in project issues * dev: handled kanban and auick add issue in swimlanes * chore: fixed peekoverview in kanban * chore: fixed peekoverview in calendar * chore: fixed peekoverview in gantt * chore: updated quick add in the gantt chart * chore: handled issue detail properties and resolved build issues --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import { FC } from "react";
|
|
import useSWR from "swr";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { IssueParentSiblingItem } from "./sibling-item";
|
|
// hooks
|
|
import { useIssueDetail } from "hooks/store";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
export type TIssueParentSiblings = {
|
|
currentIssue: TIssue;
|
|
parentIssue: TIssue;
|
|
};
|
|
|
|
export const IssueParentSiblings: FC<TIssueParentSiblings> = (props) => {
|
|
const { currentIssue, parentIssue } = props;
|
|
// hooks
|
|
const {
|
|
peekIssue,
|
|
fetchSubIssues,
|
|
subIssues: { subIssuesByIssueId },
|
|
} = useIssueDetail();
|
|
|
|
const { isLoading } = useSWR(
|
|
peekIssue && parentIssue
|
|
? `ISSUE_PARENT_CHILD_ISSUES_${peekIssue?.workspaceSlug}_${parentIssue.project_id}_${parentIssue.id}`
|
|
: null,
|
|
peekIssue && parentIssue
|
|
? () => fetchSubIssues(peekIssue?.workspaceSlug, parentIssue.project_id, parentIssue.id)
|
|
: null
|
|
);
|
|
|
|
const subIssueIds = (parentIssue && subIssuesByIssueId(parentIssue.id)) || undefined;
|
|
|
|
return (
|
|
<div>
|
|
{isLoading ? (
|
|
<div className="flex items-center gap-2 whitespace-nowrap px-1 py-1 text-left text-xs text-custom-text-200">
|
|
Loading
|
|
</div>
|
|
) : subIssueIds && subIssueIds.length > 0 ? (
|
|
subIssueIds.map((issueId) => currentIssue.id != issueId && <IssueParentSiblingItem issueId={issueId} />)
|
|
) : (
|
|
<div className="flex items-center gap-2 whitespace-nowrap px-1 py-1 text-left text-xs text-custom-text-200">
|
|
No sibling issues
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|