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.
70 lines
2.1 KiB
70 lines
2.1 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, Component, Input, OnChanges, SimpleChanges } from '@angular/core';
|
|
import { AppLanguageDto, ComponentContentsState, ContentDto, QuerySynchronizer, Router2State } from '@app/shared';
|
|
|
|
@Component({
|
|
selector: 'sqx-content-references[content][language][languages]',
|
|
styleUrls: ['./content-references.component.scss'],
|
|
templateUrl: './content-references.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
providers: [
|
|
Router2State, ComponentContentsState,
|
|
],
|
|
})
|
|
export class ContentReferencesComponent implements OnChanges {
|
|
@Input()
|
|
public content: ContentDto;
|
|
|
|
@Input()
|
|
public language: AppLanguageDto;
|
|
|
|
@Input()
|
|
public languages: ReadonlyArray<AppLanguageDto>;
|
|
|
|
@Input()
|
|
public mode: 'references' | 'referencing' = 'references';
|
|
|
|
constructor(
|
|
public readonly contentsRoute: Router2State,
|
|
public readonly contentsState: ComponentContentsState,
|
|
) {
|
|
}
|
|
|
|
public ngOnChanges(changes: SimpleChanges) {
|
|
if (changes['content'] || changes['mode']) {
|
|
this.contentsState.schema = { name: this.content.schemaName };
|
|
|
|
const initial =
|
|
this.contentsRoute.mapTo(this.contentsState)
|
|
.withPaging('contents', 10)
|
|
.withSynchronizer(QuerySynchronizer.INSTANCE)
|
|
.getInitial();
|
|
|
|
if (this.mode === 'references') {
|
|
this.contentsState.loadReference(this.content.id, initial);
|
|
} else {
|
|
this.contentsState.loadReferencing(this.content.id, initial);
|
|
}
|
|
|
|
this.contentsRoute.listen();
|
|
}
|
|
}
|
|
|
|
public validate() {
|
|
this.contentsState.validate(this.contentsState.snapshot.contents);
|
|
}
|
|
|
|
public publish() {
|
|
this.contentsState.changeManyStatus(this.contentsState.snapshot.contents.filter(x => x.canPublish), 'Published');
|
|
}
|
|
|
|
public trackByContent(_index: number, content: ContentDto) {
|
|
return content.id;
|
|
}
|
|
}
|
|
|