mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
133 lines
5.2 KiB
TypeScript
133 lines
5.2 KiB
TypeScript
// nivo
|
|
import { BarDatum } from "@nivo/bar";
|
|
// icons
|
|
import { getPriorityIcon } from "components/icons";
|
|
// helpers
|
|
import { addSpaceIfCamelCase } from "helpers/string.helper";
|
|
// helpers
|
|
import { generateBarColor, renderMonthAndYear } from "helpers/analytics.helper";
|
|
// types
|
|
import { IAnalyticsParams, IAnalyticsResponse } from "types";
|
|
// constants
|
|
import { ANALYTICS_X_AXIS_VALUES, ANALYTICS_Y_AXIS_VALUES, DATE_KEYS } from "constants/analytics";
|
|
|
|
type Props = {
|
|
analytics: IAnalyticsResponse;
|
|
barGraphData: {
|
|
data: BarDatum[];
|
|
xAxisKeys: string[];
|
|
};
|
|
params: IAnalyticsParams;
|
|
yAxisKey: "count" | "estimate";
|
|
};
|
|
|
|
export const AnalyticsTable: React.FC<Props> = ({ analytics, barGraphData, params, yAxisKey }) => {
|
|
const renderAssigneeName = (assigneeId: string): string => {
|
|
const assignee = analytics.extras.assignee_details.find((a) => a.assignees__id === assigneeId);
|
|
|
|
if (!assignee) return "No assignee";
|
|
|
|
return assignee.assignees__display_name || "No assignee";
|
|
};
|
|
|
|
return (
|
|
<div className="flow-root">
|
|
<div className="overflow-x-auto">
|
|
<div className="inline-block min-w-full align-middle">
|
|
<table className="min-w-full divide-y divide-custom-border-200 whitespace-nowrap border-y border-custom-border-200">
|
|
<thead className="bg-custom-background-80">
|
|
<tr className="divide-x divide-custom-border-200 text-sm text-custom-text-100">
|
|
<th scope="col" className="py-3 px-2.5 text-left font-medium">
|
|
{ANALYTICS_X_AXIS_VALUES.find((v) => v.value === params.x_axis)?.label}
|
|
</th>
|
|
{params.segment ? (
|
|
barGraphData.xAxisKeys.map((key) => (
|
|
<th
|
|
key={`segment-${key}`}
|
|
scope="col"
|
|
className={`px-2.5 py-3 text-left font-medium ${
|
|
params.segment === "priority" || params.segment === "state__group"
|
|
? "capitalize"
|
|
: ""
|
|
}`}
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
{params.segment === "priority" ? (
|
|
getPriorityIcon(key)
|
|
) : (
|
|
<span
|
|
className="h-3 w-3 flex-shrink-0 rounded"
|
|
style={{
|
|
backgroundColor: generateBarColor(key, analytics, params, "segment"),
|
|
}}
|
|
/>
|
|
)}
|
|
{params.segment === "assignees__id"
|
|
? renderAssigneeName(key)
|
|
: DATE_KEYS.includes(params.segment ?? "")
|
|
? renderMonthAndYear(key)
|
|
: key}
|
|
</div>
|
|
</th>
|
|
))
|
|
) : (
|
|
<th scope="col" className="py-3 px-2.5 text-left font-medium sm:pr-0">
|
|
{ANALYTICS_Y_AXIS_VALUES.find((v) => v.value === params.y_axis)?.label}
|
|
</th>
|
|
)}
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y divide-custom-border-200">
|
|
{barGraphData.data.map((item, index) => (
|
|
<tr
|
|
key={`table-row-${index}`}
|
|
className="divide-x divide-custom-border-200 text-xs text-custom-text-200"
|
|
>
|
|
<td
|
|
className={`flex items-center gap-2 whitespace-nowrap py-2 px-2.5 font-medium ${
|
|
params.x_axis === "priority" || params.x_axis === "state__group"
|
|
? "capitalize"
|
|
: ""
|
|
}`}
|
|
>
|
|
{params.x_axis === "priority" ? (
|
|
getPriorityIcon(`${item.name}`)
|
|
) : (
|
|
<span
|
|
className="h-3 w-3 rounded"
|
|
style={{
|
|
backgroundColor: generateBarColor(
|
|
`${item.name}`,
|
|
analytics,
|
|
params,
|
|
"x_axis"
|
|
),
|
|
}}
|
|
/>
|
|
)}
|
|
{params.x_axis === "assignees__id"
|
|
? renderAssigneeName(`${item.name}`)
|
|
: addSpaceIfCamelCase(`${item.name}`)}
|
|
</td>
|
|
{params.segment ? (
|
|
barGraphData.xAxisKeys.map((key, index) => (
|
|
<td
|
|
key={`segment-value-${index}`}
|
|
className="whitespace-nowrap py-2 px-2.5 sm:pr-0"
|
|
>
|
|
{item[key] ?? 0}
|
|
</td>
|
|
))
|
|
) : (
|
|
<td className="whitespace-nowrap py-2 px-2.5 sm:pr-0">{item[yAxisKey]}</td>
|
|
)}
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|