2023-05-11 12:08:46 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
2023-05-16 05:11:37 +00:00
|
|
|
import useSWR, { mutate } from "swr";
|
2023-05-11 12:08:46 +00:00
|
|
|
|
|
|
|
// services
|
|
|
|
import analyticsService from "services/analytics.service";
|
2023-05-16 05:11:37 +00:00
|
|
|
import projectService from "services/project.service";
|
|
|
|
import cyclesService from "services/cycles.service";
|
|
|
|
import modulesService from "services/modules.service";
|
2023-05-11 12:08:46 +00:00
|
|
|
// hooks
|
|
|
|
import useProjects from "hooks/use-projects";
|
|
|
|
import useToast from "hooks/use-toast";
|
|
|
|
// ui
|
2023-05-16 05:11:37 +00:00
|
|
|
import { PrimaryButton, SecondaryButton } from "components/ui";
|
2023-05-11 12:08:46 +00:00
|
|
|
// icons
|
2023-05-17 07:55:58 +00:00
|
|
|
import {
|
|
|
|
ArrowDownTrayIcon,
|
|
|
|
ArrowPathIcon,
|
|
|
|
CalendarDaysIcon,
|
|
|
|
UserGroupIcon,
|
|
|
|
} from "@heroicons/react/24/outline";
|
2023-05-16 05:11:37 +00:00
|
|
|
import { ContrastIcon, LayerDiagonalIcon } from "components/icons";
|
|
|
|
// helpers
|
|
|
|
import { renderShortDate } from "helpers/date-time.helper";
|
2023-05-11 12:08:46 +00:00
|
|
|
// types
|
2023-05-16 05:11:37 +00:00
|
|
|
import { IAnalyticsParams, IAnalyticsResponse, IExportAnalyticsFormData, IProject } from "types";
|
2023-05-11 12:08:46 +00:00
|
|
|
// fetch-keys
|
2023-05-16 05:11:37 +00:00
|
|
|
import { ANALYTICS, CYCLE_DETAILS, MODULE_DETAILS, PROJECT_DETAILS } from "constants/fetch-keys";
|
2023-05-11 12:08:46 +00:00
|
|
|
// constants
|
2023-05-16 05:11:37 +00:00
|
|
|
import { NETWORK_CHOICES } from "constants/project";
|
2023-05-11 12:08:46 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
analytics: IAnalyticsResponse | undefined;
|
|
|
|
params: IAnalyticsParams;
|
|
|
|
fullScreen: boolean;
|
2023-05-16 05:11:37 +00:00
|
|
|
isProjectLevel: boolean;
|
2023-05-11 12:08:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const AnalyticsSidebar: React.FC<Props> = ({
|
|
|
|
analytics,
|
|
|
|
params,
|
|
|
|
fullScreen,
|
|
|
|
isProjectLevel = false,
|
|
|
|
}) => {
|
|
|
|
const router = useRouter();
|
2023-05-16 05:11:37 +00:00
|
|
|
const { workspaceSlug, projectId, cycleId, moduleId } = router.query;
|
2023-05-11 12:08:46 +00:00
|
|
|
|
|
|
|
const { projects } = useProjects();
|
|
|
|
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
|
2023-05-16 05:11:37 +00:00
|
|
|
const { data: projectDetails } = useSWR(
|
|
|
|
workspaceSlug && projectId && !(cycleId || moduleId)
|
|
|
|
? PROJECT_DETAILS(projectId.toString())
|
|
|
|
: null,
|
|
|
|
workspaceSlug && projectId && !(cycleId || moduleId)
|
|
|
|
? () => projectService.getProject(workspaceSlug.toString(), projectId.toString())
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
const { data: cycleDetails } = useSWR(
|
|
|
|
workspaceSlug && projectId && cycleId ? CYCLE_DETAILS(cycleId.toString()) : null,
|
|
|
|
workspaceSlug && projectId && cycleId
|
|
|
|
? () =>
|
|
|
|
cyclesService.getCycleDetails(
|
|
|
|
workspaceSlug.toString(),
|
|
|
|
projectId.toString(),
|
|
|
|
cycleId.toString()
|
|
|
|
)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
const { data: moduleDetails } = useSWR(
|
|
|
|
workspaceSlug && projectId && moduleId ? MODULE_DETAILS(moduleId.toString()) : null,
|
|
|
|
workspaceSlug && projectId && moduleId
|
|
|
|
? () =>
|
|
|
|
modulesService.getModuleDetails(
|
|
|
|
workspaceSlug.toString(),
|
|
|
|
projectId.toString(),
|
|
|
|
moduleId.toString()
|
|
|
|
)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
2023-05-11 12:08:46 +00:00
|
|
|
const exportAnalytics = () => {
|
|
|
|
if (!workspaceSlug) return;
|
|
|
|
|
|
|
|
const data: IExportAnalyticsFormData = {
|
|
|
|
x_axis: params.x_axis,
|
|
|
|
y_axis: params.y_axis,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (params.segment) data.segment = params.segment;
|
2023-05-16 05:11:37 +00:00
|
|
|
if (params.project) data.project = params.project;
|
2023-05-11 12:08:46 +00:00
|
|
|
|
|
|
|
analyticsService
|
|
|
|
.exportAnalytics(workspaceSlug.toString(), data)
|
|
|
|
.then((res) =>
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Success!",
|
|
|
|
message: res.message,
|
|
|
|
})
|
|
|
|
)
|
|
|
|
.catch(() =>
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
|
|
|
message: "There was some error in exporting the analytics. Please try again.",
|
|
|
|
})
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-05-17 07:55:58 +00:00
|
|
|
const selectedProjects =
|
|
|
|
params.project && params.project.length > 0 ? params.project : projects.map((p) => p.id);
|
|
|
|
|
2023-05-11 12:08:46 +00:00
|
|
|
return (
|
|
|
|
<div
|
2023-05-17 07:55:58 +00:00
|
|
|
className={`px-5 py-2.5 flex items-center justify-between space-y-2 ${
|
2023-05-16 05:11:37 +00:00
|
|
|
fullScreen
|
2023-05-17 07:55:58 +00:00
|
|
|
? "border-l border-brand-base md:h-full md:border-l md:border-brand-base md:space-y-4 overflow-hidden md:flex-col md:items-start md:py-5"
|
2023-05-16 05:11:37 +00:00
|
|
|
: ""
|
2023-05-11 12:08:46 +00:00
|
|
|
}`}
|
|
|
|
>
|
2023-05-16 05:11:37 +00:00
|
|
|
<div className="flex items-center gap-2 flex-wrap">
|
|
|
|
<div className="flex items-center gap-1 bg-brand-surface-2 rounded-md px-3 py-1 text-brand-secondary text-xs">
|
|
|
|
<LayerDiagonalIcon height={14} width={14} />
|
|
|
|
{analytics ? analytics.total : "..."} Issues
|
2023-05-11 12:08:46 +00:00
|
|
|
</div>
|
2023-05-17 07:55:58 +00:00
|
|
|
{isProjectLevel && (
|
|
|
|
<div className="flex items-center gap-1 bg-brand-surface-2 rounded-md px-3 py-1 text-brand-secondary text-xs">
|
|
|
|
<CalendarDaysIcon className="h-3.5 w-3.5" />
|
|
|
|
{renderShortDate(
|
|
|
|
(cycleId
|
|
|
|
? cycleDetails?.created_at
|
|
|
|
: moduleId
|
|
|
|
? moduleDetails?.created_at
|
|
|
|
: projectDetails?.created_at) ?? ""
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
2023-05-16 05:11:37 +00:00
|
|
|
</div>
|
|
|
|
<div className="h-full overflow-hidden">
|
|
|
|
{fullScreen ? (
|
|
|
|
<>
|
2023-05-17 07:55:58 +00:00
|
|
|
{!isProjectLevel && selectedProjects && selectedProjects.length > 0 && (
|
2023-05-16 05:11:37 +00:00
|
|
|
<div className="hidden h-full overflow-hidden md:flex md:flex-col">
|
|
|
|
<h4 className="font-medium">Selected Projects</h4>
|
|
|
|
<div className="space-y-6 mt-4 h-full overflow-y-auto">
|
2023-05-17 07:55:58 +00:00
|
|
|
{selectedProjects.map((projectId) => {
|
2023-05-16 05:11:37 +00:00
|
|
|
const project: IProject = projects.find((p) => p.id === projectId);
|
2023-05-11 12:08:46 +00:00
|
|
|
|
|
|
|
return (
|
2023-05-16 05:11:37 +00:00
|
|
|
<div key={project.id}>
|
2023-05-20 10:30:41 +00:00
|
|
|
<div className="text-sm flex items-center gap-1">
|
2023-05-19 11:05:51 +00:00
|
|
|
{project.emoji ? (
|
2023-05-16 05:11:37 +00:00
|
|
|
<span className="grid h-6 w-6 flex-shrink-0 place-items-center">
|
2023-05-19 11:05:51 +00:00
|
|
|
{String.fromCodePoint(parseInt(project.emoji))}
|
2023-05-16 05:11:37 +00:00
|
|
|
</span>
|
2023-05-19 11:05:51 +00:00
|
|
|
) : project.icon_prop ? (
|
|
|
|
<div className="h-6 w-6 grid place-items-center flex-shrink-0">
|
|
|
|
<span
|
|
|
|
style={{ color: project.icon_prop.color }}
|
|
|
|
className="material-symbols-rounded text-lg"
|
|
|
|
>
|
|
|
|
{project.icon_prop.name}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-05-16 05:11:37 +00:00
|
|
|
) : (
|
2023-05-19 11:05:51 +00:00
|
|
|
<span className="grid h-6 w-6 mr-1 flex-shrink-0 place-items-center rounded bg-gray-700 uppercase text-white">
|
2023-05-16 05:11:37 +00:00
|
|
|
{project?.name.charAt(0)}
|
|
|
|
</span>
|
|
|
|
)}
|
2023-05-20 10:30:41 +00:00
|
|
|
<h5 className="break-all">
|
|
|
|
{project.name}
|
|
|
|
<span className="text-brand-secondary text-xs ml-1">
|
|
|
|
({project.identifier})
|
|
|
|
</span>
|
|
|
|
</h5>
|
|
|
|
</div>
|
2023-05-16 05:11:37 +00:00
|
|
|
<div className="mt-4 space-y-3 pl-2">
|
|
|
|
<div className="flex items-center justify-between gap-2 text-xs">
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<UserGroupIcon className="h-4 w-4 text-brand-secondary" />
|
|
|
|
<h6>Total members</h6>
|
|
|
|
</div>
|
|
|
|
<span className="text-brand-secondary">{project.total_members}</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between gap-2 text-xs">
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<ContrastIcon height={16} width={16} />
|
|
|
|
<h6>Total cycles</h6>
|
|
|
|
</div>
|
|
|
|
<span className="text-brand-secondary">{project.total_cycles}</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between gap-2 text-xs">
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<UserGroupIcon className="h-4 w-4 text-brand-secondary" />
|
|
|
|
<h6>Total modules</h6>
|
|
|
|
</div>
|
|
|
|
<span className="text-brand-secondary">{project.total_modules}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-05-11 12:08:46 +00:00
|
|
|
);
|
|
|
|
})}
|
2023-05-16 05:11:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{projectId ? (
|
|
|
|
cycleId && cycleDetails ? (
|
|
|
|
<div className="hidden md:block h-full overflow-y-auto">
|
2023-05-16 09:41:40 +00:00
|
|
|
<h4 className="font-medium break-all">Analytics for {cycleDetails.name}</h4>
|
2023-05-16 05:11:37 +00:00
|
|
|
<div className="space-y-4 mt-4">
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<h6 className="text-brand-secondary">Lead</h6>
|
|
|
|
<span>
|
|
|
|
{cycleDetails.owned_by?.first_name} {cycleDetails.owned_by?.last_name}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<h6 className="text-brand-secondary">Start Date</h6>
|
|
|
|
<span>
|
|
|
|
{cycleDetails.start_date && cycleDetails.start_date !== ""
|
|
|
|
? renderShortDate(cycleDetails.start_date)
|
|
|
|
: "No start date"}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<h6 className="text-brand-secondary">Target Date</h6>
|
|
|
|
<span>
|
|
|
|
{cycleDetails.end_date && cycleDetails.end_date !== ""
|
|
|
|
? renderShortDate(cycleDetails.end_date)
|
|
|
|
: "No end date"}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : moduleId && moduleDetails ? (
|
|
|
|
<div className="hidden md:block h-full overflow-y-auto">
|
2023-05-16 09:41:40 +00:00
|
|
|
<h4 className="font-medium break-all">Analytics for {moduleDetails.name}</h4>
|
2023-05-16 05:11:37 +00:00
|
|
|
<div className="space-y-4 mt-4">
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<h6 className="text-brand-secondary">Lead</h6>
|
|
|
|
<span>
|
|
|
|
{moduleDetails.lead_detail?.first_name}{" "}
|
|
|
|
{moduleDetails.lead_detail?.last_name}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<h6 className="text-brand-secondary">Start Date</h6>
|
|
|
|
<span>
|
|
|
|
{moduleDetails.start_date && moduleDetails.start_date !== ""
|
|
|
|
? renderShortDate(moduleDetails.start_date)
|
|
|
|
: "No start date"}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<h6 className="text-brand-secondary">Target Date</h6>
|
|
|
|
<span>
|
|
|
|
{moduleDetails.target_date && moduleDetails.target_date !== ""
|
|
|
|
? renderShortDate(moduleDetails.target_date)
|
|
|
|
: "No end date"}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className="hidden md:flex md:flex-col h-full overflow-y-auto">
|
|
|
|
<div className="flex items-center gap-1">
|
2023-05-19 11:05:51 +00:00
|
|
|
{projectDetails?.emoji ? (
|
|
|
|
<div className="grid h-6 w-6 flex-shrink-0 place-items-center">
|
|
|
|
{String.fromCodePoint(parseInt(projectDetails.emoji))}
|
|
|
|
</div>
|
|
|
|
) : projectDetails?.icon_prop ? (
|
|
|
|
<div className="h-6 w-6 grid place-items-center flex-shrink-0">
|
|
|
|
<span
|
|
|
|
style={{ color: projectDetails.icon_prop.color }}
|
|
|
|
className="material-symbols-rounded text-lg"
|
|
|
|
>
|
|
|
|
{projectDetails.icon_prop.name}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-05-16 05:11:37 +00:00
|
|
|
) : (
|
2023-05-19 11:05:51 +00:00
|
|
|
<span className="grid h-6 w-6 mr-1 flex-shrink-0 place-items-center rounded bg-gray-700 uppercase text-white">
|
2023-05-16 05:11:37 +00:00
|
|
|
{projectDetails?.name.charAt(0)}
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
<h4 className="font-medium break-all">{projectDetails?.name}</h4>
|
|
|
|
</div>
|
|
|
|
<div className="space-y-4 mt-4">
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<h6 className="text-brand-secondary">Network</h6>
|
|
|
|
<span>
|
|
|
|
{
|
|
|
|
NETWORK_CHOICES[
|
|
|
|
`${projectDetails?.network}` as keyof typeof NETWORK_CHOICES
|
|
|
|
]
|
|
|
|
}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
) : null}
|
|
|
|
</>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2 flex-wrap justify-self-end">
|
|
|
|
<SecondaryButton
|
|
|
|
onClick={() => {
|
|
|
|
if (!workspaceSlug) return;
|
|
|
|
|
|
|
|
mutate(ANALYTICS(workspaceSlug.toString(), params));
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div className="flex items-center gap-2 -my-1">
|
|
|
|
<ArrowPathIcon className="h-3.5 w-3.5" />
|
|
|
|
Refresh
|
2023-05-11 12:08:46 +00:00
|
|
|
</div>
|
2023-05-16 05:11:37 +00:00
|
|
|
</SecondaryButton>
|
|
|
|
<PrimaryButton onClick={exportAnalytics}>
|
|
|
|
<div className="flex items-center gap-2 -my-1">
|
|
|
|
<ArrowDownTrayIcon className="h-3.5 w-3.5" />
|
|
|
|
Export as CSV
|
|
|
|
</div>
|
|
|
|
</PrimaryButton>
|
2023-05-11 12:08:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|