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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
|
import {
CloseIcon,
RepeatClockIcon,
ChevronDownIcon,
SettingsIcon,
InfoOutlineIcon,
} from '@chakra-ui/icons'
import {
Accordion,
AccordionButton,
AccordionIcon,
AccordionItem,
AccordionPanel,
Box,
Button,
Flex,
IconButton,
Menu,
MenuButton,
MenuItem,
MenuList,
Select,
Slider,
SliderFilledTrack,
SliderThumb,
SliderTrack,
StackDivider,
Switch,
Text,
Tooltip,
VStack,
Heading,
Collapse,
} from '@chakra-ui/react'
import React, { useState } from 'react'
import Scrollbars from 'react-custom-scrollbars-2'
import { initialPhysics, initialFilter } from './config'
export interface TweakProps {
physics: typeof initialPhysics
setPhysics: any
threeDim: boolean
setThreeDim: (newValue: boolean) => void
filter: typeof initialFilter
setFilter: any
}
export const Tweaks = (props: TweakProps) => {
const { physics, setPhysics, threeDim, setThreeDim, filter, setFilter } = props
const [showTweaks, setShowTweaks] = useState(true)
return (
<>
<Box
position="relative"
zIndex="overlay"
marginTop={10}
marginLeft={10}
display={showTweaks ? 'none' : 'block'}
>
<IconButton
aria-label="Settings"
icon={<SettingsIcon />}
onClick={() => setShowTweaks(true)}
/>
</Box>
<Collapse in={showTweaks} animateOpacity>
<Box
bg="alt.100"
w="xs"
marginTop={10}
marginLeft={10}
borderRadius="xl"
maxH={650}
paddingBottom={5}
zIndex="overlay"
position="relative"
boxShadow="xl"
>
<Box display="flex" justifyContent="space-between" alignItems="center">
<Tooltip label={'Switch to ' + threeDim ? '2D' : '3D' + ' view'}>
<Button
onClick={() => setThreeDim(!threeDim)}
colorScheme="purple"
variant="ghost"
zIndex="overlay"
>
{threeDim ? '3D' : '2D'}
</Button>
</Tooltip>
<Box display="flex" alignItems="center">
<Tooltip label="Reset settings to defaults">
<IconButton
aria-label="Reset Defaults"
icon={<RepeatClockIcon />}
onClick={() => setPhysics(initialPhysics)}
colorScheme="purple"
variant="none"
size="sm"
/>
</Tooltip>
<IconButton
size="sm"
colorScheme="purple"
icon={<CloseIcon />}
aria-label="Close Tweak Panel"
variant="ghost"
onClick={() => setShowTweaks(false)}
/>
</Box>
</Box>
<Scrollbars
autoHeight
autoHeightMax={600}
autoHide
renderThumbVertical={({ style, ...props }) => (
<Box
{...props}
style={{
...style,
borderRadius: 10,
}}
bg="purple.500"
/>
)}
>
<Accordion allowMultiple allowToggle color="black" paddingRight={2}>
<AccordionItem>
<AccordionButton>
<AccordionIcon marginRight={2} />
<Heading size="sm">Filter</Heading>
</AccordionButton>
<AccordionPanel>
<VStack
spacing={2}
justifyContent="flex-start"
divider={<StackDivider borderColor="gray.500" />}
align="stretch"
paddingLeft={7}
color="gray.800"
>
<Flex justifyContent="space-between">
<Text>Orphans</Text>
<Switch
colorScheme="purple"
onChange={() => {
setFilter({ ...filter, orphans: !filter.orphans })
}}
isChecked={filter.orphans}
></Switch>
</Flex>
<Flex justifyContent="space-between">
<Text>Link nodes with parent file</Text>
<Switch
colorScheme="purple"
onChange={() => {
setFilter({ ...filter, parents: !filter.parents })
}}
isChecked={filter.parents}
></Switch>
</Flex>
</VStack>
</AccordionPanel>
</AccordionItem>
<AccordionItem>
<AccordionButton display="flex" justifyContent="space-between">
<Box display="flex">
<AccordionIcon marginRight={2} />
<Heading size="sm">Physics</Heading>
</Box>
<Switch
id="physicsOn"
onChange={() => setPhysics({ ...physics, enabled: !physics.enabled })}
isChecked={physics.enabled}
colorScheme="purple"
/>
</AccordionButton>
<AccordionPanel>
<VStack
spacing={2}
justifyContent="flex-start"
divider={<StackDivider borderColor="gray.500" />}
align="stretch"
paddingLeft={7}
color="gray.800"
>
<EnableSection
label="Gravity"
value={physics.gravityOn}
onChange={() => setPhysics({ ...physics, gravityOn: !physics.gravityOn })}
>
<SliderWithInfo
label="Strength"
value={physics.gravity * 10}
onChange={(v) => setPhysics({ ...physics, gravity: v / 10 })}
/>
</EnableSection>
<SliderWithInfo
value={-physics.charge / 100}
onChange={(value) => setPhysics({ ...physics, charge: -100 * value })}
label="Repulsive Force"
/>
<EnableSection
label="Collision"
infoText="Perfomance sap, disable if slow"
value={physics.collision}
onChange={() => setPhysics({ ...physics, collision: !physics.collision })}
>
<SliderWithInfo
value={physics.collisionStrength * 10}
onChange={(value) =>
setPhysics({ ...physics, collisionStrength: value / 10 })
}
label="Strength"
/>
</EnableSection>
<SliderWithInfo
value={physics.linkStrength * 5}
onChange={(value) => setPhysics({ ...physics, linkStrength: value / 5 })}
label="Link Force"
/>
<SliderWithInfo
label="Link Iterations"
value={physics.linkIts}
onChange={(value) => setPhysics({ ...physics, linkIts: value })}
min={0}
max={6}
step={1}
infoText="How many links down the line the physics of a single node affects (Slow)"
/>
<SliderWithInfo
label="Viscosity"
value={physics.velocityDecay * 10}
onChange={(value) => setPhysics({ ...physics, velocityDecay: value / 10 })}
/>
</VStack>
<Box>
<Accordion allowToggle>
<AccordionItem>
<AccordionButton>
<Text>Advanced</Text>
<AccordionIcon marginRight={2} />
</AccordionButton>
<AccordionPanel>
<VStack
spacing={2}
justifyContent="flex-start"
divider={<StackDivider borderColor="gray.500" />}
align="stretch"
paddingLeft={3}
color="gray.800"
>
<SliderWithInfo
label="Iterations per tick"
min={1}
max={10}
step={1}
value={physics.iterations}
onChange={(v) => setPhysics({ ...physics, iterations: v })}
infoText="Number of times the physics simulation iterates per simulation step"
/>
<SliderWithInfo
label="Stabilization rate"
value={physics.alphaDecay * 50}
onChange={(value) =>
setPhysics({ ...physics, alphaDecay: value / 50 })
}
/>
</VStack>
</AccordionPanel>
</AccordionItem>
</Accordion>
</Box>
{/* </VStack> */}
</AccordionPanel>
</AccordionItem>
<AccordionItem>
<AccordionButton>
<AccordionIcon marginRight={2} />
<Heading size="sm">Visual</Heading>
</AccordionButton>
<AccordionPanel>
<VStack
spacing={2}
justifyContent="flex-start"
divider={<StackDivider borderColor="gray.500" />}
align="stretch"
paddingLeft={7}
color="gray.800"
>
<EnableSection
label="Colors"
onChange={() => setPhysics({ ...physics, colorful: !physics.colorful })}
value={physics.colorful}
>
<Text>Child</Text>
</EnableSection>
<SliderWithInfo
label="Node size"
value={physics.nodeRel}
onChange={(value) => setPhysics({ ...physics, nodeRel: value })}
/>
{threeDim && (
<>
<SliderWithInfo
label="Node opacity"
value={physics.nodeOpacity}
min={0}
max={1}
onChange={(value) => setPhysics({ ...physics, nodeOpacity: value })}
/>
<SliderWithInfo
label="Node resolution"
value={physics.nodeResolution}
min={5}
max={32}
step={1}
onChange={(value) => setPhysics({ ...physics, nodeResolution: value })}
/>
</>
)}
<SliderWithInfo
label="Link width"
value={physics.linkWidth}
onChange={(value) => setPhysics({ ...physics, linkWidth: value })}
/>
{threeDim && (
<SliderWithInfo
label="Link opacity"
min={0}
max={1}
value={physics.linkOpacity}
onChange={(value) => setPhysics({ ...physics, linkOpacity: value })}
/>
)}
<Box>
<Flex alignItems="center" justifyContent="space-between">
<Text>Labels</Text>
<Menu>
<MenuButton as={Button} rightIcon={<ChevronDownIcon />}>
{!physics.labels
? 'Never'
: physics.labels < 2
? 'On Highlight'
: 'Always'}
</MenuButton>
<MenuList bgColor="gray.200">
<MenuItem onClick={() => setPhysics({ ...physics, labels: 0 })}>
Never
</MenuItem>
<MenuItem onClick={() => setPhysics({ ...physics, labels: 1 })}>
On Highlight
</MenuItem>
<MenuItem onClick={() => setPhysics({ ...physics, labels: 2 })}>
Always
</MenuItem>
</MenuList>
</Menu>
</Flex>
<Collapse in={physics.labels > 1} animateOpacity>
<Box paddingLeft={4} paddingTop={2}>
<SliderWithInfo
label="Label Appearance Scale"
value={physics.labelScale * 5}
onChange={(value) => setPhysics({ ...physics, labelScale: value / 5 })}
/>
</Box>
</Collapse>
</Box>
<EnableSection
label="Directional Particles"
value={physics.particles}
onChange={() => setPhysics({ ...physics, particles: !physics.particles })}
>
<SliderWithInfo
label="Particle Number"
value={physics.particlesNumber}
max={5}
step={1}
onChange={(value) => setPhysics({ ...physics, particlesNumber: value })}
/>
<SliderWithInfo
label="Particle Size"
value={physics.particlesWidth}
onChange={(value) => setPhysics({ ...physics, particlesWidth: value })}
/>
</EnableSection>
<EnableSection
label="Highlight"
onChange={() => setPhysics({ ...physics, highlight: !physics.highlight })}
value={physics.highlight}
>
<VStack
spacing={1}
justifyContent="flex-start"
divider={<StackDivider borderColor="gray.400" />}
align="stretch"
paddingLeft={0}
>
<SliderWithInfo
label="Highlight Link Thickness"
value={physics.highlightLinkSize}
onChange={(value) => setPhysics({ ...physics, highlightLinkSize: value })}
/>
<SliderWithInfo
label="Highlight Node Size"
value={physics.highlightNodeSize}
onChange={(value) => setPhysics({ ...physics, highlightNodeSize: value })}
/>
{/*<Flex justifyContent="space-between">
<Text> Highlight node color </Text>
</Flex>
<Flex justifyContent="space-between">
<Text> Highlight link color </Text>
</Flex>*/}
<EnableSection
label="Highlight Animation"
onChange={() => {
setPhysics({ ...physics, highlightAnim: !physics.highlightAnim })
}}
value={physics.highlightAnim}
>
<SliderWithInfo
label="Animation speed"
onChange={(v) => setPhysics({ ...physics, animationSpeed: v })}
value={physics.animationSpeed}
infoText="Slower speed has a chance of being buggy"
min={50}
max={1000}
step={10}
/>
<Select
placeholder={physics.algorithmName}
onChange={(v) => {
setPhysics({ ...physics, algorithmName: v.target.value })
}}
>
{physics.algorithmOptions.map((opt: string) => (
<option key={opt} value={opt}>
{opt}
</option>
))}
</Select>
{/* <DropDownMenu
displayValue={physics.algorithmName}
textArray={physics.algorithmOptions}
onClickArray={physics.algorithmOptions.map((option) =>
setPhysics({ ...physics, algorithmName: { option } }),
)}
/> */}
</EnableSection>
</VStack>
</EnableSection>
</VStack>
</AccordionPanel>
</AccordionItem>
<AccordionItem>
<AccordionButton>
<AccordionIcon marginRight={2} />
<Heading size="sm">Behavior</Heading>
</AccordionButton>
<AccordionPanel>
<VStack
spacing={2}
justifyContent="flex-start"
divider={<StackDivider borderColor="gray.500" />}
align="stretch"
paddingLeft={7}
color="gray.800"
></VStack>
</AccordionPanel>
</AccordionItem>
</Accordion>
</Scrollbars>
</Box>
</Collapse>
</>
)
}
export interface InfoTooltipProps {
infoText?: string | boolean
}
export const InfoTooltip = (props: InfoTooltipProps) => {
const { infoText } = props
return (
<Box paddingLeft="1">
<Tooltip label={infoText} placement="top" color="gray.100" bg="gray.800" hasArrow>
<InfoOutlineIcon />
</Tooltip>
</Box>
)
}
export interface SliderWithInfoProps {
min?: number
max?: number
step?: number
value: number
onChange: (arg0: number) => void
label: string
infoText?: string
}
export const SliderWithInfo = ({
min = 0,
max = 10,
step = 0.1,
value = 1,
...rest
}: SliderWithInfoProps) => {
const { onChange, label, infoText } = rest
return (
<Box>
<Box display="flex" alignItems="flex-end">
<Text>{label}</Text>
{infoText && <InfoTooltip infoText={infoText} />}
</Box>
<Slider
value={value}
onChange={onChange}
min={min}
max={max}
step={step}
colorScheme="purple"
>
<SliderTrack>
<SliderFilledTrack />
</SliderTrack>
<Tooltip bg="purple.500" label={value.toFixed(1)}>
<SliderThumb bg="white" />
</Tooltip>
</Slider>
</Box>
)
}
export interface EnableSectionProps {
label: string
value: boolean | number
onChange: () => void
infoText?: string
children: React.ReactNode
}
export const EnableSection = (props: EnableSectionProps) => {
const { value, onChange, label, infoText, children } = props
return (
<Box>
<Box display="flex" justifyContent="space-between">
<Box display="flex" alignItems="center">
<Text>{label}</Text>
{infoText && <InfoTooltip infoText={infoText} />}
</Box>
<Switch isChecked={!!value} onChange={onChange} colorScheme="purple" />
</Box>
<Collapse in={!!value} animateOpacity>
<Box paddingLeft={4} paddingTop={2}>
{children}
</Box>
</Collapse>
</Box>
)
}
export interface DropDownMenuProps {
textArray: string[]
onClickArray: (() => void)[]
displayValue: string
}
export const DropDownMenu = (props: DropDownMenuProps) => {
const { textArray, onClickArray, displayValue } = props
return (
<Menu>
<MenuButton as={Button} rightIcon={<ChevronDownIcon />}>
{displayValue}
</MenuButton>
<MenuList>
{textArray.map((option, i) => {
;<MenuItem onClick={onClickArray[i]}> {option} </MenuItem>
})}
</MenuList>
</Menu>
)
}
|