File size: 3,868 Bytes
0c20ea8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
import React, { useMemo, useState } from "react";
import { Bar } from "@visx/shape";
import { Group } from "@visx/group";
import { LinearGradient } from "@visx/gradient";
import { AxisBottom, AxisLeft } from "@visx/axis";
import { scaleBand, scaleLinear } from "@visx/scale";
const verticalMargin = 20;
const leftMargin = 50;
const barPadding = 4;
interface originTopTen {
commune: string;
percentage: number;
}
export type BarsProps = {
data: originTopTen[];
width: number;
height: number;
events?: boolean;
};
const getCommuneValue = (d: originTopTen) => Number(d.percentage);
export default function SimpleChart({
data,
width,
height,
events = false,
}: BarsProps) {
const xMax = width - leftMargin;
const yMax = height - verticalMargin - 20;
const xScale = useMemo(
() =>
scaleBand<number>({
range: [0, xMax],
round: true,
domain: data.map((d: any) => d.commune),
paddingInner: 0.2,
paddingOuter: 0.1,
}),
[xMax]
);
const yScale = useMemo(
() =>
scaleLinear<number>({
range: [yMax, 0],
round: true,
domain: [0, Math.max(...data.map(getCommuneValue))],
}),
[yMax]
);
const [isHover, setIsHover] = useState(Array(data.length).fill(false));
return width < 10 ? null : (
<svg
width={width}
height={height}
style={{
borderBottomLeftRadius: "14px",
borderBottomRightRadius: "14px",
boxShadow: "0 0 8px rgba(0, 0, 0, 0.2)",
}}
>
<LinearGradient from="#351CAB" to="#621A61" id="teal" />
<rect width={width} height={height} fill="url(#teal)" />
<Group top={verticalMargin}>
{data.map((d: any, index: any) => {
const barWidth = xScale.bandwidth();
const barHeight = yMax - (yScale(d.percentage) ?? 0);
const barX = xScale(d.commune) ?? 0;
const barY = yMax - barHeight;
return (
<Bar
key={`bar-${d.commune}`}
className={isHover[index] ? "hovered" : ""}
style={{
cursor: "pointer",
transition: "all 0.5s",
opacity: "1",
}}
x={barX + 35}
y={barY - 10}
rx={5}
ry={5}
width={barWidth - barPadding}
height={barHeight}
fill={isHover[index] ? "#FFFFFF" : "#AAB1FF"}
onClick={() => {
if (events) alert(`clicked: ${JSON.stringify(d)}`);
}}
onMouseMove={() => {
const updatedHover = [...isHover];
updatedHover[index] = true;
setIsHover(updatedHover);
}}
onMouseLeave={() => {
const updatedHover = [...isHover];
updatedHover[index] = false;
setIsHover(updatedHover);
}}
/>
);
})}
<AxisBottom
top={height - verticalMargin - 30}
left={leftMargin - 15}
scale={xScale}
tickStroke="white"
stroke="white"
strokeWidth={2}
tickLabelProps={() => ({
fill: "white",
fontSize: 12,
textAnchor: "middle",
fontWeight: "bold",
})}
/>
<AxisLeft
left={leftMargin - 15}
top={verticalMargin - 30}
scale={yScale}
tickFormat={(value) => value.toString()}
tickStroke="white"
strokeWidth={2}
stroke="white"
tickLabelProps={() => ({
fill: "white",
fontSize: 11,
textAnchor: "end",
dy: "0.3em",
dx: "-0.25em",
fontWeight: "bold",
})}
/>
</Group>
</svg>
);
}
|