thingsboard/ui-ngx/src/app/shared/components/notification/notification.component.ts

149 lines
4.6 KiB
TypeScript
Raw Normal View History

2023-01-20 15:08:44 +02:00
///
/// Copyright © 2016-2023 The Thingsboard Authors
2023-01-20 15:08:44 +02: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.
///
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
2023-02-09 12:31:06 +02:00
import {
ActionButtonLinkType,
2023-02-09 12:31:06 +02:00
AlarmSeverityNotificationColors,
Notification,
NotificationStatus,
2023-02-09 12:31:06 +02:00
NotificationType,
NotificationTypeIcons
} from '@shared/models/notification.models';
import { UtilsService } from '@core/services/utils.service';
import { Router } from '@angular/router';
2023-02-09 12:31:06 +02:00
import { alarmSeverityTranslations } from '@shared/models/alarm.models';
2023-02-06 13:31:00 +02:00
import * as tinycolor_ from 'tinycolor2';
import { StateObject } from '@core/api/widget-api.models';
import { objToBase64URI } from '@core/utils';
import { coerceBoolean } from '@shared/decorators/coerce-boolean';
2023-01-20 15:08:44 +02:00
@Component({
selector: 'tb-notification',
templateUrl: './notification.component.html',
styleUrls: ['./notification.component.scss']
})
export class NotificationComponent implements OnInit {
2023-01-20 15:08:44 +02:00
@Input()
notification: Notification;
@Input()
onClose: () => void;
2023-01-20 15:08:44 +02:00
@Output()
markAsRead = new EventEmitter<string>();
@Input()
@coerceBoolean()
preview = false;
showIcon = false;
showButton = false;
buttonLabel = '';
hideMarkAsReadButton = false;
2023-02-06 13:31:00 +02:00
tinycolor = tinycolor_;
notificationType = NotificationType;
notificationTypeIcons = NotificationTypeIcons;
alarmSeverityTranslations = alarmSeverityTranslations;
currentDate = Date.now();
constructor(
private utils: UtilsService,
private router: Router
) {
}
ngOnInit() {
this.showIcon = this.notification.additionalConfig?.icon?.enabled;
this.showButton = this.notification.additionalConfig?.actionButtonConfig?.enabled;
this.hideMarkAsReadButton = this.notification.status === NotificationStatus.READ;
if (this.showButton) {
this.buttonLabel = this.utils.customTranslation(this.notification.additionalConfig.actionButtonConfig.text,
this.notification.additionalConfig.actionButtonConfig.text);
}
2023-01-20 15:08:44 +02:00
}
markRead($event: Event) {
if ($event) {
$event.stopPropagation();
}
if (!this.preview) {
this.markAsRead.next(this.notification.id.id);
}
}
navigate($event: Event) {
if ($event) {
$event.stopPropagation();
}
if (!this.preview) {
let link: string;
if (this.notification.additionalConfig.actionButtonConfig.linkType === ActionButtonLinkType.DASHBOARD) {
let state = null;
if (this.notification.additionalConfig.actionButtonConfig.dashboardState) {
const stateObject: StateObject = {};
if (this.notification.additionalConfig.actionButtonConfig.setEntityIdInState) {
stateObject.params = {
2023-03-14 16:37:05 +02:00
entityId: this.notification.info.stateEntityId ?? null
};
} else {
stateObject.params = {};
}
stateObject.id = this.notification.additionalConfig.actionButtonConfig.dashboardState;
state = objToBase64URI([ stateObject ]);
}
link = `/dashboards/${this.notification.additionalConfig.actionButtonConfig.dashboardId}`
if (state) {
link += `?state=${state}`;
}
} else {
link = this.notification.additionalConfig.actionButtonConfig.link;
}
if (link.startsWith('/')) {
this.router.navigateByUrl(this.router.parseUrl(link)).then(() => {
2023-02-09 12:31:06 +02:00
});
} else {
window.open(link, '_blank');
2023-02-09 12:31:06 +02:00
}
if (this.onClose) {
this.onClose();
}
}
2023-01-20 15:08:44 +02:00
}
2023-02-06 13:31:00 +02:00
alarmColorSeverity(alpha: number) {
2023-02-09 12:31:06 +02:00
return this.tinycolor(AlarmSeverityNotificationColors.get(this.notification.info.alarmSeverity)).setAlpha(alpha).toRgbString();
2023-02-06 13:31:00 +02:00
}
2023-02-07 17:31:01 +02:00
notificationColor(): string {
2023-02-09 12:31:06 +02:00
if (this.notification.type === NotificationType.ALARM) {
return AlarmSeverityNotificationColors.get(this.notification.info.alarmSeverity);
2023-02-06 13:31:00 +02:00
}
2023-02-07 17:31:01 +02:00
return 'transparent';
}
notificationIconColor(): object {
2023-02-09 12:31:06 +02:00
if (this.notification.type === NotificationType.ALARM) {
return {color: AlarmSeverityNotificationColors.get(this.notification.info.alarmSeverity)};
2023-02-07 17:31:01 +02:00
}
return null;
2023-02-06 13:31:00 +02:00
}
2023-01-20 15:08:44 +02:00
}