From 073367bb651776648792046895b73c2f37e9f532 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 10 Jun 2022 15:14:49 +0200 Subject: [PATCH] Prefer using our icons for notifications --- client/src/app/app.component.html | 4 +--- client/src/app/app.component.ts | 12 ++++++++++++ client/src/sass/primeng-custom.scss | 8 ++++---- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html index 6969329e8..629c04e6b 100644 --- a/client/src/app/app.component.html +++ b/client/src/app/app.component.html @@ -53,9 +53,7 @@

{{ message.detail }}

- - - + diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index a60138af9..8fdab0c40 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts @@ -31,6 +31,7 @@ import { BroadcastMessageLevel, HTMLServerConfig, UserRole } from '@shared/model import { MenuService } from './core/menu/menu.service' import { POP_STATE_MODAL_DISMISS } from './helpers' import { InstanceService } from './shared/shared-instance' +import { GlobalIconName } from './shared/shared-icons' @Component({ selector: 'my-app', @@ -150,6 +151,17 @@ export class AppComponent implements OnInit, AfterViewInit { this.screenService.isBroadcastMessageDisplayed = false } + getNotificationIcon (message: { severity: 'success' | 'error' | 'info' }): GlobalIconName { + switch (message.severity) { + case 'error': + return 'cross' + case 'success': + return 'tick' + case 'info': + return 'help' + } + } + private initRouteEvents () { const eventsObs = this.router.events diff --git a/client/src/sass/primeng-custom.scss b/client/src/sass/primeng-custom.scss index a66e4485b..ef117ae34 100644 --- a/client/src/sass/primeng-custom.scss +++ b/client/src/sass/primeng-custom.scss @@ -927,19 +927,19 @@ p-toast { box-shadow: 0 2px 12px 0 rgba(0, 0 , 0, .1); overflow: hidden; - &.p-toast-message-success .glyphicon { + &.p-toast-message-success my-global-icon { color: #8BC34A !important; } - &.p-toast-message-error .glyphicon { + &.p-toast-message-error my-global-icon { color: #F44336 !important; } - &.p-toast-message-warn .glyphicon { + &.p-toast-message-warn my-global-icon { color: #F1680D !important; } - &.p-toast-message-info .glyphicon { + &.p-toast-message-info my-global-icon { color: #03A9F4 !important; } -- 2.41.0