/* * Squidex Headless CMS * * @license * Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved. */ import { CdkDragDrop } from '@angular/cdk/drag-drop'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, forwardRef, Input } from '@angular/core'; import { NG_VALUE_ACCESSOR } from '@angular/forms'; import { AppLanguageDto, AppsState, ContentDto, ContentsService, DialogModel, sorted, StatefulControlComponent, Types } from '@app/shared'; export const SQX_REFERENCES_EDITOR_CONTROL_VALUE_ACCESSOR: any = { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ReferencesEditorComponent), multi: true }; interface State { contentItems: ReadonlyArray; columnCount: number; } @Component({ selector: 'sqx-references-editor', styleUrls: ['./references-editor.component.scss'], templateUrl: './references-editor.component.html', providers: [SQX_REFERENCES_EDITOR_CONTROL_VALUE_ACCESSOR], changeDetection: ChangeDetectionStrategy.OnPush }) // tslint:disable-next-line: readonly-array export class ReferencesEditorComponent extends StatefulControlComponent { @Input() public schemaIds: ReadonlyArray; @Input() public language: AppLanguageDto; @Input() public languages: ReadonlyArray; @Input() public isCompact = false; @Input() public allowDuplicates = true; @Input() public columnCount = 0; public selectorDialog = new DialogModel(); constructor(changeDetector: ChangeDetectorRef, private readonly appsState: AppsState, private readonly contentsService: ContentsService ) { super(changeDetector, { contentItems: [], columnCount: 0 }); } public writeValue(obj: any) { if (Types.isArrayOfString(obj)) { if (!Types.isEquals(obj, this.snapshot.contentItems.map(x => x.id))) { const contentIds: string[] = obj; this.contentsService.getContentsByIds(this.appsState.appName, contentIds) .subscribe(dtos => { this.setContentItems(contentIds.map(id => dtos.items.find(c => c.id === id)!).filter(r => !!r)); if (this.snapshot.contentItems.length !== contentIds.length) { this.updateValue(); } }, () => { this.setContentItems([]); }); } } else { this.setContentItems([]); } } public setContentItems(contentItems: ReadonlyArray) { let columnCount = 1; for (const content of contentItems) { columnCount = Math.max(columnCount, content.referenceFields.length); } this.next(s => ({ ...s, contentItems, columnCount })); } public select(contents: ReadonlyArray) { this.setContentItems([...this.snapshot.contentItems, ...contents]); if (contents.length > 0) { this.updateValue(); } this.selectorDialog.hide(); } public remove(content: ContentDto) { if (content) { this.setContentItems(this.snapshot.contentItems.filter(x => x.id !== content.id)); this.updateValue(); } } public sort(event: CdkDragDrop>) { if (event) { this.setContentItems(sorted(event)); this.updateValue(); } } private updateValue() { const ids = this.snapshot.contentItems.map(x => x.id); if (ids.length === 0) { this.callChange(null); } else { this.callChange(ids); } this.callTouched(); } public trackByContent(index: number, content: ContentDto) { return content.id; } }