1
- import { useMemo , ReactNode } from 'react'
1
+ import { useMemo } from 'react'
2
+ import { ScaleLinear } from 'd3-scale'
2
3
import {
3
4
useTheme ,
4
5
positionFromAngle ,
5
6
// @ts -ignore: core package should be converted to TypeScript
6
- getLabelGenerator ,
7
- // @ts -ignore: core package should be converted to TypeScript
8
7
DotsItem ,
8
+ usePropertyAccessor ,
9
9
} from '@nivo/core'
10
- import { InheritedColorConfig , getInheritedColorGenerator } from '@nivo/colors'
11
- import { RadarCommonProps , RadarDataProps } from './types'
12
- import { ScaleLinear } from 'd3-scale'
10
+ import { getInheritedColorGenerator } from '@nivo/colors'
11
+ import { RadarCommonProps , RadarDataProps , PointProps , PointData , RadarColorMapping } from './types'
13
12
14
13
interface RadarDotsProps < D extends Record < string , unknown > > {
15
14
data : RadarDataProps < D > [ 'data' ]
16
15
keys : RadarDataProps < D > [ 'keys' ]
17
16
radiusScale : ScaleLinear < number , number >
18
17
getIndex : ( d : D ) => string | number
19
- colorByKey : Record < string | number , string >
18
+ colorByKey : RadarColorMapping
20
19
angleStep : number
21
- symbol ?: RadarCommonProps < D > [ 'dotSymbol' ]
22
- size ?: number
23
- color ?: InheritedColorConfig < any >
24
- borderWidth ?: number
25
- borderColor ?: InheritedColorConfig < any >
26
- enableLabel ?: boolean
27
- // label: PropTypes.oneOfType([PropTypes.string, PropTypes.func]).isRequired,
28
- // labelFormat: PropTypes.string,
29
- labelYOffset ?: number
30
- }
31
-
32
- interface Point {
33
- key : string
34
- label : ReactNode | null
35
- data : {
36
- index : string | number
37
- key : string | number
38
- value : number
39
- color : string
40
- }
41
- style : {
42
- fill : string
43
- stroke : string
44
- x : number
45
- y : number
46
- }
20
+ symbol ?: RadarCommonProps [ 'dotSymbol' ]
21
+ size : number
22
+ color : RadarCommonProps [ 'dotColor' ]
23
+ borderWidth : number
24
+ borderColor : RadarCommonProps [ 'dotBorderColor' ]
25
+ enableLabel : boolean
26
+ label : RadarCommonProps [ 'dotLabel' ]
27
+ formatValue : ( value : number ) => string
28
+ labelYOffset : number
47
29
}
48
30
49
31
export const RadarDots = < D extends Record < string , unknown > > ( {
@@ -60,25 +42,29 @@ export const RadarDots = <D extends Record<string, unknown>>({
60
42
borderColor = { from : 'color' } ,
61
43
enableLabel = false ,
62
44
label = 'value' ,
63
- labelFormat ,
45
+ formatValue ,
64
46
labelYOffset,
65
47
} : RadarDotsProps < D > ) => {
66
48
const theme = useTheme ( )
67
49
const fillColor = getInheritedColorGenerator ( color , theme )
68
50
const strokeColor = getInheritedColorGenerator ( borderColor , theme )
69
- const getLabel = getLabelGenerator ( label , labelFormat )
51
+ const getLabel = usePropertyAccessor < PointData , string | number > ( label )
70
52
71
- const points : Point [ ] = useMemo (
53
+ const points : PointProps [ ] = useMemo (
72
54
( ) =>
73
55
data . reduce ( ( acc , datum , i ) => {
74
56
const index = getIndex ( datum )
75
57
keys . forEach ( key => {
76
- const pointData : Point [ 'data' ] = {
58
+ const value = datum [ key ] as number
59
+
60
+ const pointData : PointData = {
77
61
index,
78
62
key,
79
- value : datum [ key ] as number ,
63
+ value,
64
+ formattedValue : formatValue ( value ) ,
80
65
color : colorByKey [ key ] ,
81
66
}
67
+
82
68
acc . push ( {
83
69
key : `${ key } .${ index } ` ,
84
70
label : enableLabel ? getLabel ( pointData ) : null ,
@@ -95,7 +81,7 @@ export const RadarDots = <D extends Record<string, unknown>>({
95
81
} )
96
82
97
83
return acc
98
- } , [ ] as Point [ ] ) ,
84
+ } , [ ] as PointProps [ ] ) ,
99
85
[
100
86
data ,
101
87
getIndex ,
0 commit comments