mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
03cbad5110
* style: fix create comment card overflow issue. * chore: improved loader and filter selection logic. * chore: implement inbox issue navigation functionality. * chore: loaders in inbox issue sidebar and the content root * chore: inbox issue detail sidebar revamp. --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
57 lines
1.9 KiB
TypeScript
57 lines
1.9 KiB
TypeScript
import { FC } from "react";
|
|
import { Inbox } from "lucide-react";
|
|
import { observer } from "mobx-react";
|
|
// hooks
|
|
import { useInboxIssues } from "hooks/store";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
// components
|
|
import { InboxIssueList, InboxIssueFilterSelection, InboxIssueAppliedFilter } from "../";
|
|
|
|
type TInboxSidebarRoot = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
inboxId: string;
|
|
};
|
|
|
|
export const InboxSidebarRoot: FC<TInboxSidebarRoot> = observer((props) => {
|
|
const { workspaceSlug, projectId, inboxId } = props;
|
|
// store hooks
|
|
const {
|
|
issues: { loader },
|
|
} = useInboxIssues();
|
|
|
|
return (
|
|
<div className="relative flex flex-col w-full h-full">
|
|
<div className="flex-shrink-0 w-full h-[50px] relative flex justify-between items-center gap-2 p-2 px-3 border-b border-custom-border-300">
|
|
<div className="relative flex items-center gap-1">
|
|
<div className="relative w-6 h-6 flex justify-center items-center rounded bg-custom-background-80">
|
|
<Inbox className="w-4 h-4" />
|
|
</div>
|
|
<div className="font-medium">Inbox</div>
|
|
</div>
|
|
<div className="z-20">
|
|
<InboxIssueFilterSelection workspaceSlug={workspaceSlug} projectId={projectId} inboxId={inboxId} />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="w-full h-auto">
|
|
<InboxIssueAppliedFilter workspaceSlug={workspaceSlug} projectId={projectId} inboxId={inboxId} />
|
|
</div>
|
|
|
|
{loader && ["init-loader", "mutation"].includes(loader) ? (
|
|
<Loader className="flex flex-col h-full gap-5 p-5">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</Loader>
|
|
) : (
|
|
<div className="w-full h-full overflow-hidden">
|
|
<InboxIssueList workspaceSlug={workspaceSlug} projectId={projectId} inboxId={inboxId} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|