2019-04-05 19:21:23 +02:00
|
|
|
import {Component, ViewEncapsulation, ElementRef, EventEmitter, Output} from '@angular/core';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'modal-alert',
|
|
|
|
template: `
|
|
|
|
<div [class]="(!isOpen)?'uk-modal ':'uk-modal uk-open uk-animation-fade'" uk-modal [open]="!isOpen" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
|
|
|
|
<div class="uk-modal-dialog uk-modal-body" role="">
|
|
|
|
<div class="uk-modal-title" [hidden]=!alertHeader>
|
2019-04-08 16:53:09 +02:00
|
|
|
<button class="uk-modal-close-default uk-float-right" (click)='cancel()' uk-close></button>
|
2017-12-19 13:53:46 +01:00
|
|
|
<h4 class="modal-title text-center" id="myModalLabel">{{alertTitle}}</h4>
|
|
|
|
</div>
|
|
|
|
<div class="uk-margin ">
|
|
|
|
<div [hidden]=!alertMessage>
|
|
|
|
{{message}}
|
|
|
|
</div>
|
2018-04-04 18:01:57 +02:00
|
|
|
<ng-content></ng-content>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
2019-04-08 14:43:04 +02:00
|
|
|
<div *ngIf="okButtonLeft" class="uk-text-right" [hidden]=!alertFooter>
|
2017-12-19 13:53:46 +01:00
|
|
|
<span [hidden]=!okButton >
|
|
|
|
<button class=" uk-button uk-button-default " (click)="ok()">{{okButtonText}}</button>
|
2019-04-05 19:21:23 +02:00
|
|
|
</span>
|
|
|
|
<span [hidden]=!cancelButton>
|
|
|
|
<button class=" uk-button uk-button-default" (click)="cancel()">{{cancelButtonText}}</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-04-08 14:43:04 +02:00
|
|
|
<div *ngIf="!okButtonLeft" class="uk-text-right" [hidden]=!alertFooter>
|
2019-04-05 19:21:23 +02:00
|
|
|
<span [hidden]=!cancelButton>
|
2019-04-08 14:43:04 +02:00
|
|
|
<button class="uk-button uk-button-default" (click)="cancel()">{{cancelButtonText}}</button>
|
2019-04-05 19:21:23 +02:00
|
|
|
</span>
|
|
|
|
<span [hidden]=!okButton >
|
2019-04-08 14:43:04 +02:00
|
|
|
<button class="uk-button uk-button-default" (click)="ok()">{{okButtonText}}</button>
|
2019-04-05 19:21:23 +02:00
|
|
|
</span>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
`,
|
|
|
|
encapsulation: ViewEncapsulation.None,
|
|
|
|
})
|
|
|
|
/**
|
|
|
|
* API to an open alert window.
|
|
|
|
*/
|
|
|
|
export class AlertModal{
|
|
|
|
/**
|
|
|
|
* Caption for the title.
|
|
|
|
*/
|
|
|
|
public alertTitle:string;
|
|
|
|
/**
|
|
|
|
* Describes if the alert contains Ok Button.
|
|
|
|
* The default Ok button will close the alert and emit the callback.
|
|
|
|
* Defaults to true.
|
|
|
|
*/
|
|
|
|
public okButton:boolean = true;
|
|
|
|
/**
|
|
|
|
* Caption for the OK button.
|
|
|
|
* Default: Ok
|
|
|
|
*/
|
|
|
|
public okButtonText:string= 'Ok';
|
|
|
|
/**
|
|
|
|
* Describes if the alert contains cancel Button.
|
|
|
|
* The default Cancelbutton will close the alert.
|
|
|
|
* Defaults to true.
|
|
|
|
*/
|
|
|
|
public cancelButton:boolean = true;
|
|
|
|
/**
|
|
|
|
* Caption for the Cancel button.
|
|
|
|
* Default: Cancel
|
|
|
|
*/
|
|
|
|
public cancelButtonText:string = 'Cancel';
|
|
|
|
/**
|
|
|
|
* if the alertMessage is true it will show the contentString inside alert body.
|
|
|
|
*/
|
|
|
|
public alertMessage:boolean = true;
|
|
|
|
/**
|
|
|
|
* Some message/content can be set in message which will be shown in alert body.
|
|
|
|
*/
|
|
|
|
public message:string;
|
|
|
|
/**
|
|
|
|
* if the value is true alert footer will be visible or else it will be hidden.
|
|
|
|
*/
|
|
|
|
public alertFooter:boolean= true;
|
|
|
|
/**
|
|
|
|
* shows alert header if the value is true.
|
|
|
|
*/
|
|
|
|
public alertHeader:boolean = true;
|
|
|
|
/**
|
|
|
|
* if the value is true alert will be visible or else it will be hidden.
|
|
|
|
*/
|
|
|
|
public isOpen:boolean=false;
|
2019-04-05 19:21:23 +02:00
|
|
|
|
|
|
|
public okButtonLeft: boolean = true;
|
2017-12-19 13:53:46 +01:00
|
|
|
/**
|
|
|
|
* Emitted when a ok button was clicked
|
|
|
|
* or when Ok method is called.
|
|
|
|
*/
|
|
|
|
@Output() public alertOutput:EventEmitter<any> = new EventEmitter();
|
|
|
|
constructor( public _elementRef: ElementRef){}
|
|
|
|
/**
|
|
|
|
* Opens a alert window creating backdrop.
|
|
|
|
*/
|
|
|
|
open(){
|
|
|
|
this.isOpen= true;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* ok method closes the modal and emits modalOutput.
|
|
|
|
*/
|
|
|
|
ok(){
|
|
|
|
this.isOpen = false;
|
|
|
|
this.alertOutput.emit(true);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* cancel method closes the moda.
|
|
|
|
*/
|
|
|
|
cancel(){
|
|
|
|
this.isOpen = false;
|
|
|
|
}
|
|
|
|
}
|