forked from github/plane
b66f07845a
* chore: inbox-issues store and type updates * chore: issue inbox payload change for GET and POST * chore: issue inbox payload change for PATCH * chore: inbox-issue new hooks and store updates * chore: update inbox issue template. * chore: UI root * chore: sidebar issues render * chore: inbox issue details page layout. * chore: inbox issue filters * chore: inbox issue status card. * chore: add loader. * chore: active inbox issue styles. * chore: inbox filters * chore: inbox applied filters UI * chore: inbox issue approval header * chore: inbox issue approval header operations * chore: issue reaction and activity fetch in issue_inbox store * chore: posthog enabled --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
import { FC } from "react";
|
|
import { Inbox } from "lucide-react";
|
|
// components
|
|
import { InboxIssueList, InboxIssueFilterSelection, InboxIssueAppliedFilter } from "../";
|
|
|
|
type TInboxSidebarRoot = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
inboxId: string;
|
|
};
|
|
|
|
export const InboxSidebarRoot: FC<TInboxSidebarRoot> = (props) => {
|
|
const { workspaceSlug, projectId, inboxId } = props;
|
|
|
|
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-100">
|
|
<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-[999999]">
|
|
<InboxIssueFilterSelection workspaceSlug={workspaceSlug} projectId={projectId} inboxId={inboxId} />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="w-full h-auto">
|
|
<InboxIssueAppliedFilter workspaceSlug={workspaceSlug} projectId={projectId} inboxId={inboxId} />
|
|
</div>
|
|
|
|
<div className="w-full h-full overflow-hidden">
|
|
<InboxIssueList workspaceSlug={workspaceSlug} projectId={projectId} inboxId={inboxId} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|