forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
285 lines (246 loc) · 7.02 KB
/
index.ts
File metadata and controls
285 lines (246 loc) · 7.02 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
import { dispatch, listen, registerFrame, Protocol } from 'codesandbox-api';
import { getTemplate } from 'codesandbox-import-utils/lib/create-sandbox/templates';
import isEqual from 'lodash.isequal';
import generatePackageJSON, {
getPackageJSON,
} from '../utils/generate-package-json';
import version from '../version';
export interface IManagerOptions {
/**
* Location of the bundler.
*/
bundlerURL?: string;
/**
* Width of iframe.
*/
width?: string;
/**
* Height of iframe.
*/
height?: string;
/**
* If we should skip the third step: evaluation.
*/
skipEval?: boolean;
/**
* You can pass a custom file resolver that is responsible for resolving files.
* We will use this to get all files from the file system.
*/
fileResolver?: {
isFile: (path: string) => Promise<boolean>;
readFile: (path: string) => Promise<string>;
};
}
export interface IFile {
code: string;
}
export interface IFiles {
[path: string]: IFile;
}
export interface IModules {
[path: string]: {
code: string;
path: string;
};
}
export interface IDependencies {
[depName: string]: string;
}
export interface ISandboxInfo {
files: IFiles;
dependencies?: IDependencies;
entry?: string;
/**
* What template we use, if not defined we infer the template from the dependencies or files.
*
* @type {string}
*/
template?: string;
showOpenInCodeSandbox?: boolean;
/**
* Only use unpkg for fetching the dependencies, no preprocessing. It's slower, but doesn't talk
* to AWS.
*/
disableDependencyPreprocessing?: boolean;
}
const BUNDLER_URL =
process.env.CODESANDBOX_ENV === 'development'
? 'http://localhost:3002'
: `https://sandpack-${version.replace(/\./g, '-')}.codesandbox.io`;
export default class PreviewManager {
selector: string | undefined;
element: Element;
iframe: HTMLIFrameElement;
options: IManagerOptions;
listener?: Function;
fileResolverProtocol?: Protocol;
bundlerURL: string;
sandboxInfo: ISandboxInfo;
constructor(
selector: string | HTMLIFrameElement,
sandboxInfo: ISandboxInfo,
options: IManagerOptions = {}
) {
this.options = options;
this.sandboxInfo = sandboxInfo;
this.bundlerURL = options.bundlerURL || BUNDLER_URL;
if (typeof selector === 'string') {
this.selector = selector;
const element = document.querySelector(selector);
if (!element) {
throw new Error(`No element found for selector '${selector}'`);
}
this.element = element;
this.iframe = document.createElement('iframe');
this.initializeElement();
} else {
this.element = selector;
this.iframe = selector;
}
this.iframe.setAttribute(
'sandbox',
'allow-forms allow-scripts allow-same-origin allow-modals allow-popups allow-presentation'
);
this.iframe.src = this.bundlerURL;
this.listener = listen((message: any) => {
switch (message.type) {
case 'initialized': {
if (this.iframe) {
if (this.iframe.contentWindow) {
registerFrame(this.iframe.contentWindow, this.bundlerURL);
if (this.options.fileResolver) {
this.fileResolverProtocol = new Protocol(
'file-resolver',
async (data: { m: 'isFile' | 'readFile'; p: string }) => {
if (data.m === 'isFile') {
return this.options.fileResolver!.isFile(data.p);
}
return this.options.fileResolver!.readFile(data.p);
},
this.iframe.contentWindow
);
}
}
this.updatePreview();
}
break;
}
default: {
// Do nothing
}
}
});
}
updateOptions(options: IManagerOptions) {
if (!isEqual(this.options, options)) {
this.options = options;
this.updatePreview();
}
}
updatePreview(sandboxInfo = this.sandboxInfo) {
this.sandboxInfo = sandboxInfo;
const files = this.getFiles();
const modules: IModules = Object.keys(files).reduce(
(prev, next) => ({
...prev,
[next]: {
code: files[next].code,
path: next,
},
}),
{}
);
let packageJSON = JSON.parse(
getPackageJSON(this.sandboxInfo.dependencies, this.sandboxInfo.entry)
);
try {
packageJSON = JSON.parse(files['/package.json'].code);
} catch (e) {
console.error('Could not parse package.json file: ' + e.message);
}
// TODO move this to a common format
const normalizedModules = Object.keys(files).reduce(
(prev, next) => ({
...prev,
[next]: {
content: files[next].code,
path: next,
},
}),
{}
);
dispatch({
type: 'compile',
codesandbox: true,
version: 3,
modules,
externalResources: [],
hasFileResolver: Boolean(this.options.fileResolver),
disableDependencyPreprocessing: this.sandboxInfo
.disableDependencyPreprocessing,
template:
this.sandboxInfo.template ||
getTemplate(packageJSON, normalizedModules),
showOpenInCodeSandbox:
this.sandboxInfo.showOpenInCodeSandbox == null
? true
: this.sandboxInfo.showOpenInCodeSandbox,
skipEval: this.options.skipEval || false,
});
}
public dispatch(message: Object) {
dispatch(message);
}
/**
* Get the URL of the contents of the current sandbox
*/
public getCodeSandboxURL() {
const files = this.getFiles();
const paramFiles = Object.keys(files).reduce(
(prev, next) => ({
...prev,
[next.replace('/', '')]: {
content: files[next].code,
isBinary: false,
},
}),
{}
);
return fetch('https://codesandbox.io/api/v1/sandboxes/define?json=1', {
method: 'POST',
body: JSON.stringify({ files: paramFiles }),
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
})
.then(x => x.json())
.then((res: { sandbox_id: string }) => ({
sandboxId: res.sandbox_id,
editorUrl: `https://codesandbox.io/s/${res.sandbox_id}`,
embedUrl: `https://codesandbox.io/embed/${res.sandbox_id}`,
}));
}
private getFiles() {
const { sandboxInfo } = this;
if (sandboxInfo.files['/package.json'] === undefined) {
return generatePackageJSON(
sandboxInfo.files,
sandboxInfo.dependencies,
sandboxInfo.entry
);
}
return this.sandboxInfo.files;
}
private initializeElement() {
this.iframe.style.border = '0';
this.iframe.style.width = this.options.width || '100%';
this.iframe.style.height = this.options.height || '100%';
this.iframe.style.overflow = 'hidden';
if (!this.element.parentNode) {
// This should never happen
throw new Error('Given element does not have a parent.');
}
this.element.parentNode.replaceChild(this.iframe, this.element);
}
}