forked from github/plane
87f39d7372
* chore: empty state asset added * chore: empty state asset updated and image path helper function added * chore: empty state asset updated * chore: empty state asset updated and empty state details constant added * chore: empty state component, helper function and comicbox button added * chore: draft, archived and project issue empty state * chore: cycle, module and issue layout empty state * chore: analytics, dashboard, all issues, pages and project view empty state * chore:projects empty state * chore:projects empty state improvement * chore: cycle, module, view and page loader improvement * chore: code refactor
93 lines
3.5 KiB
TypeScript
93 lines
3.5 KiB
TypeScript
import React, { Fragment, ReactElement } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Tab } from "@headlessui/react";
|
|
// hooks
|
|
import { useApplication, useProject, useUser } from "hooks/store";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { CustomAnalytics, ScopeAndDemand } from "components/analytics";
|
|
import { WorkspaceAnalyticsHeader } from "components/headers";
|
|
import { EmptyState, getEmptyStateImagePath } from "components/empty-state";
|
|
// constants
|
|
import { ANALYTICS_TABS } from "constants/analytics";
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
// type
|
|
import { NextPageWithLayout } from "lib/types";
|
|
|
|
const AnalyticsPage: NextPageWithLayout = observer(() => {
|
|
// store hooks
|
|
const {
|
|
commandPalette: { toggleCreateProjectModal },
|
|
eventTracker: { setTrackElement },
|
|
} = useApplication();
|
|
const {
|
|
membership: { currentWorkspaceRole },
|
|
currentUser,
|
|
} = useUser();
|
|
const { workspaceProjectIds } = useProject();
|
|
|
|
const EmptyStateImagePath = getEmptyStateImagePath("onboarding", "analytics", currentUser?.theme.theme === "light");
|
|
const isEditingAllowed = !!currentWorkspaceRole && currentWorkspaceRole >= EUserWorkspaceRoles.MEMBER;
|
|
|
|
return (
|
|
<>
|
|
{workspaceProjectIds && workspaceProjectIds.length > 0 ? (
|
|
<div className="flex h-full flex-col overflow-hidden bg-custom-background-100">
|
|
<Tab.Group as={Fragment}>
|
|
<Tab.List as="div" className="space-x-2 border-b border-custom-border-200 px-5 py-3">
|
|
{ANALYTICS_TABS.map((tab) => (
|
|
<Tab
|
|
key={tab.key}
|
|
className={({ selected }) =>
|
|
`rounded-3xl border border-custom-border-200 px-4 py-2 text-xs hover:bg-custom-background-80 ${
|
|
selected ? "bg-custom-background-80" : ""
|
|
}`
|
|
}
|
|
onClick={() => {}}
|
|
>
|
|
{tab.title}
|
|
</Tab>
|
|
))}
|
|
</Tab.List>
|
|
<Tab.Panels as={Fragment}>
|
|
<Tab.Panel as={Fragment}>
|
|
<ScopeAndDemand fullScreen />
|
|
</Tab.Panel>
|
|
<Tab.Panel as={Fragment}>
|
|
<CustomAnalytics fullScreen />
|
|
</Tab.Panel>
|
|
</Tab.Panels>
|
|
</Tab.Group>
|
|
</div>
|
|
) : (
|
|
<EmptyState
|
|
image={EmptyStateImagePath}
|
|
title="Track progress, workloads, and allocations. Spot trends, remove blockers, and move work faster"
|
|
description="See scope versus demand, estimates, and scope creep. Get performance by team members and teams, and make sure your project runs on time."
|
|
primaryButton={{
|
|
text: "Create Cycles and Modules first",
|
|
onClick: () => {
|
|
setTrackElement("ANALYTICS_EMPTY_STATE");
|
|
toggleCreateProjectModal(true);
|
|
},
|
|
}}
|
|
comicBox={{
|
|
title: "Analytics works best with Cycles + Modules",
|
|
description:
|
|
"First, timebox your issues into Cycles and, if you can, group issues that span more than a cycle into Modules. Check out both on the left nav.",
|
|
}}
|
|
size="lg"
|
|
disabled={!isEditingAllowed}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|
|
|
|
AnalyticsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<WorkspaceAnalyticsHeader />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default AnalyticsPage;
|