-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#65): add status chart component
- add a pie chart from mui chart - add chart legend - add chart regression status
- Loading branch information
Showing
1 changed file
with
205 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
import { PieChart } from '@mui/x-charts/PieChart'; | ||
|
||
import { MdArrowDownward, MdArrowUpward } from 'react-icons/md'; | ||
import React, { ReactElement, useMemo } from 'react'; | ||
|
||
import { useDrawingArea } from '@mui/x-charts'; | ||
import { styled } from '@mui/material'; | ||
|
||
import ColoredCircle from '../ColoredCircle/ColoredCircle'; | ||
|
||
type StatusChartValues = { | ||
value: number; | ||
label: string; | ||
color: Colors; | ||
}; | ||
|
||
export enum Colors { | ||
Red = '#E15739', | ||
Green = '#53D07C', | ||
Yellow = '#FFD27C', | ||
Gray = '#EAEAEA', | ||
} | ||
|
||
export interface IStatusChart { | ||
elements: StatusChartValues[]; | ||
insideText?: StatusChartValues; | ||
increaseElement?: StatusChartValues; | ||
decreaseElement?: StatusChartValues; | ||
pieCentralLabel?: string; | ||
pieCentralDescription?: ReactElement; | ||
title: ReactElement; | ||
type: 'chart'; | ||
} | ||
|
||
interface IChartLegend { | ||
chartValues: (StatusChartValues | undefined)[]; | ||
} | ||
|
||
interface IRegressionElement { | ||
element: StatusChartValues; | ||
icon: ReactElement; | ||
} | ||
|
||
interface IRegressionStatus { | ||
increaseElement?: StatusChartValues; | ||
decreaseElement?: StatusChartValues; | ||
} | ||
|
||
const StatusChart = ({ | ||
elements, | ||
increaseElement, | ||
decreaseElement, | ||
pieCentralLabel, | ||
pieCentralDescription, | ||
}: IStatusChart): JSX.Element => { | ||
const showChart = elements.some(element => element.value > 0); | ||
|
||
const dataSeries = useMemo(() => { | ||
return [ | ||
{ | ||
data: elements, | ||
innerRadius: 50, | ||
outerRadius: 80, | ||
}, | ||
]; | ||
}, [elements]); | ||
|
||
if (!showChart) { | ||
return <></>; | ||
} | ||
return ( | ||
<div className="flex items-center"> | ||
<PieChart | ||
series={dataSeries} | ||
width={200} | ||
height={200} | ||
slotProps={{ | ||
legend: { | ||
hidden: true, | ||
}, | ||
}} | ||
> | ||
<PieCenterLabel | ||
label={pieCentralLabel ?? ''} | ||
description={pieCentralDescription ?? <></>} | ||
/> | ||
</PieChart> | ||
<div className="flex flex-row gap-4 pt-5"> | ||
<ChartLegend chartValues={elements} /> | ||
<RegressionsStatus | ||
increaseElement={increaseElement} | ||
decreaseElement={decreaseElement} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
const StatusChartMemoized = React.memo(StatusChart); | ||
|
||
const getColorClassName = (color: Colors): string => { | ||
switch (color) { | ||
case Colors.Red: | ||
return 'bg-red'; | ||
case Colors.Green: | ||
return 'bg-green'; | ||
case Colors.Yellow: | ||
return 'bg-yellow'; | ||
case Colors.Gray: | ||
return 'bg-mediumGray'; | ||
default: | ||
return ''; | ||
} | ||
}; | ||
|
||
const ChartLegend = ({ chartValues }: IChartLegend): JSX.Element => { | ||
return ( | ||
<div className="flex flex-col gap-2"> | ||
{chartValues.map(chartValue => ( | ||
<div key={chartValue?.label} className="flex flex-row"> | ||
{chartValue && ( | ||
<div className="pt-1 pr-2"> | ||
<ColoredCircle | ||
backgroundClassName={getColorClassName(chartValue.color)} | ||
/> | ||
</div> | ||
)} | ||
<div className="flex flex-col gap-1"> | ||
<span className="font-bold">{chartValue?.value}</span> | ||
<span>{chartValue?.label}</span> | ||
</div> | ||
</div> | ||
))} | ||
</div> | ||
); | ||
}; | ||
|
||
const RegressionsStatus = ({ | ||
increaseElement, | ||
decreaseElement, | ||
}: IRegressionStatus): JSX.Element => { | ||
return ( | ||
<div className="flex flex-col gap-2"> | ||
{increaseElement && ( | ||
<RegressionElement | ||
element={increaseElement} | ||
icon={<MdArrowUpward color={Colors.Red} />} | ||
/> | ||
)} | ||
{decreaseElement && ( | ||
<RegressionElement | ||
element={decreaseElement} | ||
icon={<MdArrowDownward color={Colors.Green} />} | ||
/> | ||
)} | ||
</div> | ||
); | ||
}; | ||
|
||
const RegressionElement = ({ | ||
element, | ||
icon, | ||
}: IRegressionElement): JSX.Element => { | ||
return ( | ||
<div className="flex flex-row gap-2"> | ||
<div className="pt-1">{icon}</div> | ||
<div className="flex flex-col gap-1"> | ||
<span className="font-bold">{element.value}</span> | ||
<span>{element.label}</span> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
const PieCenterLabel = ({ | ||
label, | ||
description, | ||
}: { | ||
label: string; | ||
description: ReactElement; | ||
}): JSX.Element => { | ||
const { width, height, left, top } = useDrawingArea(); | ||
// eslint-disable-next-line no-magic-numbers | ||
const yPositionLabel = 9 / 20; | ||
// eslint-disable-next-line no-magic-numbers | ||
const yPositionDescription = 11 / 20; | ||
const xPosition = left + width / 2; | ||
return ( | ||
<> | ||
<StyledText x={xPosition} y={top + yPositionLabel * height}> | ||
{label} | ||
</StyledText> | ||
<StyledText x={xPosition} y={top + yPositionDescription * height}> | ||
{description} | ||
</StyledText> | ||
</> | ||
); | ||
}; | ||
|
||
const StyledText = styled('text')(() => ({ | ||
textAnchor: 'middle', | ||
dominantBaseline: 'central', | ||
})); | ||
|
||
export default StatusChartMemoized; |