2019-08-09 19:13:18 +03:00
|
|
|
<!--
|
|
|
|
|
|
2024-01-09 10:46:16 +02:00
|
|
|
Copyright © 2016-2024 The Thingsboard Authors
|
2019-08-09 19:13:18 +03:00
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
|
|
-->
|
2024-02-06 17:47:40 +02:00
|
|
|
<div fxLayout="row" fxLayoutAlign="start center"
|
2020-06-26 17:02:41 +03:00
|
|
|
[@showHideAnimation]="{value: animationState, params: animationParams}"
|
|
|
|
|
(@showHideAnimation.done)="onHideFinished($event)"
|
2019-08-09 19:13:18 +03:00
|
|
|
[ngClass]="{
|
2024-02-06 17:47:40 +02:00
|
|
|
'tb-toast': !notification.modern,
|
|
|
|
|
'tb-modern-toast': notification.modern,
|
|
|
|
|
'error-toast': notification.type === 'error',
|
|
|
|
|
'warn-toast': notification.type === 'warn',
|
|
|
|
|
'success-toast': notification.type === 'success',
|
|
|
|
|
'info-toast': notification.type === 'info'
|
2019-08-09 19:13:18 +03:00
|
|
|
}">
|
2024-02-06 17:47:40 +02:00
|
|
|
<ng-container *ngIf="!notification.modern; else modern">
|
|
|
|
|
<div class="toast-text" [innerHTML]="notification.message | safe: 'html'"></div>
|
|
|
|
|
<button #actionButton type="button" mat-button (click)="action($event)">{{ 'action.close' | translate }}</button>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-template #modern>
|
|
|
|
|
<div class="tb-modern-toast-panel" [ngClass]="{
|
|
|
|
|
'error-toast': notification.type === 'error',
|
|
|
|
|
'warn-toast': notification.type === 'warn',
|
|
|
|
|
'success-toast': notification.type === 'success',
|
|
|
|
|
'info-toast': notification.type === 'info'
|
|
|
|
|
}">
|
|
|
|
|
<div class="toast-text" [innerHTML]="notification.message | safe: 'html'"></div>
|
|
|
|
|
<button #actionButton class="tb-mat-20" mat-icon-button (click)="action($event)"><mat-icon>close</mat-icon></button>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
2019-08-09 19:13:18 +03:00
|
|
|
</div>
|