mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* chore: move icons from ui package to propel package * chore: package and tsdown config updated * chore: migrate all icon imports from @plane/ui to @plane/propel/icons * chore: remove icon components from @plane/ui package (migrated to @plane/propel/icons) * chore: code refactoring * chore: migrate remaining icon components from @Plane/ui to @Plane/propel/icons * fix: lint error * chore: code refactor
111 lines
4.0 KiB
TypeScript
111 lines
4.0 KiB
TypeScript
import { FC, useEffect, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { PanelLeft } from "lucide-react";
|
|
// plane imports
|
|
import { useTranslation } from "@plane/i18n";
|
|
import { Intake } from "@plane/propel/icons";
|
|
import { EInboxIssueCurrentTab } from "@plane/types";
|
|
import { cn } from "@plane/utils";
|
|
// components
|
|
import { SimpleEmptyState } from "@/components/empty-state/simple-empty-state-root";
|
|
import { InboxContentRoot } from "@/components/inbox/content";
|
|
import { InboxSidebar } from "@/components/inbox/sidebar";
|
|
import { InboxLayoutLoader } from "@/components/ui/loader/layouts/project-inbox/inbox-layout-loader";
|
|
// hooks
|
|
import { useProjectInbox } from "@/hooks/store/use-project-inbox";
|
|
import { useResolvedAssetPath } from "@/hooks/use-resolved-asset-path";
|
|
|
|
type TInboxIssueRoot = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
inboxIssueId: string | undefined;
|
|
inboxAccessible: boolean;
|
|
navigationTab?: EInboxIssueCurrentTab | undefined;
|
|
};
|
|
|
|
export const InboxIssueRoot: FC<TInboxIssueRoot> = observer((props) => {
|
|
const { workspaceSlug, projectId, inboxIssueId, inboxAccessible, navigationTab } = props;
|
|
// states
|
|
const [isMobileSidebar, setIsMobileSidebar] = useState(true);
|
|
// plane hooks
|
|
const { t } = useTranslation();
|
|
// hooks
|
|
const { loader, error, currentTab, handleCurrentTab, fetchInboxIssues } = useProjectInbox();
|
|
// derived values
|
|
const resolvedPath = useResolvedAssetPath({ basePath: "/empty-state/intake/issue-detail" });
|
|
|
|
useEffect(() => {
|
|
if (!inboxAccessible || !workspaceSlug || !projectId) return;
|
|
if (navigationTab && navigationTab !== currentTab) {
|
|
handleCurrentTab(workspaceSlug, projectId, navigationTab);
|
|
} else {
|
|
fetchInboxIssues(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
undefined,
|
|
navigationTab || EInboxIssueCurrentTab.OPEN
|
|
);
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [inboxAccessible, workspaceSlug, projectId]);
|
|
|
|
// loader
|
|
if (loader === "init-loading")
|
|
return (
|
|
<div className="relative flex w-full h-full flex-col">
|
|
<InboxLayoutLoader />
|
|
</div>
|
|
);
|
|
|
|
// error
|
|
if (error && error?.status === "init-error")
|
|
return (
|
|
<div className="relative w-full h-full flex flex-col gap-3 justify-center items-center">
|
|
<Intake className="size-[60px]" strokeWidth={1.5} />
|
|
<div className="text-custom-text-200">{error?.message}</div>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
{!inboxIssueId && (
|
|
<div className="flex lg:hidden items-center px-4 w-full h-12 border-b border-custom-border-200">
|
|
<PanelLeft
|
|
onClick={() => setIsMobileSidebar(!isMobileSidebar)}
|
|
className={cn("w-4 h-4 ", isMobileSidebar ? "text-custom-primary-100" : " text-custom-text-200")}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div className="w-full h-full flex overflow-hidden bg-custom-background-100">
|
|
<div
|
|
className={cn(
|
|
"absolute z-10 top-[50px] lg:!top-0 lg:!relative bg-custom-background-100 flex-shrink-0 w-full lg:w-2/6 bottom-0 transition-all",
|
|
isMobileSidebar ? "translate-x-0" : "-translate-x-full lg:!translate-x-0"
|
|
)}
|
|
>
|
|
<InboxSidebar
|
|
setIsMobileSidebar={setIsMobileSidebar}
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
inboxIssueId={inboxIssueId}
|
|
/>
|
|
</div>
|
|
|
|
{inboxIssueId ? (
|
|
<InboxContentRoot
|
|
setIsMobileSidebar={setIsMobileSidebar}
|
|
isMobileSidebar={isMobileSidebar}
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
inboxIssueId={inboxIssueId.toString()}
|
|
/>
|
|
) : (
|
|
<div className="w-full h-full relative flex justify-center items-center">
|
|
<SimpleEmptyState title={t("inbox_issue.empty_state.detail.title")} assetPath={resolvedPath} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
});
|