Adds web editor support to playground

This commit is contained in:
Henning Dieterichs 2024-05-02 16:46:43 +02:00 коммит произвёл Henning Dieterichs
Родитель 418ae49a8e
Коммит 27978a8064
17 изменённых файлов: 91 добавлений и 27 удалений

Просмотреть файл

@ -28,7 +28,8 @@
"react": "^17.0.2",
"react-bootstrap": "^2.4.0",
"react-dom": "^17.0.2",
"typedoc": "^0.23.26"
"typedoc": "^0.23.26",
"@vscode/web-editors": "./vscode-web-editors.tgz"
},
"devDependencies": {
"@types/classnames": "^2.3.1",

Просмотреть файл

@ -1,4 +1,4 @@
import React = require("react");
import * as React from "react";
import { home, playground, docs, monarch } from "../pages/routes";
import { Container, Navbar, Nav, NavDropdown } from "./bootstrap";

Просмотреть файл

@ -1,4 +1,4 @@
import React = require("react");
import * as React from "react";
import { PageNav } from "./Nav";
export function Page(props: { children: React.ReactNode }) {

Просмотреть файл

@ -1,5 +1,5 @@
import { observer } from "mobx-react";
import React = require("react");
import * as React from "react";
import { IReference } from "../utils/ref";
import { Form } from "./bootstrap";

Просмотреть файл

@ -3,6 +3,6 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as packageJson from "monaco-editor/package.json";
import packageJson from "monaco-editor/package.json";
export const monacoEditorVersion = packageJson.version;

Просмотреть файл

@ -1,7 +1,7 @@
import { Home } from "./home/Home";
import { PlaygroundPage } from "./playground/PlaygroundPage";
import { docs, home, monarch, playground } from "./routes";
import React = require("react");
import * as React from "react";
import { DocsPage } from "./DocsPage";
import { MonarchPage } from "./MonarchPage";

Просмотреть файл

@ -5,7 +5,7 @@ import {
IHistoryModel,
ILocation,
} from "../utils/ObservableHistory";
import React = require("react");
import * as React from "react";
export class DocsPage extends React.Component implements IHistoryModel {
private _lastIFrame: HTMLIFrameElement | null = null;

Просмотреть файл

@ -1,4 +1,4 @@
import React = require("react");
import * as React from "react";
import { Page } from "../components/Page";
export class MonarchPage extends React.Component<{}, {}> {

Просмотреть файл

@ -8,7 +8,7 @@ import {
ControlledMonacoEditor,
} from "../../components/monaco/MonacoEditor";
import { ObservablePromise } from "../../utils/ObservablePromise";
import React = require("react");
import * as React from "react";
import { ref } from "../../utils/ref";
import { monacoEditorVersion } from "../../monacoEditorVersion";

Просмотреть файл

@ -38,13 +38,18 @@ export class LocationModel implements IHistoryModel {
*/
@observable historyId: number = 0;
constructor(private readonly model: PlaygroundModel) {
this.dispose.track(
new HistoryController((initialLocation) => {
this.updateLocation(initialLocation);
return this;
})
);
constructor(
private readonly model: PlaygroundModel,
createHistoryController = true
) {
if (createHistoryController) {
this.dispose.track(
new HistoryController((initialLocation) => {
this.updateLocation(initialLocation);
return this;
})
);
}
}
get location(): ILocation {

Просмотреть файл

@ -30,6 +30,7 @@ import {
} from "./SettingsModel";
import { BisectModel } from "./BisectModel";
import { LocationModel } from "./LocationModel";
import { createJsonWebEditorClient, vObj, vString } from "@vscode/web-editors";
export class PlaygroundModel {
public readonly dispose = Disposable.fn();
@ -47,7 +48,25 @@ export class PlaygroundModel {
@observable
public reloadKey = 0;
public readonly historyModel = new LocationModel(this);
private readonly webEditorClient = createJsonWebEditorClient(
vObj({
js: vString(),
html: vString(),
css: vString(),
}),
(data) => {
runInAction(() => {
this.html = data.html;
this.js = data.js;
this.css = data.css;
});
}
);
public readonly historyModel = new LocationModel(
this,
this.webEditorClient === undefined
);
public reload(): void {
this.reloadKey++;
@ -163,6 +182,17 @@ export class PlaygroundModel {
constructor() {
let lastState: IPreviewState | undefined = undefined;
this.webEditorClient?.onDidConnect.then(() => {
autorun(() => {
const state = this.playgroundProject;
this.webEditorClient!.updateContent({
js: state.js,
html: state.html,
css: state.css,
});
});
});
this.dispose.track({
dispose: reaction(
() => ({ state: this.state }),

Просмотреть файл

@ -42,7 +42,12 @@ export class SettingsModel {
}
constructor() {
const settingsStr = localStorage.getItem(this.settingsKey);
const settingsStr = "";
try {
localStorage.getItem(this.settingsKey);
} catch (e) {
console.error("Failed to load settings from localStorage", e);
}
if (settingsStr) {
this._settings = JSON.parse(settingsStr);
} else {
@ -54,7 +59,11 @@ export class SettingsModel {
setSettings(settings: Settings): void {
const settingsJson = JSON.stringify(toJS(settings));
this._settings = JSON.parse(settingsJson);
localStorage.setItem(this.settingsKey, settingsJson);
try {
localStorage.setItem(this.settingsKey, settingsJson);
} catch (e) {
console.error("Failed to save settings to localStorage", e);
}
}
}

Просмотреть файл

@ -1,4 +1,3 @@
import { normalizeLineEnding } from "./utils";
import { IPlaygroundProject } from "../../../shared";
export function findLastIndex<T>(

Просмотреть файл

@ -2,18 +2,15 @@
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node16",
"moduleResolution": "Node",
"strict": true,
"outDir": "dist",
"skipLibCheck": true,
"rootDir": "./src",
"resolveJsonModule": true,
"newLine": "LF",
"sourceMap": true,
"jsx": "react",
"experimentalDecorators": true,
// to enable mobx decorators
"useDefineForClassFields": false
"useDefineForClassFields": false,
"noEmit": true
},
"include": ["src/**/*", "./node_modules/monaco-editor/monaco.d.ts"]
"exclude": ["src/**/*", "./node_modules/monaco-editor/monaco.d.ts"]
}

19
website/tsconfig.web.json Normal file
Просмотреть файл

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "esnext",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"outDir": "dist",
"skipLibCheck": true,
"rootDir": "./src",
"resolveJsonModule": true,
"newLine": "LF",
"sourceMap": true,
"jsx": "react",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"noEmit": true
},
"include": ["src/**/*", "./node_modules/monaco-editor/monaco.d.ts"]
}

Двоичные данные
website/vscode-web-editors.tgz Normal file

Двоичный файл не отображается.

Просмотреть файл

@ -487,6 +487,10 @@
dependencies:
"@types/node" "*"
"@vscode/web-editors@./vscode-web-editors.tgz":
version "0.1.0"
resolved "./vscode-web-editors.tgz#657c1b47d50dfd1a457f660e3184fb88121f8b24"
"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5":
version "1.11.6"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24"