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.
69 lines
1.9 KiB
69 lines
1.9 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { defined, fadeAnimation, MessageBus, ModalModel, ResourceOwner, SchemaDto, SchemasState } from '@app/shared';
|
|
import { map } from 'rxjs/operators';
|
|
import { SchemaCloning } from './../messages';
|
|
|
|
@Component({
|
|
selector: 'sqx-schema-page',
|
|
styleUrls: ['./schema-page.component.scss'],
|
|
templateUrl: './schema-page.component.html',
|
|
animations: [
|
|
fadeAnimation,
|
|
],
|
|
})
|
|
export class SchemaPageComponent extends ResourceOwner implements OnInit {
|
|
public readonly exact = { exact: true };
|
|
|
|
public schema: SchemaDto;
|
|
public schemaTab = this.route.queryParams.pipe(map(x => x['tab'] || 'fields'));
|
|
|
|
public editOptionsDropdown = new ModalModel();
|
|
|
|
constructor(
|
|
public readonly schemasState: SchemasState,
|
|
private readonly route: ActivatedRoute,
|
|
private readonly router: Router,
|
|
private readonly messageBus: MessageBus,
|
|
) {
|
|
super();
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.own(
|
|
this.schemasState.selectedSchema.pipe(defined())
|
|
.subscribe(schema => {
|
|
this.schema = schema;
|
|
}));
|
|
}
|
|
|
|
public cloneSchema() {
|
|
this.messageBus.emit(new SchemaCloning(this.schema.export()));
|
|
}
|
|
|
|
public publish() {
|
|
this.schemasState.publish(this.schema).subscribe();
|
|
}
|
|
|
|
public unpublish() {
|
|
this.schemasState.unpublish(this.schema).subscribe();
|
|
}
|
|
|
|
public deleteSchema() {
|
|
this.schemasState.delete(this.schema)
|
|
.subscribe(() => {
|
|
this.back();
|
|
});
|
|
}
|
|
|
|
private back() {
|
|
this.router.navigate(['../'], { relativeTo: this.route });
|
|
}
|
|
}
|
|
|