-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathV2.tsx
More file actions
415 lines (387 loc) · 12.8 KB
/
V2.tsx
File metadata and controls
415 lines (387 loc) · 12.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
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
import { useGuideContext, useStore } from "@knocklabs/react-core";
import { Button } from "@telegraph/button";
import { Icon } from "@telegraph/icon";
import { Box, Stack } from "@telegraph/layout";
import { SegmentedControl } from "@telegraph/segmented-control";
import { Tooltip } from "@telegraph/tooltip";
import { Text } from "@telegraph/typography";
import {
Box as BoxIcon,
ChevronDown,
ChevronRight,
Gauge,
GripVertical,
LogOut,
Minimize2,
SlidersHorizontal,
} from "lucide-react";
import React from "react";
import { KnockButton } from "../KnockButton";
import { TOOLBAR_Z_INDEX } from "../shared";
import "../styles.css";
import { GuideContextDetails } from "./GuideContextDetails";
import { GuideRow } from "./GuideRow";
import { clearRunConfigLS, getRunConfig } from "./helpers";
import { useDraggable } from "./useDraggable";
import {
InspectionResultOk,
useInspectGuideClientStore,
} from "./useInspectGuideClientStore";
const TOOLBAR_WIDTH = "540px";
const Kbd = ({ children }: { children: React.ReactNode }) => {
return (
<kbd
style={{
display: "inline-block",
padding: "1px 4px",
borderRadius: "var(--tgph-rounded-2)",
border: "1px solid rgba(255, 255, 255, 0.3)",
backgroundColor: "rgba(255, 255, 255, 0.15)",
}}
>
{children}
</kbd>
);
};
type DisplayOption = "all-guides" | "only-eligible" | "only-displayable";
const GuidesList = ({
guides,
displayOption,
}: {
guides: InspectionResultOk["guides"];
displayOption: DisplayOption;
}) => {
const [expandedGuideRowKey, setExpandedGuideRowKey] = React.useState<
string | undefined
>();
React.useEffect(() => {
setExpandedGuideRowKey(undefined);
}, [displayOption]);
return guides.map((guide, idx) => {
const { isEligible, isQualified } = guide.annotation;
const isDisplayable = isEligible && isQualified;
if (displayOption === "only-displayable" && !isDisplayable) {
return null;
}
if (displayOption === "only-eligible" && !isEligible) {
return null;
}
return (
<GuideRow
key={guide.key}
guide={guide}
orderIndex={idx}
isExpanded={guide.key === expandedGuideRowKey}
onClick={() => {
setExpandedGuideRowKey((k) =>
k && k === guide.key ? undefined : guide.key,
);
}}
/>
);
});
};
export const V2 = () => {
const { client } = useGuideContext();
const [displayOption, setDisplayOption] =
React.useState<DisplayOption>("only-eligible");
const [runConfig, setRunConfig] = React.useState(() => getRunConfig());
const [isCollapsed, setIsCollapsed] = React.useState(false);
const [isContextPanelOpen, setIsContextPanelOpen] = React.useState(false);
const { debugSettings } = useStore(client.store, (state) => ({
debugSettings: state.debug || {},
}));
React.useEffect(() => {
const { isVisible = false, focusedGuideKeys = {} } = runConfig || {};
const isDebugging = client.store.state.debug?.debugging;
if (isVisible && !isDebugging) {
client.setDebug({ focusedGuideKeys });
// If focused, switch to all guides so you can see in the list.
if (Object.keys(focusedGuideKeys).length > 0) {
setDisplayOption("all-guides");
}
}
return () => {
client.unsetDebug();
};
}, [runConfig, client, setDisplayOption]);
// Toggle collapsed state when Ctrl is pressed and released alone
// (without combining with another key), similar to Vercel's toolbar.
React.useEffect(() => {
let ctrlUsedInCombo = false;
const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === "Control") {
ctrlUsedInCombo = false;
} else if (e.ctrlKey) {
ctrlUsedInCombo = true;
}
};
const handleKeyUp = (e: KeyboardEvent) => {
if (e.key === "Control" && !ctrlUsedInCombo) {
setIsCollapsed((prev) => !prev);
}
};
window.addEventListener("keydown", handleKeyDown);
window.addEventListener("keyup", handleKeyUp);
return () => {
window.removeEventListener("keydown", handleKeyDown);
window.removeEventListener("keyup", handleKeyUp);
};
}, []);
const containerRef = React.useRef<HTMLDivElement>(null);
const { position, isDragging, handlePointerDown, hasDraggedRef } =
useDraggable({
elementRef: containerRef,
reclampDeps: [isCollapsed],
initialPosition: { top: 16, right: 16 },
});
const result = useInspectGuideClientStore(runConfig);
if (!result || !runConfig?.isVisible) {
return null;
}
return (
<Box
tgphRef={containerRef}
position="fixed"
style={{
top: position.top + "px",
right: position.right + "px",
zIndex: TOOLBAR_Z_INDEX,
}}
>
{isCollapsed ? (
<Tooltip
side="left"
delayDuration={500}
label={
<Text as="span" size="1">
Guide Toolbar <Kbd>ctrl</Kbd>
</Text>
}
>
<Stack
border="px"
rounded="4"
align="center"
justify="center"
w="10"
h="10"
onPointerDown={handlePointerDown}
backgroundColor="surface-1"
style={{
cursor: isDragging ? "grabbing" : "grab",
touchAction: "none",
userSelect: "none",
animation: "toolbar-collapse-fade-in 150ms ease-out",
}}
>
<Box
style={{
transform: "scale(0.7)",
transformOrigin: "center center",
}}
>
<KnockButton
onClick={() => {
if (!hasDraggedRef.current) {
setIsCollapsed(false);
}
}}
positioned={false}
/>
</Box>
</Stack>
</Tooltip>
) : (
<Stack
direction="column"
backgroundColor="surface-1"
rounded="4"
border="px"
overflow="hidden"
style={{
width: TOOLBAR_WIDTH,
boxShadow: "0 8px 32px var(--tgph-gray-5)",
animation: "toolbar-expand-fade-in 150ms ease-out",
}}
>
{/* Header — also acts as drag handle area */}
<Stack
w="full"
p="2"
justify="space-between"
direction="row"
align="center"
gap="2"
borderBottom="px"
onPointerDown={handlePointerDown}
style={{
boxSizing: "border-box",
cursor: isDragging ? "grabbing" : "grab",
touchAction: "none",
userSelect: "none",
}}
>
{/* Left: drag icon + segmented control + settings */}
<Stack align="center" gap="1_5" style={{ minWidth: 0, flex: 1 }}>
<Stack
display="inline-flex"
align="center"
style={{
cursor: isDragging ? "grabbing" : "grab",
touchAction: "none",
userSelect: "none",
}}
onPointerDown={(e: React.PointerEvent) => {
// Already handled by parent, prevent double-fire
e.stopPropagation();
handlePointerDown(e);
}}
>
<Icon color="gray" size="1" icon={GripVertical} aria-hidden />
</Stack>
<Stack
align="center"
gap="1_5"
onPointerDown={(e: React.PointerEvent) => e.stopPropagation()}
>
<SegmentedControl.Root
size="1"
type="single"
value={displayOption}
onValueChange={(val: DisplayOption) => {
if (!val) return;
setDisplayOption(val);
}}
>
<SegmentedControl.Option value="all-guides">
All guides
</SegmentedControl.Option>
<SegmentedControl.Option value="only-eligible">
Eligible
</SegmentedControl.Option>
<SegmentedControl.Option value="only-displayable">
On this page
</SegmentedControl.Option>
</SegmentedControl.Root>
<Tooltip label="Sandbox: Contain engagement actions to client side only">
<Button
size="1"
variant={
debugSettings.skipEngagementTracking ? "outline" : "ghost"
}
color={
debugSettings.skipEngagementTracking ? "blue" : "gray"
}
icon={{ icon: BoxIcon, alt: "Sandbox mode" }}
onClick={() => {
client.setDebug({
...debugSettings,
skipEngagementTracking:
!debugSettings.skipEngagementTracking,
});
}}
/>
</Tooltip>
<Tooltip label="Ignore throttle: Show next guide immediately">
<Button
size="1"
variant={
debugSettings.ignoreDisplayInterval ? "outline" : "ghost"
}
color={
debugSettings.ignoreDisplayInterval ? "blue" : "gray"
}
icon={{ icon: Gauge, alt: "Ignore throttle" }}
onClick={() => {
client.setDebug({
...debugSettings,
ignoreDisplayInterval:
!debugSettings.ignoreDisplayInterval,
});
}}
/>
</Tooltip>
<Tooltip label="Inspect target params">
<Button
size="1"
variant={isContextPanelOpen ? "outline" : "ghost"}
color={isContextPanelOpen ? "blue" : "gray"}
leadingIcon={{
icon: SlidersHorizontal,
alt: "Inspect target params",
}}
trailingIcon={
isContextPanelOpen
? { icon: ChevronDown, alt: "Hide context data" }
: { icon: ChevronRight, alt: "Show context data" }
}
onClick={() => setIsContextPanelOpen((v) => !v)}
/>
</Tooltip>
</Stack>
</Stack>
{/* Right: exit + minimize buttons */}
<Stack
align="center"
gap="1_5"
style={{ flexShrink: 0 }}
onPointerDown={(e: React.PointerEvent) => e.stopPropagation()}
>
<Stack align="center" gap="1_5">
<Button
size="1"
variant="outline"
leadingIcon={{ icon: LogOut, alt: "Exit" }}
onClick={() => {
setRunConfig((curr) => ({ ...curr, isVisible: false }));
clearRunConfigLS();
client.unsetDebug();
}}
>
Exit
</Button>
<Tooltip label="Minimize toolbar">
<Button
size="1"
variant="outline"
leadingIcon={{ icon: Minimize2, alt: "Minimize" }}
onClick={() => setIsCollapsed(true)}
/>
</Tooltip>
</Stack>
</Stack>
</Stack>
{/* Collapsible panel to show context data */}
{isContextPanelOpen && (
<Box borderBottom="px">
<GuideContextDetails />
</Box>
)}
{/* Guide list content area */}
<Box p="1" overflow="auto" style={{ maxHeight: "calc(80vh - 96px)" }}>
{result.status === "error" ? (
<Box px="2" pb="1" style={{ lineHeight: "1.2" }}>
<Text
as="span"
size="1"
weight="medium"
color={
result.error === "no_guides_fetched" ? "default" : "red"
}
>
{result.message}
</Text>
</Box>
) : (
<GuidesList
guides={result.guides}
displayOption={displayOption}
/>
)}
</Box>
</Stack>
)}
</Box>
);
};