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.
89 lines
2.2 KiB
89 lines
2.2 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { Component, ElementRef, Input, OnChanges, SimpleChanges, ViewChild } from '@angular/core';
|
|
import { AbstractControl } from '@angular/forms';
|
|
import { AbstractContentForm, AppLanguageDto, EditContentForm, FieldDto, hasNoValue$, MathHelper, Types } from '@app/shared';
|
|
import { Observable } from 'rxjs';
|
|
|
|
@Component({
|
|
selector: 'sqx-field-editor[form][formContext][formLevel][formModel][language][languages]',
|
|
styleUrls: ['./field-editor.component.scss'],
|
|
templateUrl: './field-editor.component.html',
|
|
})
|
|
export class FieldEditorComponent implements OnChanges {
|
|
public readonly uniqueId = MathHelper.guid();
|
|
|
|
@Input()
|
|
public form!: EditContentForm;
|
|
|
|
@Input()
|
|
public formContext!: any;
|
|
|
|
@Input()
|
|
public formLevel!: number;
|
|
|
|
@Input()
|
|
public formModel!: AbstractContentForm<FieldDto, AbstractControl>;
|
|
|
|
@Input()
|
|
public language!: AppLanguageDto;
|
|
|
|
@Input()
|
|
public languages!: ReadonlyArray<AppLanguageDto>;
|
|
|
|
@Input()
|
|
public index: number | null | undefined;
|
|
|
|
@Input()
|
|
public canUnset?: boolean | null;
|
|
|
|
@Input()
|
|
public displaySuffix = '';
|
|
|
|
@ViewChild('editor', { static: false })
|
|
public editor!: ElementRef;
|
|
|
|
public isEmpty?: Observable<boolean>;
|
|
public isFullscreen = false;
|
|
|
|
public get field() {
|
|
return this.formModel.field;
|
|
}
|
|
|
|
public get fieldForm() {
|
|
return this.formModel.form;
|
|
}
|
|
|
|
public ngOnChanges(changes: SimpleChanges) {
|
|
if (changes['formModel']) {
|
|
this.isEmpty = hasNoValue$(this.formModel.form);
|
|
}
|
|
}
|
|
|
|
public reset() {
|
|
if (this.editor) {
|
|
const nativeElement = this.editor.nativeElement;
|
|
|
|
if (nativeElement && Types.isFunction(nativeElement['reset'])) {
|
|
nativeElement['reset']();
|
|
}
|
|
|
|
if (this.editor && Types.isFunction(this.editor['reset'])) {
|
|
this.editor['reset']();
|
|
}
|
|
}
|
|
}
|
|
|
|
public toggleFullscreen() {
|
|
this.isFullscreen = !this.isFullscreen;
|
|
}
|
|
|
|
public unset() {
|
|
this.formModel.unset();
|
|
}
|
|
}
|
|
|