-
-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathDataRow.tsx
More file actions
276 lines (252 loc) · 7.8 KB
/
DataRow.tsx
File metadata and controls
276 lines (252 loc) · 7.8 KB
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
import { useMemo } from 'react'
import { usePathData, useMetaData } from './usePathData'
import TimestampCell from './TimestampCell'
import CopyToClipboardWithFade from './CopyToClipboardWithFade'
import { getValueRenderer, DefaultValueRenderer } from './ValueRenderers'
import {
usePresetDetails,
useUnitDefinitions,
useDefaultCategories
} from '../../store'
import type { PathData, MetaData } from '../../store'
import { convertValue } from '../../utils/unitConversion'
import type { DefaultCategories } from '../../store/slices/unitPreferencesSlice'
interface DataRowProps {
path$SourceKey: string
context: string
index: number
raw: boolean
isPaused: boolean
onToggleSource: (source: string) => void
selectedSources: Set<string>
showContext: boolean
}
interface ValueRendererProps {
data: PathData
meta: MetaData | null
units: string
raw: boolean
convertedValue?: number | null
convertedUnit?: string | null
}
/**
* Find category for a path by checking wildcard patterns in default categories
*/
function findCategoryForPath(
path: string,
defaultCategories: DefaultCategories
): string | null {
if (!path || !defaultCategories) return null
for (const [category, config] of Object.entries(defaultCategories)) {
if (config.paths && Array.isArray(config.paths)) {
for (const pattern of config.paths) {
const regex = new RegExp(
'^' + pattern.replace(/\*/g, '[^.]+').replace(/\./g, '\\.') + '$'
)
if (regex.test(path)) {
return category
}
}
}
}
return null
}
function DataRow({
path$SourceKey,
context,
index,
raw,
isPaused,
onToggleSource,
selectedSources,
showContext
}: DataRowProps) {
// When showContext is true, path$SourceKey is a composite key: context\0realKey
const nullIdx = showContext ? path$SourceKey.indexOf('\0') : -1
const realContext = nullIdx >= 0 ? path$SourceKey.slice(0, nullIdx) : context
const realKey =
nullIdx >= 0 ? path$SourceKey.slice(nullIdx + 1) : path$SourceKey
const data = usePathData(realContext, realKey)
const meta = useMetaData(realContext, data?.path)
const contextNameData = usePathData(realContext, 'name')
const contextLabel = showContext
? contextNameData?.value
? String(contextNameData.value)
: realContext
: ''
const presetDetails = usePresetDetails()
const unitDefinitions = useUnitDefinitions()
const defaultCategories = useDefaultCategories()
if (!data) {
return (
<div
className={`virtual-table-row ${index % 2 ? 'striped' : ''}`}
data-raw-row={raw ? 'true' : undefined}
>
<div className="virtual-table-cell path-cell" data-label="Path">
Loading...
</div>
{showContext && (
<div
className="virtual-table-cell context-cell"
data-label="Context"
></div>
)}
<div className="virtual-table-cell value-cell" data-label="Value"></div>
<div
className="virtual-table-cell timestamp-cell"
data-label="Time"
></div>
<div
className="virtual-table-cell source-cell"
data-label="Source"
></div>
</div>
)
}
const units = meta && meta.units ? meta.units : ''
let category =
(meta as Record<string, unknown> | null)?.displayUnits &&
typeof (meta as Record<string, unknown>).displayUnits === 'object'
? ((
(meta as Record<string, unknown>).displayUnits as Record<
string,
unknown
>
)?.category as string | undefined)
: undefined
if (!category && data?.path && defaultCategories) {
category = findCategoryForPath(data.path, defaultCategories) ?? undefined
}
const displayUnits =
(meta as Record<string, unknown> | null)?.displayUnits &&
typeof (meta as Record<string, unknown>).displayUnits === 'object'
? (meta as Record<string, unknown>).displayUnits as {
targetUnit?: string
formula?: string
symbol?: string
}
: undefined
let convertedValue: number | null = null
let convertedUnit: string | null = null
if (category && typeof data.value === 'number') {
const converted = convertValue(
data.value,
units,
category,
presetDetails,
unitDefinitions,
displayUnits
)
if (converted && converted.unit !== units) {
convertedValue = converted.value
convertedUnit = converted.unit
}
}
const path = data.path ?? ''
const source = data.$source ?? ''
const timestamp = data.timestamp ?? ''
return (
<div
className={`virtual-table-row ${index % 2 ? 'striped' : ''}`}
data-raw-row={raw ? 'true' : undefined}
>
<div className="virtual-table-cell path-cell" data-label="Path">
<CopyToClipboardWithFade text={path}>
<span>
{path} <span className="copy-icon" aria-hidden="true" />
</span>
</CopyToClipboardWithFade>
</div>
{showContext && (
<div className="virtual-table-cell context-cell" data-label="Context">
{contextLabel}
</div>
)}
<div className="virtual-table-cell value-cell" data-label="Value">
<ValueRenderer
data={data}
meta={meta}
units={units}
raw={raw}
convertedValue={convertedValue}
convertedUnit={convertedUnit}
/>
</div>
<TimestampCell timestamp={timestamp} isPaused={isPaused} />
<div className="virtual-table-cell source-cell" data-label="Source">
<label style={{ display: 'inline', cursor: 'pointer' }}>
<input
type="checkbox"
onChange={() => onToggleSource(source)}
checked={selectedSources.has(source)}
aria-label={`Select source ${source}`}
style={{
marginRight: '5px',
verticalAlign: 'middle'
}}
/>
</label>
<CopyToClipboardWithFade text={source}>
{source} <span className="copy-icon" aria-hidden="true" />
</CopyToClipboardWithFade>{' '}
{data.pgn && <span> {data.pgn}</span>}
{data.sentence && <span> {data.sentence}</span>}
</div>
</div>
)
}
// ValueRenderer uses dynamic component selection for plugin extensibility.
// getValueRenderer returns cached components from a module-level registry.
// The first access per renderer type creates and caches the component,
// subsequent accesses return the cached reference. This pattern is intentional
// for supporting dynamically loaded renderers from plugins.
function ValueRenderer({
data,
meta,
units,
raw,
convertedValue,
convertedUnit
}: ValueRendererProps) {
// Get the renderer component - memoized to prevent recreating on every render
const rendererInfo = useMemo(() => {
if (raw) return { type: 'raw' as const }
const Renderer = getValueRenderer(data.path ?? '', meta)
if (Renderer) return { type: 'custom' as const, Renderer }
return { type: 'default' as const }
}, [raw, data.path, meta])
if (rendererInfo.type === 'raw') {
return (
<div>
<div className="text-primary">
value: {JSON.stringify(data.value, null, 2)}
</div>
<div className="text-primary">
meta: {JSON.stringify(meta ? meta : {}, null, 2)}
</div>
</div>
)
}
if (rendererInfo.type === 'custom') {
const Renderer = rendererInfo.Renderer
return (
<Renderer
value={data.value}
units={units}
convertedValue={convertedValue}
convertedUnit={convertedUnit}
{...(meta?.renderer?.options ?? {})}
/>
)
}
return (
<DefaultValueRenderer
value={data.value}
units={units}
convertedValue={convertedValue}
convertedUnit={convertedUnit}
/>
)
}
export default DataRow