forked from github/plane
0165abab3e
* chore: events naming convention changed * chore: track element added for project related events * chore: track element added for cycle related events * chore: track element added for module related events * chore: issue related events updated * refactor: event tracker store * refactor: event-tracker store * fix: posthog changes --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
97 lines
3.6 KiB
TypeScript
97 lines
3.6 KiB
TypeScript
import React, { Fragment, ReactElement } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Tab } from "@headlessui/react";
|
|
import { useTheme } from "next-themes";
|
|
// hooks
|
|
import { useApplication, useEventTracker, 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(() => {
|
|
// theme
|
|
const { resolvedTheme } = useTheme();
|
|
// store hooks
|
|
const {
|
|
commandPalette: { toggleCreateProjectModal },
|
|
} = useApplication();
|
|
const { setTrackElement } = useEventTracker();
|
|
const {
|
|
membership: { currentWorkspaceRole },
|
|
currentUser,
|
|
} = useUser();
|
|
const { workspaceProjectIds } = useProject();
|
|
|
|
const isLightMode = resolvedTheme ? resolvedTheme === "light" : currentUser?.theme.theme === "light";
|
|
const EmptyStateImagePath = getEmptyStateImagePath("onboarding", "analytics", isLightMode);
|
|
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;
|