42 lines
1.9 KiB
HTML
42 lines
1.9 KiB
HTML
<!--
|
|
|
|
Copyright © 2016-2025 The Thingsboard Authors
|
|
|
|
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.
|
|
|
|
-->
|
|
<div class="flex flex-row items-center justify-start"
|
|
[@showHideAnimation]="{value: animationState, params: animationParams}"
|
|
(@showHideAnimation.done)="onHideFinished($event)"
|
|
[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'">
|
|
<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"
|
|
[class.error-toast]="notification.type === 'error'"
|
|
[class.warn-toast]="notification.type === 'warn'"
|
|
[class.success-toast]="notification.type === 'success'"
|
|
[class.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>
|
|
</div>
|