generated from cameronking4/VapiBlocks
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconfig-drawer.tsx
More file actions
256 lines (246 loc) · 9.05 KB
/
config-drawer.tsx
File metadata and controls
256 lines (246 loc) · 9.05 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
import React from 'react';
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Checkbox } from "@/components/ui/checkbox";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover";
import { useState } from "react";
interface ConfigPopoverProps {
config: any;
setConfig: (config: any) => void;
}
const ConfigPopover: React.FC<ConfigPopoverProps> = ({ config, setConfig }) => {
const [tempConfig, setTempConfig] = useState(config);
const handleChange = (id: string, value: any) => {
setTempConfig({ ...tempConfig, [id]: value });
};
const handleSave = (section: string) => {
setConfig(tempConfig);
console.log(`Saved ${section} settings:`, tempConfig);
};
const renderPopoverContent = (title: string, content: JSX.Element, section: string) => (
<PopoverContent className="w-80">
<div className="grid gap-4">
<div className="space-y-2">
<h4 className="font-medium leading-none">{title}</h4>
</div>
{content}
<Button type="button" onClick={() => handleSave(section)}>
Save changes
</Button>
</div>
</PopoverContent>
);
return (
<div className="flex gap-4">
{/* Camera Settings */}
<Popover>
<PopoverTrigger asChild>
<Button variant="outline">Camera</Button>
</PopoverTrigger>
{renderPopoverContent(
"Camera",
<>
<div className="grid gap-2">
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="cameraZoom">Zoom</Label>
<Input
id="cameraZoom"
type="number"
value={tempConfig.cameraZoom}
onChange={(e) => handleChange('cameraZoom', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="cameraSpeedY">Speed Y</Label>
<Input
id="cameraSpeedY"
type="number"
value={tempConfig.cameraSpeedY}
onChange={(e) => handleChange('cameraSpeedY', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="cameraSpeedX">Speed X</Label>
<Input
id="cameraSpeedX"
type="number"
value={tempConfig.cameraSpeedX}
onChange={(e) => handleChange('cameraSpeedX', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="cameraGuide">Guide</Label>
<Checkbox
id="cameraGuide"
checked={tempConfig.cameraGuide}
onCheckedChange={(checked) => handleChange('cameraGuide', checked)}
className="col-span-2"
/>
</div>
</div>
</>,
"Camera"
)}
</Popover>
{/* Setup Settings */}
<Popover>
<PopoverTrigger asChild>
<Button variant="outline">Setup</Button>
</PopoverTrigger>
{renderPopoverContent(
"Setup",
<>
<div className="grid gap-2">
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="perlinTime">Speed</Label>
<Input
id="perlinTime"
type="number"
value={tempConfig.perlinTime}
onChange={(e) => handleChange('perlinTime', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="perlinMorph">Morph</Label>
<Input
id="perlinMorph"
type="number"
value={tempConfig.perlinMorph}
onChange={(e) => handleChange('perlinMorph', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="perlinDNoise">DNoise</Label>
<Input
id="perlinDNoise"
type="number"
value={tempConfig.perlinDNoise}
onChange={(e) => handleChange('perlinDNoise', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
</div>
</>,
"Setup"
)}
</Popover>
{/* RGB Settings */}
<Popover>
<PopoverTrigger asChild>
<Button variant="outline">RGB</Button>
</PopoverTrigger>
{renderPopoverContent(
"RGB",
<>
<div className="grid gap-2">
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="chromaRGBr">Red</Label>
<Input
id="chromaRGBr"
type="number"
value={tempConfig.chromaRGBr}
onChange={(e) => handleChange('chromaRGBr', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="chromaRGBg">Green</Label>
<Input
id="chromaRGBg"
type="number"
value={tempConfig.chromaRGBg}
onChange={(e) => handleChange('chromaRGBg', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="chromaRGBb">Blue</Label>
<Input
id="chromaRGBb"
type="number"
value={tempConfig.chromaRGBb}
onChange={(e) => handleChange('chromaRGBb', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="chromaRGBn">Black</Label>
<Input
id="chromaRGBn"
type="number"
value={tempConfig.chromaRGBn}
onChange={(e) => handleChange('chromaRGBn', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="chromaRGBm">Chroma</Label>
<Input
id="chromaRGBm"
type="number"
value={tempConfig.chromaRGBm}
onChange={(e) => handleChange('chromaRGBm', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
</div>
</>,
"RGB"
)}
</Popover>
{/* Sphere Settings */}
<Popover>
<PopoverTrigger asChild>
<Button variant="outline">Sphere</Button>
</PopoverTrigger>
{renderPopoverContent(
"Sphere",
<>
<div className="grid gap-2">
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="sphereWireframe">Wireframe</Label>
<Checkbox
id="sphereWireframe"
checked={tempConfig.sphereWireframe}
onCheckedChange={(checked) => handleChange('sphereWireframe', checked)}
className="col-span-2"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="spherePoints">Points</Label>
<Checkbox
id="spherePoints"
checked={tempConfig.spherePoints}
onCheckedChange={(checked) => handleChange('spherePoints', checked)}
className="col-span-2"
/>
</div>
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="spherePsize">Point Size</Label>
<Input
id="spherePsize"
type="number"
value={tempConfig.spherePsize}
onChange={(e) => handleChange('spherePsize', parseFloat(e.target.value))}
className="col-span-2 h-8"
/>
</div>
</div>
</>,
"Sphere"
)}
</Popover>
</div>
);
};
export default ConfigPopover;