File size: 7,977 Bytes
1e92f2d | 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | import React, { memo, useMemo, useState, useCallback, useRef } from 'react'
import styled from 'styled-components'
import {
ScaleSpec,
ScaleType,
linearScaleDefaults,
bandScaleDefaults,
logScaleDefaults,
symlogScaleDefaults,
} from '@nivo/scales'
import { ChartProperty, ChartPropertyWithControl, Flavor } from '../../../types'
import { ScaleControlConfig, ControlContext, KeysOfUnion } from '../types'
import { PropertyHeader, Help, Cell, Toggle } from '../ui'
import { ControlsGroup } from '../ControlsGroup'
const SCALE_PROP_ROUND: Omit<ChartProperty, 'group'> = {
name: 'round',
key: 'round',
type: 'boolean',
help: `Round positions and bandwidth to the nearest integer.`,
control: {
type: 'switch',
},
}
const SCALE_PROP_NICE: Omit<ChartProperty, 'group'> = {
name: 'nice',
key: 'nice',
type: 'boolean',
help: `Expands the values to “round” human-friendly values.`,
control: {
type: 'switch',
},
}
const SCALE_PROP_REVERSE: Omit<ChartProperty, 'group'> = {
name: 'reverse',
key: 'reverse',
type: 'boolean',
help: `Reverse the scale output range (e.g. x/y position).`,
control: {
type: 'switch',
},
}
const SCALE_PROP_MIN: Omit<ChartProperty, 'group'> = {
key: 'min',
name: 'min',
type: `number | 'auto'`,
help: `Minimum value, if \`auto\`, it's inferred from the data.`,
control: {
type: 'switchableRange',
disabledValue: 'auto',
defaultValue: 0,
min: -2000,
max: 2000,
},
}
const SCALE_PROP_MAX: Omit<ChartProperty, 'group'> = {
key: 'max',
name: 'max',
help: `Maximum value, if \`auto\`, it's inferred from the data.`,
type: `number | 'auto'`,
control: {
type: 'switchableRange',
disabledValue: 'auto',
defaultValue: 1200,
min: -2000,
max: 2000,
},
}
const SCALE_PROP_CLAMP: Omit<ChartProperty, 'group'> = {
key: 'clamp',
name: 'clamp',
help: `For any input outside the domain, clamp the output to the nearest endpoint.`,
type: `boolean`,
control: {
type: 'switch',
},
}
// @todo: add all scale types
const SCALE_PROPS_BY_TYPE: Partial<Record<ScaleType, Omit<ChartProperty, 'group'>[]>> = {
linear: [
SCALE_PROP_NICE,
SCALE_PROP_ROUND,
SCALE_PROP_MIN,
SCALE_PROP_MAX,
SCALE_PROP_REVERSE,
SCALE_PROP_CLAMP,
],
band: [SCALE_PROP_NICE, SCALE_PROP_ROUND, SCALE_PROP_REVERSE],
log: [SCALE_PROP_NICE, SCALE_PROP_ROUND, SCALE_PROP_REVERSE],
symlog: [SCALE_PROP_NICE, SCALE_PROP_ROUND, SCALE_PROP_REVERSE],
}
// @todo: add all scale types
const SCALE_DEFAULTS_BY_TYPE: Partial<Record<ScaleType, Partial<ScaleSpec>>> = {
linear: linearScaleDefaults,
band: bandScaleDefaults,
log: logScaleDefaults,
symlog: symlogScaleDefaults,
}
const SCALE_CHOICES: {
value: ScaleType
label: ScaleType
}[] = [
{
value: 'linear',
label: 'linear',
},
{
value: 'band',
label: 'band',
},
{
value: 'log',
label: 'log',
},
{
value: 'symlog',
label: 'symlog',
},
{
value: 'point',
label: 'point',
},
]
interface ScaleControlProps {
id: string
property: ChartPropertyWithControl<ScaleControlConfig>
flavors: Flavor[]
currentFlavor: Flavor
value: ScaleSpec
onChange: (value: Record<string, unknown>) => void
context?: ControlContext
}
export const ScaleControl = memo(
({ property, flavors, currentFlavor, value: _value, onChange, context }: ScaleControlProps) => {
const [isOpened, setIsOpened] = useState(property.control.isOpenedByDefault === true)
const toggle = useCallback(() => setIsOpened(flag => !flag), [setIsOpened])
// We need to keep the latest value used for a given scale type,
// so that we can use it to set the default values for the props
// if we ever go back to a previous scale type.
const latestValueByType = useRef<Partial<Record<ScaleType, Partial<ScaleSpec>>>>({})
const value = { ..._value }
const excludedProps: NonNullable<ScaleControlConfig['disabledProps']> =
property.control.disabledProps || {}
const excludedPropsForType = excludedProps[value.type] || []
const defaults = SCALE_DEFAULTS_BY_TYPE[value.type]
const scaleChoices = SCALE_CHOICES.filter(({ value }) =>
property.control.allowedTypes.includes(value)
)
const subProps: ChartProperty[] = [
{
name: 'type',
key: 'type',
group: property.group,
type: 'string',
help: `The [scale](self:/guides/scales/) type.`,
control: {
type: 'choices',
choices: scaleChoices,
disabled: scaleChoices.length === 1,
},
},
]
SCALE_PROPS_BY_TYPE[value.type]!.forEach(prop => {
if (excludedPropsForType.includes(prop.key as KeysOfUnion<ScaleSpec>)) {
return
}
const propValue = (value as Record<string, unknown>)[prop.key]
if (propValue === undefined) {
;(value as any)[prop.key] = (defaults as Record<string, unknown>)[prop.key]
}
subProps.push({
...prop,
group: property.group,
})
})
useMemo(() => {
latestValueByType.current = {
...latestValueByType.current,
[value.type]: {
...value,
},
}
}, [value])
const handleChange = (newValue: ScaleSpec) => {
const newType = newValue.type
if (newType === value.type) {
onChange(newValue as Record<string, unknown>)
return
}
const latestValue = latestValueByType.current[newType]
if (latestValue) {
onChange(latestValue)
return
}
const defaultValue = SCALE_DEFAULTS_BY_TYPE[newType]
if (defaultValue) {
onChange(defaultValue)
return
}
onChange(newValue as Record<string, unknown>)
}
const newContext = {
path: [...(context ? context.path : []), property.key || property.name] as string[],
}
return (
<>
<Header $isOpened={isOpened} onClick={toggle}>
<PropertyHeader {...property} context={context} />
<Help>{property.help}</Help>
<Toggle isOpened={isOpened} />
</Header>
{isOpened && (
<ControlsGroup
name={property.key}
flavors={flavors}
currentFlavor={currentFlavor}
controls={subProps}
settings={value}
onChange={handleChange}
context={newContext}
/>
)}
</>
)
}
)
const Title = styled.div`
white-space: nowrap;
font-weight: 600;
color: ${({ theme }) => theme.colors.accentLight};
`
const Header = styled(Cell)<{
$isOpened: boolean
}>`
cursor: pointer;
border-bottom: 1px solid ${({ theme }) => theme.colors.borderLight};
&:last-child {
border-bottom-width: 0;
}
&:hover {
background: ${({ theme }) => theme.colors.cardAltBackground};
${Title} {
color: ${({ theme }) => theme.colors.accent};
}
}
${Title} {
${({ $isOpened, theme }) => ($isOpened ? `color: ${theme.colors.accent};` : '')}
}
`
|