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.
104 lines
2.8 KiB
104 lines
2.8 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';
|
|
import { ContentDto, interpolate, LocalStoreService, ModalModel, SchemaDto, Settings, StatefulComponent } from '@app/shared';
|
|
import { Observable } from 'rxjs';
|
|
import { take } from 'rxjs/operators';
|
|
|
|
interface State {
|
|
// The name of the selected preview config.
|
|
previewNameSelected?: string;
|
|
|
|
// All other preview configs.
|
|
previewNamesMore: ReadonlyArray<string>;
|
|
}
|
|
|
|
@Component({
|
|
selector: 'sqx-preview-button[content][schema]',
|
|
styleUrls: ['./preview-button.component.scss'],
|
|
templateUrl: './preview-button.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class PreviewButtonComponent extends StatefulComponent<State> implements OnInit {
|
|
@Input()
|
|
public confirm?: () => Observable<boolean>;
|
|
|
|
@Input()
|
|
public content: ContentDto;
|
|
|
|
@Input()
|
|
public schema: SchemaDto;
|
|
|
|
public dropdown = new ModalModel();
|
|
|
|
constructor(changeDetector: ChangeDetectorRef,
|
|
private readonly localStore: LocalStoreService,
|
|
) {
|
|
super(changeDetector, {
|
|
previewNamesMore: [],
|
|
});
|
|
}
|
|
|
|
public ngOnInit() {
|
|
let selectedName = this.localStore.get(this.configKey());
|
|
|
|
if (!selectedName || !this.schema.previewUrls[selectedName]) {
|
|
selectedName = Object.keys(this.schema.previewUrls)[0];
|
|
}
|
|
|
|
this.selectUrl(selectedName);
|
|
}
|
|
|
|
public follow(name?: string) {
|
|
if (name) {
|
|
this.selectUrl(name);
|
|
|
|
if (this.confirm) {
|
|
this.confirm().pipe(take(1))
|
|
.subscribe(confirmed => {
|
|
if (confirmed) {
|
|
this.navigateTo(name);
|
|
}
|
|
});
|
|
} else {
|
|
this.navigateTo(name);
|
|
}
|
|
}
|
|
|
|
this.dropdown.hide();
|
|
}
|
|
|
|
private navigateTo(name: string) {
|
|
const url = interpolate(this.schema.previewUrls[name], this.content, 'iv');
|
|
|
|
window.open(url, '_blank');
|
|
}
|
|
|
|
private selectUrl(selectedName: string) {
|
|
this.next(s => {
|
|
if (selectedName === s.previewNameSelected) {
|
|
return s;
|
|
}
|
|
|
|
const state = { ...s };
|
|
|
|
const keys = Object.keys(this.schema.previewUrls);
|
|
|
|
state.previewNameSelected = selectedName;
|
|
state.previewNamesMore = keys.removed(selectedName).sorted();
|
|
|
|
this.localStore.set(this.configKey(), selectedName);
|
|
|
|
return state;
|
|
});
|
|
}
|
|
|
|
private configKey() {
|
|
return Settings.Local.SCHEMA_PREVIEW(this.schema.id);
|
|
}
|
|
}
|
|
|