mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
3.5 KiB
133 lines
3.5 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Sebastian Stehle. All rights reserved
|
|
*/
|
|
|
|
import { AfterViewInit, Component, forwardRef, ElementRef, ViewChild } from '@angular/core';
|
|
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
import { Subject } from 'rxjs';
|
|
|
|
import { ResourceLoaderService } from './../services/resource-loader.service';
|
|
|
|
declare var ace: any;
|
|
|
|
export const SQX_JSON_EDITOR_CONTROL_VALUE_ACCESSOR: any = {
|
|
provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => JsonEditorComponent), multi: true
|
|
};
|
|
|
|
@Component({
|
|
selector: 'sqx-json-editor',
|
|
styleUrls: ['./json-editor.component.scss'],
|
|
templateUrl: './json-editor.component.html',
|
|
providers: [SQX_JSON_EDITOR_CONTROL_VALUE_ACCESSOR]
|
|
})
|
|
export class JsonEditorComponent implements ControlValueAccessor, AfterViewInit {
|
|
private callChange = (v: any) => { /* NOOP */ };
|
|
private callTouched = () => { /* NOOP */ };
|
|
private valueChanged = new Subject();
|
|
private aceEditor: any;
|
|
private value: any;
|
|
private valueString: string;
|
|
private isDisabled = false;
|
|
|
|
@ViewChild('editor')
|
|
public editor: ElementRef;
|
|
|
|
constructor(
|
|
private readonly resourceLoader: ResourceLoaderService
|
|
) {
|
|
}
|
|
|
|
public writeValue(value: any) {
|
|
this.value = value;
|
|
|
|
try {
|
|
this.valueString = JSON.stringify(value);
|
|
} catch (e) {
|
|
this.valueString = '';
|
|
}
|
|
|
|
if (this.aceEditor) {
|
|
this.setValue(value);
|
|
}
|
|
}
|
|
|
|
public setDisabledState(isDisabled: boolean): void {
|
|
this.isDisabled = isDisabled;
|
|
|
|
if (this.aceEditor) {
|
|
this.aceEditor.setReadOnly(isDisabled);
|
|
}
|
|
}
|
|
|
|
public registerOnChange(fn: any) {
|
|
this.callChange = fn;
|
|
}
|
|
|
|
public registerOnTouched(fn: any) {
|
|
this.callTouched = fn;
|
|
}
|
|
|
|
public ngAfterViewInit() {
|
|
this.valueChanged.debounceTime(500)
|
|
.subscribe(() => {
|
|
this.changeValue();
|
|
});
|
|
|
|
this.resourceLoader.loadScript('https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.6/ace.js').then(() => {
|
|
this.aceEditor = ace.edit(this.editor.nativeElement);
|
|
|
|
this.aceEditor.getSession().setMode('ace/mode/javascript');
|
|
this.aceEditor.setReadOnly(this.isDisabled);
|
|
this.aceEditor.setFontSize(14);
|
|
|
|
this.setValue(this.value);
|
|
|
|
this.aceEditor.on('blur', () => {
|
|
this.changeValue();
|
|
this.callTouched();
|
|
});
|
|
|
|
this.aceEditor.on('change', () => {
|
|
this.valueChanged.next();
|
|
});
|
|
});
|
|
}
|
|
|
|
private changeValue() {
|
|
const isValid = this.aceEditor.getSession().getAnnotations().length === 0;
|
|
|
|
let newValue: any = null;
|
|
|
|
if (isValid) {
|
|
try {
|
|
newValue = JSON.parse(this.aceEditor.getValue());
|
|
} catch (e) {
|
|
newValue = null;
|
|
}
|
|
}
|
|
|
|
const newValueString = JSON.stringify(newValue);
|
|
|
|
if (this.valueString !== newValueString) {
|
|
this.callChange(newValue);
|
|
}
|
|
|
|
this.value = newValue;
|
|
this.valueString = newValueString;
|
|
}
|
|
|
|
private setValue(value: any) {
|
|
if (value) {
|
|
const jsonString = JSON.stringify(value, undefined, 4);
|
|
|
|
this.aceEditor.setValue(jsonString);
|
|
} else {
|
|
this.aceEditor.setValue('');
|
|
}
|
|
|
|
this.aceEditor.clearSelection();
|
|
}
|
|
}
|