2019-08-09 19:13:18 +03:00
|
|
|
<!--
|
|
|
|
|
|
2025-02-25 09:39:16 +02:00
|
|
|
Copyright © 2016-2025 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-10-15 13:23:36 +03:00
|
|
|
<div class="flex flex-row items-center justify-start"
|
2020-06-26 17:02:41 +03:00
|
|
|
[@showHideAnimation]="{value: animationState, params: animationParams}"
|
|
|
|
|
(@showHideAnimation.done)="onHideFinished($event)"
|
2024-10-09 19:36:42 +03:00
|
|
|
[class.tb-toast]="!notification.modern"
|
|
|
|
|
[class.tb-modern-toast]="notification.modern"
|
|
|
|
|
[class.error-toast]="notification.type === 'error'"
|
|
|
|
|
[class.warn-toast]="notification.type === 'warn'"
|
|
|
|
|
[class.success-toast]="notification.type === 'success'"
|
|
|
|
|
[class.info-toast]="notification.type === 'info'">
|
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>
|
2024-10-09 19:36:42 +03:00
|
|
|
<div class="tb-modern-toast-panel"
|
|
|
|
|
[class.error-toast]="notification.type === 'error'"
|
|
|
|
|
[class.warn-toast]="notification.type === 'warn'"
|
|
|
|
|
[class.success-toast]="notification.type === 'success'"
|
|
|
|
|
[class.info-toast]="notification.type === 'info'">
|
2024-02-06 17:47:40 +02:00
|
|
|
<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>
|