forked from onlook-dev/onlook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
435 lines (406 loc) · 13.2 KB
/
index.ts
File metadata and controls
435 lines (406 loc) · 13.2 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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
import {
BrandTabValue,
EditorMode,
EditorTabValue,
LayersPanelTabValue,
SettingsTabValue,
} from '@/lib/models';
import type { ProjectsManager } from '@/lib/projects';
import type { UserManager } from '@/lib/user';
import { invokeMainChannel, sendAnalytics } from '@/lib/utils';
import { MainChannels } from '@onlook/models/constants';
import type { FrameSettings } from '@onlook/models/projects';
import type { NativeImage } from 'electron';
import { makeAutoObservable } from 'mobx';
import { nanoid } from 'nanoid/non-secure';
import { ActionManager } from './action';
import { AstManager } from './ast';
import { CanvasManager } from './canvas';
import { ChatManager } from './chat';
import { CodeManager } from './code';
import { CopyManager } from './copy';
import { ElementManager } from './element';
import { ErrorManager } from './error';
import { FontManager } from './font';
import { GroupManager } from './group';
import { HistoryManager } from './history';
import { ImageManager } from './image';
import { InsertManager } from './insert';
import { MoveManager } from './move';
import { OverlayManager } from './overlay';
import { PagesManager } from './pages';
import { FilesManager } from './files';
import { ProjectInfoManager } from './projectinfo';
import { StyleManager } from './style';
import { TextEditingManager } from './text';
import { ThemeManager } from './theme';
import { WebviewManager } from './webview';
export class EditorEngine {
private _plansOpen: boolean = false;
private _settingsOpen: boolean = false;
private _hotkeysOpen: boolean = false;
private _publishOpen: boolean = false;
private _isLayersPanelLocked: boolean = false;
private _editorMode: EditorMode = EditorMode.DESIGN;
private _editorPanelTab: EditorTabValue = EditorTabValue.CHAT;
private _settingsTab: SettingsTabValue | string = SettingsTabValue.PREFERENCES;
private _layersPanelTab: LayersPanelTabValue | null = null;
private _brandTab: BrandTabValue | null = null;
private canvasManager: CanvasManager;
private chatManager: ChatManager;
private webviewManager: WebviewManager;
private overlayManager: OverlayManager;
private codeManager: CodeManager;
private pagesManager: PagesManager;
private filesManager: FilesManager;
private errorManager: ErrorManager;
private imageManager: ImageManager;
private themeManager: ThemeManager;
private fontManager: FontManager;
private astManager: AstManager = new AstManager(this);
private historyManager: HistoryManager = new HistoryManager(this);
private projectInfoManager: ProjectInfoManager = new ProjectInfoManager();
private elementManager: ElementManager = new ElementManager(this);
private textEditingManager: TextEditingManager = new TextEditingManager(this);
private actionManager: ActionManager = new ActionManager(this);
private insertManager: InsertManager = new InsertManager(this);
private moveManager: MoveManager = new MoveManager(this);
private styleManager: StyleManager = new StyleManager(this);
private copyManager: CopyManager = new CopyManager(this);
private groupManager: GroupManager = new GroupManager(this);
constructor(
private projectsManager: ProjectsManager,
private userManager: UserManager,
) {
makeAutoObservable(this);
this.canvasManager = new CanvasManager(this.projectsManager);
this.chatManager = new ChatManager(this, this.projectsManager, this.userManager);
this.webviewManager = new WebviewManager(this, this.projectsManager);
this.overlayManager = new OverlayManager(this);
this.codeManager = new CodeManager(this, this.projectsManager, this.userManager);
this.pagesManager = new PagesManager(this, this.projectsManager);
this.filesManager = new FilesManager(this, this.projectsManager);
this.errorManager = new ErrorManager(this, this.projectsManager);
this.imageManager = new ImageManager(this, this.projectsManager);
this.themeManager = new ThemeManager(this, this.projectsManager);
this.fontManager = new FontManager(this, this.projectsManager);
}
get elements() {
return this.elementManager;
}
get overlay() {
return this.overlayManager;
}
get webviews() {
return this.webviewManager;
}
get code() {
return this.codeManager;
}
get history() {
return this.historyManager;
}
get ast() {
return this.astManager;
}
get action() {
return this.actionManager;
}
get mode() {
return this._editorMode;
}
get insert() {
return this.insertManager;
}
get move() {
return this.moveManager;
}
get projectInfo() {
return this.projectInfoManager;
}
get style() {
return this.styleManager;
}
get canvas() {
return this.canvasManager;
}
get text() {
return this.textEditingManager;
}
get copy() {
return this.copyManager;
}
get group() {
return this.groupManager;
}
get chat() {
return this.chatManager;
}
get image() {
return this.imageManager;
}
get theme() {
return this.themeManager;
}
get font() {
return this.fontManager;
}
get editPanelTab() {
return this._editorPanelTab;
}
get settingsTab() {
return this._settingsTab;
}
get layersPanelTab() {
return this._layersPanelTab;
}
get isPlansOpen() {
return this._plansOpen;
}
get isSettingsOpen() {
return this._settingsOpen;
}
get isPublishOpen() {
return this._publishOpen;
}
get isHotkeysOpen() {
return this._hotkeysOpen;
}
get brandTab() {
return this._brandTab;
}
get errors() {
return this.errorManager;
}
get isWindowSelected() {
return this.webviews.selected.length > 0 && this.elements.selected.length === 0;
}
get pages() {
return this.pagesManager;
}
get files() {
return this.filesManager;
}
get isLayersPanelLocked() {
return this._isLayersPanelLocked;
}
set isLayersPanelLocked(value: boolean) {
this._isLayersPanelLocked = value;
}
set mode(mode: EditorMode) {
this._editorMode = mode;
}
set editPanelTab(tab: EditorTabValue) {
this._editorPanelTab = tab;
}
set settingsTab(tab: SettingsTabValue | string) {
this._settingsTab = tab;
}
set layersPanelTab(tab: LayersPanelTabValue | null) {
this._layersPanelTab = tab;
}
set isPlansOpen(open: boolean) {
this._plansOpen = open;
if (open) {
sendAnalytics('open pro checkout');
}
}
set isSettingsOpen(open: boolean) {
this._settingsOpen = open;
}
set isHotkeysOpen(value: boolean) {
this._hotkeysOpen = value;
}
set isPublishOpen(open: boolean) {
this._publishOpen = open;
}
set brandTab(tab: BrandTabValue | null) {
this._brandTab = tab;
}
dispose() {
this.overlay.clear();
this.elements.clear();
this.webviews.deregisterAll();
this.errors.clear();
this.chatManager?.dispose();
this.filesManager?.dispose();
this.historyManager?.clear();
this.elementManager?.clear();
this.actionManager?.dispose();
this.overlayManager?.clear();
this.astManager?.clear();
this.textEditingManager?.clean();
this.codeManager?.dispose();
this.insertManager?.dispose();
this.moveManager?.dispose();
this.styleManager?.dispose();
this.copyManager?.dispose();
this.groupManager?.dispose();
this.canvasManager?.clear();
this.imageManager?.dispose();
this.themeManager?.dispose();
this.fontManager?.dispose();
this._settingsOpen = false;
this._plansOpen = false;
}
clearUI() {
this.overlay.clear();
this.elements.clear();
this.webviews.deselectAll();
}
inspect() {
const selected = this.elements.selected;
if (selected.length === 0) {
return;
}
const selectedEl = selected[0];
const webviewId = selectedEl.webviewId;
const webview = this.webviews.getWebview(webviewId);
if (!webview) {
return;
}
webview.openDevTools();
}
async refreshLayers() {
const webviews = this.webviews.webviews;
if (webviews.size === 0) {
return;
}
const webview = Array.from(webviews.values())[0].webview;
webview.executeJavaScript('window.api?.processDom()');
}
async takeActiveWebviewScreenshot(
name: string,
options?: {
save: boolean;
},
): Promise<{
name?: string;
image?: string;
} | null> {
if (this.webviews.webviews.size === 0) {
console.error('Failed to take screenshot, no webviews found');
return null;
}
const webviewId = Array.from(this.webviews.webviews.values())[0].webview.id;
return this.takeWebviewScreenshot(name, webviewId, options);
}
async takeWebviewScreenshot(
name: string,
webviewId: string,
options?: {
save: boolean;
},
): Promise<{
name?: string;
image?: string;
} | null> {
const webview = this.webviews.getWebview(webviewId);
if (!webview) {
console.error('No webview found');
return null;
}
const hasContent = await webview.executeJavaScript(
`document.body.innerText.trim().length > 0 || document.body.children.length > 0 `,
);
if (!hasContent) {
console.error('No content found in webview');
return null;
}
const image: NativeImage = await webview.capturePage();
if (options?.save) {
const imageName = `${name}-preview.png`;
const path: string | null = await invokeMainChannel(MainChannels.SAVE_IMAGE, {
img: image.toDataURL(),
name: imageName,
});
return {
name: imageName,
};
}
return {
image: image.resize({ quality: 'good', height: 100 }).toDataURL({
scaleFactor: 0.1,
}),
};
}
async getTerminalOutput(): Promise<string | null> {
try {
if (!this.projectsManager.runner) {
return null;
}
const history = await this.projectsManager.runner.getHistory();
return history || null;
} catch (error) {
console.error('Failed to get terminal output:', error);
return null;
}
}
canDeleteWindow() {
return this.canvas.frames.length > 1;
}
deleteWindow(id?: string) {
if (this.canvas.frames.length === 1) {
console.error('Cannot delete the last window');
return;
}
let settings: FrameSettings | null = null;
if (id) {
settings = this.canvas.getFrame(id) || null;
if (!settings) {
console.error('Window not found');
return;
}
} else if (this.webviews.selected.length === 0) {
console.error('No window selected');
return;
} else {
settings = this.canvas.getFrame(this.webviews.selected[0].id) || null;
}
if (!settings) {
console.error('Window not found');
return;
}
this.ast.mappings.remove(settings.id);
this.canvas.frames = this.canvas.frames.filter((frame) => frame.id !== settings.id);
const webview = this.webviews.getWebview(settings.id);
if (webview) {
this.webviews.deregister(webview);
}
sendAnalytics('window delete');
}
duplicateWindow(id?: string) {
let settings: FrameSettings | null = null;
if (id) {
settings = this.canvas.getFrame(id) || null;
} else if (this.webviews.selected.length === 0) {
console.error('No window selected');
return;
} else {
settings = this.canvas.getFrame(this.webviews.selected[0].id) || null;
}
if (!settings) {
console.error('Window not found');
return;
}
const currentFrame = settings;
const newFrame: FrameSettings = {
id: nanoid(),
url: currentFrame.url,
dimension: {
width: currentFrame.dimension.width,
height: currentFrame.dimension.height,
},
position: {
x: currentFrame.position.x + currentFrame.dimension.width + 100,
y: currentFrame.position.y,
},
aspectRatioLocked: currentFrame.aspectRatioLocked,
orientation: currentFrame.orientation,
device: currentFrame.device,
theme: currentFrame.theme,
};
this.canvas.frames = [...this.canvas.frames, newFrame];
sendAnalytics('window duplicate');
}
}