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
|
import { ChevronDownIcon } from '@chakra-ui/icons'
import {
Box,
Button,
Collapse,
Flex,
Menu,
MenuButton,
MenuItem,
MenuList,
Portal,
StackDivider,
VStack,
Text,
} from '@chakra-ui/react'
import React from 'react'
import { ColorMenu } from './ColorMenu'
import { colorList, initialVisuals } from '../../config'
import { SliderWithInfo } from '../SliderWithInfo'
export interface LabelsPanelProps {
visuals: typeof initialVisuals
setVisuals: any
}
export const LabelsPanel = (props: LabelsPanelProps) => {
const { visuals, setVisuals } = props
return (
<VStack
spacing={2}
justifyContent="flex-start"
divider={<StackDivider borderColor="gray.400" />}
align="stretch"
color="gray.800"
>
<Flex alignItems="center" justifyContent="space-between">
<Text>Show labels</Text>
<Menu isLazy placement="right">
<MenuButton as={Button} colorScheme="" color="black" rightIcon={<ChevronDownIcon />}>
{!visuals.labels ? 'Never' : visuals.labels < 2 ? 'On Highlight' : 'Always'}
</MenuButton>
<Portal>
{' '}
<MenuList zIndex="popover" bgColor="gray.200">
<MenuItem onClick={() => setVisuals({ ...visuals, labels: 0 })}>Never</MenuItem>
<MenuItem onClick={() => setVisuals({ ...visuals, labels: 1 })}>
On Highlight
</MenuItem>
<MenuItem onClick={() => setVisuals({ ...visuals, labels: 2 })}>Always</MenuItem>
<MenuItem onClick={() => setVisuals({ ...visuals, labels: 3 })}>
Always (even in 3D)
</MenuItem>
</MenuList>
</Portal>
</Menu>
</Flex>
<Collapse in={visuals.labels > 1} animateOpacity>
<Box paddingTop={2}>
<SliderWithInfo
label="Label Appearance Scale"
value={visuals.labelScale * 2}
onChange={(value) => setVisuals({ ...visuals, labelScale: value / 2 })}
/>
</Box>
<Box paddingTop={2}>
<SliderWithInfo
label="Label dynamicity"
infoText="By default, labels of nodes with more links will appear earlier than those with fewer. This slider changes the strength of this effect, put it at zero to disable it."
value={visuals.labelDynamicStrength}
min={0}
max={1}
step={0.05}
onChange={(value) =>
setVisuals((curr: typeof initialVisuals) => ({
...curr,
labelDynamicStrength: value,
}))
}
/>
<Collapse in={visuals.labelDynamicStrength > 0}>
<SliderWithInfo
label="Dynamic zoom degree cap"
infoText="The maximum number of links that is considered for the 'dynamic zoom effect'. Past this number all number of links are treated the same."
value={visuals.labelDynamicDegree}
min={1}
max={15}
step={1}
onChange={(value) =>
setVisuals((curr: typeof initialVisuals) => ({
...curr,
labelDynamicDegree: value,
}))
}
/>
</Collapse>
</Box>
</Collapse>
<ColorMenu
colorList={colorList}
label="Text"
setVisuals={setVisuals}
value="labelTextColor"
visValue={visuals.labelTextColor}
/>
<Box>
<ColorMenu
colorList={colorList}
label="Background"
setVisuals={setVisuals}
value="labelBackgroundColor"
visValue={visuals.labelBackgroundColor}
/>
<Collapse in={!!visuals.labelBackgroundColor} animateOpacity>
<Box paddingTop={2}>
<SliderWithInfo
label="Background opacity"
value={visuals.labelBackgroundOpacity}
onChange={(value) => {
console.log(visuals.labelBackgroundOpacity)
setVisuals({ ...visuals, labelBackgroundOpacity: value })
}}
min={0}
max={1}
step={0.01}
/>
</Box>
</Collapse>
</Box>
<SliderWithInfo
label="Label font size"
value={visuals.labelFontSize}
min={5}
max={20}
step={0.5}
onChange={(value) => setVisuals({ ...visuals, labelFontSize: value })}
/>
<SliderWithInfo
label="Max. label characters"
value={visuals.labelLength}
min={10}
max={100}
step={1}
onChange={(value) => setVisuals({ ...visuals, labelLength: value })}
/>
<SliderWithInfo
label="Max. label line length"
value={visuals.labelWordWrap}
min={10}
max={100}
step={1}
onChange={(value) => setVisuals({ ...visuals, labelWordWrap: value })}
/>
<SliderWithInfo
label="Space between label lines"
value={visuals.labelLineSpace}
min={0.2}
max={3}
step={0.1}
onChange={(value) => setVisuals({ ...visuals, labelLineSpace: value })}
/>
</VStack>
)
}
|