Headless CMS and Content Managment Hub
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.
 
 
 
 
 

141 lines
3.8 KiB

/*
* 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<ContentDto>;
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<State, string[]> {
@Input()
public schemaIds: ReadonlyArray<string>;
@Input()
public language: AppLanguageDto;
@Input()
public languages: ReadonlyArray<AppLanguageDto>;
@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<ContentDto>) {
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<ContentDto>) {
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<ReadonlyArray<ContentDto>>) {
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;
}
}