forked from github/plane
37bb183bf0
* chore: global bar graph component * chore: global pie graph component * chore: global line graph component * chore: removed unnecessary file * chore: refactored global chart components to accept all props * chore: function to convert response to chart data * chore: global calendar graph component added * chore: global scatter plot graph component * feat: analytics boilerplate created * chore: null value for segment and project * chore: clean up file * chore: change project query param key * chore: export, refresh buttons, analytics table * fix: analytics fetch key error * chore: show only integer values in the y-axis * chore: custom x-axis tick values and bar colors * refactor: divide analytics page into granular components * chore: convert analytics page to modal, save analytics modal * fix: build error * fix: modal overflow issues, analytics loading screen * chore: custom tooltip, refactor: graphs folder structure * refactor: folder structure, chore: x-axis tick values for larger data * chore: code cleanup * chore: remove unnecessary files * fix: refresh analytics button on error * feat: scope and demand analytics * refactor: scope and demand and custom analytics folder structure * fix: dynamic import type * chore: minor updates * feat: project, cycle and module level analytics * style: project analytics modal * fix: merge conflicts * style: new scope and demand ui, user avatars in bar graph * fix: default analytics types * chore: new values when dimensioned by date * chore: update table and tooltip content when dimensioned or segmented by dates
66 lines
2.2 KiB
TypeScript
66 lines
2.2 KiB
TypeScript
// ui
|
|
import { BarGraph } from "components/ui";
|
|
// types
|
|
import { IDefaultAnalyticsResponse } from "types";
|
|
|
|
type Props = {
|
|
defaultAnalytics: IDefaultAnalyticsResponse;
|
|
};
|
|
|
|
export const AnalyticsScope: React.FC<Props> = ({ defaultAnalytics }) => (
|
|
<div className="rounded-[10px] border border-brand-base">
|
|
<h5 className="p-3 text-xs text-green-500">SCOPE</h5>
|
|
<div className="divide-y divide-brand-base">
|
|
<div>
|
|
<h6 className="px-3 text-base font-medium">Pending issues</h6>
|
|
<BarGraph
|
|
data={defaultAnalytics.pending_issue_user}
|
|
indexBy="assignees__email"
|
|
keys={["count"]}
|
|
height="250px"
|
|
colors={() => `#f97316`}
|
|
customYAxisTickValues={defaultAnalytics.pending_issue_user.map((d) => d.count)}
|
|
tooltip={(datum) => (
|
|
<div className="rounded-md border border-brand-base bg-brand-base p-2 text-xs">
|
|
<span className="font-medium text-brand-secondary">
|
|
Issue count- {datum.indexValue ?? "No assignee"}:{" "}
|
|
</span>
|
|
{datum.value}
|
|
</div>
|
|
)}
|
|
axisBottom={{
|
|
renderTick: (datum) => {
|
|
const avatar =
|
|
defaultAnalytics.pending_issue_user[datum.tickIndex].assignees__avatar ?? "";
|
|
|
|
if (avatar && avatar !== "")
|
|
return (
|
|
<g transform={`translate(${datum.x},${datum.y})`}>
|
|
<image
|
|
x={-8}
|
|
y={10}
|
|
width={16}
|
|
height={16}
|
|
xlinkHref={avatar}
|
|
style={{ clipPath: "circle(50%)" }}
|
|
/>
|
|
</g>
|
|
);
|
|
else
|
|
return (
|
|
<g transform={`translate(${datum.x},${datum.y})`}>
|
|
<circle cy={18} r={8} fill="#374151" />
|
|
<text x={0} y={21} textAnchor="middle" fontSize={9} fill="#ffffff">
|
|
{(`${datum.value}` ?? "No assignee").toUpperCase().charAt(0)}
|
|
</text>
|
|
</g>
|
|
);
|
|
},
|
|
}}
|
|
margin={{ top: 20 }}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|