An Angular Code Editor component based on the MS Monaco Code Editor
Using this Module you can utilize the Monaco Editor as an Angular Component. Feel free to contribute, raise feature requests and make it better.
Supports all the options available in monaco-editor Monaco Editor Options
npm install monaco-editor --save
npm install angular-monaco-editor --save
{
"apps": [
{
"assets": [
{
"glob": "**/*",
"input": "../node_modules/monaco-editor/min",
"output": "./assets/monaco/"
}
],
...
}
...
],
...
}
PS: In Angular 6 CLI, please copy node_modules/monaco-editor/min to src/assets and rename folder as ‘monaco’ by hand.
PPS: Angular 6 CLI does not allow to dymanicly load resource using input/output.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms'; //import FormsModule to make ngModel attr work
import { AngularMonacoEditorConfig, AngularMonacoEditorModule } from 'angular-monaco-editor';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
FormsModule, // Warning: depended module, must be imported
BrowserModule,
AngularMonacoEditorModule.forRoot()
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
PS: Please make sure the ‘FormsModule’ also be imported when importing the AngularMonacoEditorModule.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
options = {
theme: 'vs-dark',
language: 'javascript',
};
code: string = `
function foo() {
alert('Hello');
alert('World');
alert('Hello World.');
}`;
}
<angular-monaco-editor class="customMonacoEditor" [options]="options" [(ngModel)]="code"> </angular-monaco-editor>
<div class="editorPanel">
<angular-monaco-editor class="customMonacoEditor" [options]="options" [(ngModel)]="code"></angular-monaco-editor>
</div>
.editorPanel{
display: block;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
.editorPanel .customMonacoEditor { /*set automaticLayout*/
height: calc(100vh - 0px);
}
Set automaticLayout option to adjust editor size dynamically. Recommended when using in modal dialog or tabs where editor is not visible initially.
Output event (onInit) expose editor instance that can be used for performing custom operations on the editor.
<angular-monaco-editor class="customMonacoEditor" [options]="options" [(ngModel)]="code" (onInit)="onInitHandler($event)"></angular-monaco-editor>
export class AppComponent {
options = {theme: 'vs-dark',language: 'javascript'};
code: string = `
function foo() {
alert('Hello');
alert('World');
alert('Hello World.');
`;
// Add Event Handler
onInitHandler(event: any){
console.log(event);
}
}
forRoot()
method of AngularMonacoEditorModule accepts config of type AngularMonacoEditorConfig
.
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { AngularMonacoEditorModule, AngularMonacoEditorConfig } from 'angular-monaco-editor';
import { AppComponent } from './app.component';
const monacoConfig: AngularMonacoEditorConfig = {
baseUrl: 'app-name/assets', // configure base path for monaco editor
defaultOptions: { scrollBeyondLastLine: false }, // pass default options to be used
onMonacoLoad: () => { console.log((<any>window).monaco); } // here monaco object will be available as window.monaco use this function to extend monaco editor functionality.
};
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
AngularMonacoEditorModule.forRoot(monacoConfig)
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
onMonacoLoad
property of AngularMonacoEditorConfig
can be used to configure JSON default.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms'; //import FormsModule to make ngModel attr work
import * as monaco from 'monaco-editor';
import { AngularMonacoEditorConfig, AngularMonacoEditorModule } from 'angular-monaco-editor';
import { AppComponent } from './app.component';
const monacoConfig: AngularMonacoEditorConfig = {
baseUrl: 'assets',
defaultOptions: { scrollBeyondLastLine: false },
onMonacoLoad: () => {
// console.log("moncaco: " + (<any>window).monaco);
const id = "foo.json";
monaco.languages.json.jsonDefaults.setDiagnosticsOptions({
validate: true,
schemas: [{
uri: "http://myserver/foo-schema.json",
fileMatch: [id],
schema: {
type: "object",
properties: {
p1: {
enum: [ "v1", "v2"]
},
p2: {
$ref: "http://myserver/bar-schema.json"
}
}
}
}]
});
}
};
@NgModule({
declarations: [
AppComponent
],
imports: [
FormsModule,
BrowserModule,
AngularMonacoEditorModule.forRoot(monacoConfig)
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
MIT © John Wang