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.
103 lines
2.6 KiB
103 lines
2.6 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Sebastian Stehle. All rights r vbeserved
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';
|
|
import { timer } from 'rxjs';
|
|
|
|
import {
|
|
DialogModel,
|
|
DialogRequest,
|
|
DialogService,
|
|
fadeAnimation,
|
|
Notification,
|
|
StatefulComponent
|
|
} from '@app/framework/internal';
|
|
|
|
interface State {
|
|
dialogRequest?: DialogRequest | null;
|
|
|
|
notifications: Notification[];
|
|
}
|
|
|
|
@Component({
|
|
selector: 'sqx-dialog-renderer',
|
|
styleUrls: ['./dialog-renderer.component.scss'],
|
|
templateUrl: './dialog-renderer.component.html',
|
|
animations: [
|
|
fadeAnimation
|
|
],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class DialogRendererComponent extends StatefulComponent<State> implements OnInit {
|
|
@Input()
|
|
public position = 'bottomright';
|
|
|
|
public dialogView = new DialogModel();
|
|
|
|
constructor(changeDetector: ChangeDetectorRef,
|
|
private readonly dialogs: DialogService
|
|
) {
|
|
super(changeDetector, { notifications: [] });
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.takeOver(
|
|
this.dialogView.isOpen.subscribe(isOpen => {
|
|
if (!isOpen) {
|
|
this.finishRequest(false);
|
|
}
|
|
}));
|
|
|
|
this.takeOver(
|
|
this.dialogs.notifications.subscribe(notification => {
|
|
this.next(s => ({
|
|
...s,
|
|
notifications: [...s.notifications, notification]
|
|
}));
|
|
|
|
if (notification.displayTime > 0) {
|
|
this.takeOver(timer(notification.displayTime).subscribe(() => {
|
|
this.close(notification);
|
|
}));
|
|
}
|
|
}));
|
|
|
|
this.takeOver(
|
|
this.dialogs.dialogs
|
|
.subscribe(dialogRequest => {
|
|
this.cancel();
|
|
|
|
this.next(s => ({ ...s, dialogRequest }));
|
|
}));
|
|
}
|
|
|
|
public cancel() {
|
|
this.finishRequest(false);
|
|
|
|
this.dialogView.hide();
|
|
}
|
|
|
|
public confirm() {
|
|
this.finishRequest(true);
|
|
|
|
this.dialogView.hide();
|
|
}
|
|
|
|
private finishRequest(value: boolean) {
|
|
this.next(s => {
|
|
if (s.dialogRequest) {
|
|
s.dialogRequest.complete(value);
|
|
}
|
|
|
|
return { ...s, dialogRequest: null };
|
|
});
|
|
}
|
|
|
|
public close(notification: Notification) {
|
|
this.next(s => ({ ...s, notifications: s.notifications.filter(n => notification !== n) }));
|
|
}
|
|
}
|