Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conflict with @monaco-editor/react #802

Open
FernandoFernandesEverest opened this issue Dec 11, 2024 · 2 comments
Open

Conflict with @monaco-editor/react #802

FernandoFernandesEverest opened this issue Dec 11, 2024 · 2 comments

Comments

@FernandoFernandesEverest

Issue Description

When using @typefox/monaco-editor-react and @monaco-editor/react in the same application, the editor models are not retained correctly when navigating between pages using ReactRouterDom or similar routing libraries that do not trigger a full page reload.

How to Reproduce

  • Create an editor instance using @typefox/monaco-editor-react:
import { MonacoEditorReactComp } from '@typefox/monaco-editor-react';

<MonacoEditorReactComp
  {...{ onLoad, userConfig }}
  ref={editorRef}
  style={{ height, width: '100%' }}
/>
  • Open the page with the editor and run the following in the console:

this.monaco.editor.getModels().map(m => m.id)

Expected output: ["$model1"]

  • Navigate to another page using ReactRouterDom or a similar routing library that does not trigger a full page reload.

Create an editor instance using @monaco-editor/react:

<MonacoEditor {...DEFAULT_EDITOR_CONFIG} />

  • Open the console and run the following:

this.monaco.editor.getModels().map(m => m.id)

Expected output: ["$model1", "$model2"]
Actual output: []

Expected Behavior

The editor models should be retained and the output should be ["$model1", "$model2"] after navigating between pages and creating a new editor instance.

Actual Behavior

The editor models are not retained, and the output is [] after navigating between pages and creating a new editor instance.

@kaisalmen
Copy link
Collaborator

@FernandoFernandesEverest mixing @typefox/monaco-editor-react and @monaco-editor/react is not supported. You have to use one or the other. We use the @codingame/monaco-vscode-api which relies on a api compatible version of monaco-editor and the dependency is therefore different (see https://github.com/TypeFox/monaco-languageclient/blob/main/packages/wrapper-react/package.json#L45). You may enforce the same dependency, but I still would not recommend to us both packages in the same project.

@CGNonofr
Copy link
Collaborator

it's a problem probably only because it uses monaco-loader, which load another instance of monaco-editor (from the official package)

but monaco-loader can be configured to use local monaco-editor, maybe it's worth giving it a try

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants