diff --git a/src/components/RadarChart.astro b/src/components/RadarChart.astro index 60f2cf7..efc0bb0 100644 --- a/src/components/RadarChart.astro +++ b/src/components/RadarChart.astro @@ -1,147 +1,132 @@ --- - // const { data } = Astro.props; const data = [ - { name: 'React', total: 9 }, - { name: 'GraphQL', total: 2 }, - { name: 'JavaScript', total: 5 }, - { name: 'SVG', total: 5 }, - { name: 'TypeScript', total: 7 }, - { name: 'Tailwind', total: 7 }, - { name: 'React Query', total: 2 }, - { name: 'Next.js', total: 3 }, - { name: 'Hmm', total: 5 }, -] + { name: "React", total: 10 }, + { name: "GraphQL", total: 5 }, + { name: "JavaScript", total: 5 }, + { name: "SVG", total: 1 }, + { name: "TypeScript", total: 5 }, +]; +const chartPadding = 100; const chartSize = 400; const chartCenter = chartSize / 2; -const colors = ['#58e6d9', '#ff6090', '#4871e3', '#ffc107', '#8bc34a', '#00FF00']; -const chartData = data.sort((a, b) => b.total - a.total).slice(0, colors.length); -const pointPadding = 10; -const max = chartData.reduce((max, current) => (current.total > max ? current.total : max), 0); +const chartData = data.sort((a, b) => b.total - a.total).slice(0, data.length); +const pointPadding = 0; +const max = chartData.reduce( + (max, current) => (current.total > max ? current.total : max), + 0, +); const rings = [...Array(6).keys()]; -const getX = (angle, value) => Math.cos(angle - Math.PI / 2) * value; -const getY = (angle, value) => Math.sin(angle - Math.PI / 2) * value; +const getX = (angle: number, value: number) => + Math.cos(angle - Math.PI / 2) * value; +const getY = (angle: number, value: number) => + Math.sin(angle - Math.PI / 2) * value; const axes = chartData.map((_, index) => { - const angle = (Math.PI * 2 * index) / chartData.length; - const x = getX(angle, chartSize / 2); - const y = getY(angle, chartSize / 2); - const points = [ - [0, 0], - [x, y], - ] - .map((point) => point[0] + ',' + point[1]) - .join(' '); - return { - points: points, - }; + const angle = (Math.PI * 2 * index) / chartData.length; + const x = getX(angle, chartSize / 2); + const y = getY(angle, chartSize / 2); + const points = [ + [0, 0], + [x, y], + ] + .map((point) => point[0] + "," + point[1]) + .join(" "); + return { + points: points, + }; }); const properties = chartData.map((item, index) => { - const { name, total } = item; - const clamp = Number(total / (max + pointPadding)); - const angle = (Math.PI * 2 * index) / chartData.length; - const x = getX(angle, (clamp * chartSize) / 2); - const y = getY(angle, (clamp * chartSize) / 2); - return { name: name, total: total, x: x, y: y }; + const { name, total } = item; + const clamp = Number(total / (max + pointPadding)); + const angle = (Math.PI * 2 * index) / chartData.length; + const x = getX(angle, (clamp * chartSize) / 2); + const y = getY(angle, (clamp * chartSize) / 2); + return { name: name, total: total, x: x, y: y }; }); const shape = - properties.reduce((items, item, index) => { - const { x, y } = item; - const string = `${index === 0 ? 'M' : 'L'}${x},${y}`; - return items + string; - }, '') + 'z'; + properties.reduce((items, item, index) => { + const { x, y } = item; + const string = `${index === 0 ? "M" : "L"}${x},${y}`; + return items + string; + }, "") + "z"; -const bgColor = "bg-blue-500" -const borderColor = "border-gray-100" -const strokeColor = 'stroke-gray-200' -const shapeClass = 'stroke-gray-900 fill-gray-900/[0.5]' +const bgColor = "bg-blue-500"; +const borderColor = "border-gray-100"; +const strokeColor = "stroke-gray-200"; +const shapeClass = "stroke-gray-900 fill-gray-900/[0.5]"; --- -
-
- - - { - rings.map((_, index) => { - return ( - - ); - }) - } - { - axes.map((axis) => { - const { points } = axis; - return ; - }) - } +
+
+ + + { + rings.map((_, index) => { + return ( + + ); + }) + } + { + axes.map((axis) => { + const { points } = axis; + return ( + + ); + }) + } - { - properties.map((property, index) => { - const { x, y } = property; - - return ( - - - - - - - Hello - - - ); - }) - } - - -
-

Top 6 Tags

-

Calculated using Astro Content Collections.

-
    - { - properties.map((property, index) => { - const { name, total } = property; - - return ( -
  • -
    - - - - {name} -
    - {`x${total}`} -
  • - ); - }) - } -
+ { + properties.map((property, index) => { + const length = 1.1; + const angle = (Math.PI * 2) * index / chartData.length; + const maxX = getX(angle, (length * chartSize) / 2); + const maxY = getY(angle, (length * chartSize) / 2); + const textAngle = (angle * (180 / Math.PI)) + return ( + + + {property.name} + + + ); + }) + } + +
-