mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
58 lines
2.0 KiB
TypeScript
58 lines
2.0 KiB
TypeScript
import React, { Fragment } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { Tab } from "@headlessui/react";
|
|
import { ICycle, IModule, IProject } from "@plane/types";
|
|
// components
|
|
import { CustomAnalytics, ScopeAndDemand } from "@/components/analytics";
|
|
// types
|
|
import { ANALYTICS_TABS } from "@/constants/analytics";
|
|
// constants
|
|
|
|
type Props = {
|
|
fullScreen: boolean;
|
|
cycleDetails: ICycle | undefined;
|
|
moduleDetails: IModule | undefined;
|
|
projectDetails: IProject | undefined;
|
|
};
|
|
|
|
export const ProjectAnalyticsModalMainContent: React.FC<Props> = observer((props) => {
|
|
const { fullScreen, cycleDetails, moduleDetails } = props;
|
|
|
|
return (
|
|
<Tab.Group as={React.Fragment}>
|
|
<Tab.List as="div" className="flex space-x-2 border-b h-[50px] border-custom-border-200 px-0 md:px-3">
|
|
{ANALYTICS_TABS.map((tab) => (
|
|
<Tab key={tab.key} as={Fragment}>
|
|
{({ selected }) => (
|
|
<button
|
|
className={`text-sm group relative flex items-center gap-1 h-[50px] px-3 cursor-pointer transition-all font-medium outline-none ${
|
|
selected ? "text-custom-primary-100 " : "hover:text-custom-text-200"
|
|
}`}
|
|
>
|
|
{tab.title}
|
|
<div
|
|
className={`border absolute bottom-0 right-0 left-0 rounded-t-md ${selected ? "border-custom-primary-100" : "border-transparent group-hover:border-custom-border-200"}`}
|
|
/>
|
|
</button>
|
|
)}
|
|
</Tab>
|
|
))}
|
|
</Tab.List>
|
|
<Tab.Panels as={React.Fragment}>
|
|
<Tab.Panel as={React.Fragment}>
|
|
<ScopeAndDemand fullScreen={fullScreen} />
|
|
</Tab.Panel>
|
|
<Tab.Panel as={React.Fragment}>
|
|
<CustomAnalytics
|
|
additionalParams={{
|
|
cycle: cycleDetails?.id,
|
|
module: moduleDetails?.id,
|
|
}}
|
|
fullScreen={fullScreen}
|
|
/>
|
|
</Tab.Panel>
|
|
</Tab.Panels>
|
|
</Tab.Group>
|
|
);
|
|
});
|