[Notifications] Improve handling of centre
This commit is contained in:
parent
709af40296
commit
7ff986e7a6
@ -59,7 +59,11 @@ class Notifier implements Subscribable {
|
|||||||
private show ( id: number ) {
|
private show ( id: number ) {
|
||||||
this.set( id, Notification( {
|
this.set( id, Notification( {
|
||||||
notification: this.notifications.get( id )!,
|
notification: this.notifications.get( id )!,
|
||||||
onHoverLost: () => this.hide( id ),
|
onHoverLost: () => {
|
||||||
|
if ( !this.menuOpen ) {
|
||||||
|
this.hide( id );
|
||||||
|
}
|
||||||
|
},
|
||||||
setup: () => timeout( TIMEOUT_DELAY, () => {
|
setup: () => timeout( TIMEOUT_DELAY, () => {
|
||||||
if ( !this.menuOpen ) {
|
if ( !this.menuOpen ) {
|
||||||
this.hide( id );
|
this.hide( id );
|
||||||
@ -100,6 +104,9 @@ class Notifier implements Subscribable {
|
|||||||
this.hide( id );
|
this.hide( id );
|
||||||
this.notifications.get( id )?.dismiss();
|
this.notifications.get( id )?.dismiss();
|
||||||
this.notifications.delete( id );
|
this.notifications.delete( id );
|
||||||
|
if ( this.notifications.size == 0 ) {
|
||||||
|
this.menuOpen = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
openNotificationMenu () {
|
openNotificationMenu () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user