This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
/
EmbedPreview.tsx
382 lines (363 loc) · 10.8 KB
/
EmbedPreview.tsx
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
import {
Box,
VStack,
FormControl,
FormLabel,
Select,
Switch,
Button,
Textarea,
Modal,
ModalBody,
ModalContent,
ModalOverlay,
Spinner,
useClipboard,
} from '@chakra-ui/react';
import { useMachine } from '@xstate/react';
import React, { useEffect, useRef, useState } from 'react';
import { createModel } from 'xstate/lib/model';
import { EmbedMode, EmbedPanel, ParsedEmbed } from './types';
import { makeEmbedUrl, paramsToRecord } from './utils';
import { createMachine, send } from 'xstate';
import { Overlay } from './Overlay';
import { useRouter } from 'next/router';
const extractFormData = (form: HTMLFormElement): ParsedEmbed => {
// This is needed because FormData doesn't include checkboxes that are unchecked by default
// https://developer.mozilla.org/en-US/docs/Web/API/FormData/FormData
const data = Array.from(form.elements)
.filter((el) => el.nodeName.toLowerCase() !== 'fieldset')
.map((el) => {
const name = el.getAttribute('name');
const nodeName = el.nodeName.toLowerCase();
if (!name) {
throw Error('Form element with no name found in the form');
}
switch (nodeName) {
case 'select':
return {
name,
value: (el as HTMLSelectElement).value,
};
// for now, all inputs are checkboxes
case 'input':
return {
name,
value: (el as HTMLInputElement).checked,
};
default:
throw Error('Unhandled input of type: ' + el.nodeName);
}
});
return paramsToRecord(data);
};
const getEmbedCodeFromUrl = (embedUrl: string) => `<iframe src="${embedUrl}"
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
></iframe>`;
const embedPreviewModel = createModel(
{
embedUrl: '',
embedCode: getEmbedCodeFromUrl(''),
params: {
mode: EmbedMode.Viz,
panel: EmbedPanel.Code,
readOnly: true,
showOriginalLink: true,
controls: false,
pan: false,
zoom: false,
} as ParsedEmbed,
},
{
events: {
PARAMS_CHANGED: (params: ParsedEmbed) => ({ params }),
PREVIEW: () => ({}),
IFRAME_LOADED: () => ({}),
IFRAME_ERROR: () => ({}),
},
},
);
const embedPreviewMachine = embedPreviewModel.createMachine({
id: 'preview',
type: 'parallel',
states: {
form: {
initial: 'ready',
states: {
ready: {
entry: ['makeEmbedUrlAndCode', 'updateEmbedCopy', send('PREVIEW')],
on: {
PARAMS_CHANGED: {
actions: ['saveParams'],
internal: false,
target: 'ready',
},
},
},
},
},
iframe: {
initial: 'idle',
on: {
PREVIEW: '.loading',
},
states: {
idle: {},
loading: {
tags: 'preview_loading',
on: {
IFRAME_LOADED: 'loaded',
IFRAME_ERROR: 'error',
},
},
loaded: {},
error: {
tags: 'preview_error',
},
},
},
},
});
const useEmbedCodeClipboard = () => {
const [value, setValue] = useState('');
const { onCopy, hasCopied } = useClipboard(value);
return {
copy: onCopy,
setCopyText: setValue,
isCopied: hasCopied,
};
};
const EmbedPreviewContent: React.FC = () => {
const router = useRouter();
const form = useRef<HTMLFormElement>(null!);
const {
copy: copyEmbedCode,
isCopied,
setCopyText,
} = useEmbedCodeClipboard();
const [previewState, sendPreviewEvent] = useMachine(embedPreviewMachine, {
actions: {
saveParams: embedPreviewModel.assign({
params: (_, e) => (e as any).params,
}),
updateEmbedCopy: (ctx) => {
setCopyText(ctx.embedCode);
},
makeEmbedUrlAndCode: embedPreviewModel.assign((ctx) => {
const url = makeEmbedUrl(
router.query.sourceFileId as string,
ctx.params,
);
return {
embedUrl: url,
embedCode: getEmbedCodeFromUrl(url),
params: ctx.params,
};
}),
},
});
useEffect(() => {
const formRef = form.current;
return () => {
formRef.reset();
};
}, []);
const isFormReady = previewState.matches({ form: 'ready' });
const isPreviewLoading = previewState.hasTag('preview_loading');
const isPreviewError = previewState.hasTag('preview_error');
return (
<Box
display="grid"
gridTemplateAreas={`"sidebar preview"`}
gridTemplateColumns="auto 1fr"
>
<Box
gridArea="sidebar"
borderRight="1px dotted var(--chakra-colors-black)"
paddingRight="2"
opacity={!isFormReady ? 0.5 : 1}
cursor={!isFormReady ? 'not-allowed' : 'default'}
disabled={!isFormReady}
>
<VStack spacing="10">
<form
onChange={() => {
sendPreviewEvent({
type: 'PARAMS_CHANGED',
params: extractFormData(form.current),
});
}}
ref={form}
>
<VStack spacing="5">
<FormControl
display="flex"
alignItems="center"
justifyContent="space-between"
>
<FormLabel marginBottom="0" htmlFor="mode" whiteSpace="nowrap">
Mode
</FormLabel>
<Select id="mode" name="mode" size="sm" width="auto">
{Object.values(EmbedMode).map((mode) => (
<option key={mode} value={mode}>
{mode}
</option>
))}
</Select>
</FormControl>
<FormControl
display="flex"
alignItems="center"
justifyContent="space-between"
>
<FormLabel marginBottom="0" htmlFor="panel" whiteSpace="nowrap">
Active Panel
</FormLabel>
<Select id="panel" name="panel" size="sm" width="auto">
{Object.values(EmbedPanel).map((panel) => (
<option key={panel} value={panel}>
{panel}
</option>
))}
</Select>
</FormControl>
<FormControl
display="flex"
alignItems="center"
justifyContent="space-between"
>
<FormLabel
marginBottom="0"
htmlFor="readOnly"
whiteSpace="nowrap"
>
Editor readonly
</FormLabel>
<Switch defaultChecked={true} id="readOnly" name="readOnly" />
</FormControl>
<FormControl
display="flex"
alignItems="center"
justifyContent="space-between"
>
<FormLabel
marginBottom="0"
htmlFor="showOriginalLink"
whiteSpace="nowrap"
>
Show original link to visualizer
</FormLabel>
<Switch
defaultChecked={true}
id="showOriginalLink"
name="showOriginalLink"
/>
</FormControl>
<FormControl
display="flex"
alignItems="center"
justifyContent="space-between"
>
<FormLabel
marginBottom="0"
htmlFor="controls"
whiteSpace="nowrap"
>
Show control buttons
</FormLabel>
<Switch defaultChecked={false} id="controls" name="controls" />
</FormControl>
<FormControl
display="flex"
alignItems="center"
justifyContent="space-between"
>
<FormLabel marginBottom="0" htmlFor="pan" whiteSpace="nowrap">
Allow panning
</FormLabel>
<Switch defaultChecked={false} id="pan" name="pan" />
</FormControl>
<FormControl
display="flex"
alignItems="center"
justifyContent="space-between"
>
<FormLabel marginBottom="0" htmlFor="zoom" whiteSpace="nowrap">
Allow zooming
</FormLabel>
<Switch defaultChecked={false} id="zoom" name="zoom" />
</FormControl>
</VStack>
</form>
<Box position="relative" width="100%">
<Button
size="xs"
position="absolute"
rounded="false"
top="0"
right="0"
transform="translateY(-110%)"
onClick={copyEmbedCode}
>
{isCopied ? 'Copied' : 'Copy'}
</Button>
<Textarea
minHeight="200px"
readOnly
value={previewState.context.embedCode}
/>
</Box>
</VStack>
</Box>
<Box gridArea="preview" paddingLeft="2">
{isPreviewLoading && (
<Overlay>
<Spinner size="lg" />
</Overlay>
)}
{isPreviewError && <p>Error loading preview</p>}
<Box position="relative" width="100%" height="0" paddingTop="56.25%">
<iframe
style={{
position: 'absolute',
height: isPreviewLoading ? 0 : '100%',
left: 0,
right: 0,
top: 0,
bottom: 0,
width: '100%',
}}
onLoad={(e) => {
// Found at https://stackoverflow.com/questions/15273042/catch-error-if-iframe-src-fails-to-load-error-refused-to-display-http-ww
// If iframe isn't loaded, the contentWindow is either null or with length 0
const iframe = e.target as HTMLIFrameElement;
if (iframe.contentWindow?.length) {
sendPreviewEvent('IFRAME_LOADED');
} else {
sendPreviewEvent('IFRAME_ERROR');
}
}}
src={previewState.context.embedUrl}
></iframe>
</Box>
</Box>
</Box>
);
};
export const EmbedPreview: React.FC<{ isOpen: boolean; onClose(): void }> = ({
isOpen,
onClose,
}) => {
return (
<Modal size="6xl" isOpen={isOpen} onClose={onClose}>
<ModalOverlay />
<ModalContent>
<ModalBody>
<EmbedPreviewContent />
</ModalBody>
</ModalContent>
</Modal>
);
};