2023-05-11 12:08:46 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
// services
|
|
|
|
import analyticsService from "services/analytics.service";
|
|
|
|
// components
|
2023-05-15 05:52:06 +00:00
|
|
|
import {
|
|
|
|
AnalyticsDemand,
|
|
|
|
AnalyticsLeaderboard,
|
|
|
|
AnalyticsScope,
|
|
|
|
AnalyticsYearWiseIssues,
|
|
|
|
} from "components/analytics";
|
2023-05-11 12:08:46 +00:00
|
|
|
// ui
|
|
|
|
import { Loader, PrimaryButton } from "components/ui";
|
|
|
|
// fetch-keys
|
|
|
|
import { DEFAULT_ANALYTICS } from "constants/fetch-keys";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
fullScreen?: boolean;
|
|
|
|
};
|
|
|
|
|
2023-05-16 05:11:37 +00:00
|
|
|
export const ScopeAndDemand: React.FC<Props> = ({ fullScreen = true }) => {
|
2023-05-11 12:08:46 +00:00
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId, cycleId, moduleId } = router.query;
|
|
|
|
|
2023-05-16 05:11:37 +00:00
|
|
|
const isProjectLevel = projectId ? true : false;
|
|
|
|
|
2023-05-15 05:52:06 +00:00
|
|
|
const params = isProjectLevel
|
|
|
|
? {
|
2023-05-16 05:11:37 +00:00
|
|
|
project: projectId ? [projectId.toString()] : null,
|
2023-05-15 05:52:06 +00:00
|
|
|
cycle: cycleId ? cycleId.toString() : null,
|
|
|
|
module: moduleId ? moduleId.toString() : null,
|
|
|
|
}
|
|
|
|
: undefined;
|
2023-05-11 12:08:46 +00:00
|
|
|
|
|
|
|
const {
|
|
|
|
data: defaultAnalytics,
|
|
|
|
error: defaultAnalyticsError,
|
|
|
|
mutate: mutateDefaultAnalytics,
|
|
|
|
} = useSWR(
|
|
|
|
workspaceSlug ? DEFAULT_ANALYTICS(workspaceSlug.toString(), params) : null,
|
|
|
|
workspaceSlug
|
|
|
|
? () => analyticsService.getDefaultAnalytics(workspaceSlug.toString(), params)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{!defaultAnalyticsError ? (
|
|
|
|
defaultAnalytics ? (
|
|
|
|
<div className="h-full overflow-y-auto p-5 text-sm">
|
2023-05-15 05:52:06 +00:00
|
|
|
<div className={`grid grid-cols-1 gap-5 ${fullScreen ? "md:grid-cols-2" : ""}`}>
|
2023-05-11 12:08:46 +00:00
|
|
|
<AnalyticsDemand defaultAnalytics={defaultAnalytics} />
|
|
|
|
<AnalyticsScope defaultAnalytics={defaultAnalytics} />
|
2023-05-15 05:52:06 +00:00
|
|
|
<AnalyticsLeaderboard
|
2023-05-19 09:43:55 +00:00
|
|
|
users={defaultAnalytics.most_issue_created_user?.map((user) => ({
|
|
|
|
avatar: user?.created_by__avatar,
|
|
|
|
email: user?.created_by__email,
|
|
|
|
firstName: user?.created_by__first_name,
|
|
|
|
lastName: user?.created_by__last_name,
|
|
|
|
count: user?.count,
|
2023-05-15 05:52:06 +00:00
|
|
|
}))}
|
|
|
|
title="Most issues created"
|
|
|
|
/>
|
|
|
|
<AnalyticsLeaderboard
|
2023-05-19 09:43:55 +00:00
|
|
|
users={defaultAnalytics.most_issue_closed_user?.map((user) => ({
|
|
|
|
avatar: user?.assignees__avatar,
|
|
|
|
email: user?.assignees__email,
|
|
|
|
firstName: user?.assignees__first_name,
|
|
|
|
lastName: user?.assignees__last_name,
|
|
|
|
count: user?.count,
|
2023-05-15 05:52:06 +00:00
|
|
|
}))}
|
|
|
|
title="Most issues closed"
|
|
|
|
/>
|
|
|
|
<div className={fullScreen ? "md:col-span-2" : ""}>
|
|
|
|
<AnalyticsYearWiseIssues defaultAnalytics={defaultAnalytics} />
|
|
|
|
</div>
|
2023-05-11 12:08:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<Loader className="grid grid-cols-1 gap-5 p-5 lg:grid-cols-2">
|
2023-05-15 05:52:06 +00:00
|
|
|
<Loader.Item height="250px" />
|
|
|
|
<Loader.Item height="250px" />
|
|
|
|
<Loader.Item height="250px" />
|
|
|
|
<Loader.Item height="250px" />
|
2023-05-11 12:08:46 +00:00
|
|
|
</Loader>
|
|
|
|
)
|
|
|
|
) : (
|
|
|
|
<div className="grid h-full place-items-center p-5">
|
|
|
|
<div className="space-y-4 text-brand-secondary">
|
|
|
|
<p className="text-sm">There was some error in fetching the data.</p>
|
|
|
|
<div className="flex items-center justify-center gap-2">
|
2023-05-15 05:52:06 +00:00
|
|
|
<PrimaryButton onClick={() => mutateDefaultAnalytics()}>Refresh</PrimaryButton>
|
2023-05-11 12:08:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|