[AAE-4529] Refactor Notification History Component (#6620)

* [AAE-4529] Refactor Notification History Component

* Improve code

* Add maxNotifications

* More changes

* Add documentation

* Rebase branch

* Fix build

* Update notification-history.component.md

* Fix e2e tests

Co-authored-by: Eugenio Romano <eromano@users.noreply.github.com>
This commit is contained in:
davidcanonieto
2021-02-08 16:12:53 +01:00
committed by GitHub
parent 7c1efe48c4
commit 94ec7d06a7
15 changed files with 374 additions and 98 deletions

View File

@@ -18,12 +18,15 @@
export enum NOTIFICATION_TYPE {
INFO = 'info',
WARN = 'warning',
ERROR = 'error'
ERROR = 'error',
RECURSIVE = 'recursive'
}
export interface NotificationInitiator {
key: string | Symbol;
displayName: string;
firstName?: string;
lastName?: string;
extra?: any;
}
@@ -32,4 +35,7 @@ export interface NotificationModel {
initiator: NotificationInitiator;
datetime: Date;
messages: string[];
icon?: string;
clickCallBack?: any;
args?: any;
}