display notifications instantly (imperative way)

This commit is contained in:
Géry Debongnie
2019-02-18 11:51:01 +01:00
parent efc5e3a1d4
commit 5b68b396ad
6 changed files with 60 additions and 60 deletions
+12 -10
View File
@@ -12,14 +12,19 @@ export interface INotification {
sticky: boolean;
}
export type NotificationEvent = "notifications_updated";
export type Callback = (notifs: INotification[]) => void;
export interface INotificationManager {
add(notif: Partial<INotification>): number;
close(id: number): void;
on(event: NotificationEvent, owner: any, callback: Callback): void;
on(
event: "notification_added",
owner: any,
callback: (notif: INotification) => void
): void;
on(
event: "notification_closed",
owner: any,
callback: (id: number) => void
): void;
}
//------------------------------------------------------------------------------
@@ -28,7 +33,6 @@ export interface INotificationManager {
export class NotificationManager extends Bus implements INotificationManager {
nextID = 1;
notifications: INotification[] = [];
add(notif: Partial<INotification>): number {
const id = this.nextID++;
@@ -39,15 +43,13 @@ export class NotificationManager extends Bus implements INotificationManager {
sticky: false
};
const notification = Object.assign(defaultVals, notif, { id });
this.notifications.push(notification);
this.trigger("notifications_updated", this.notifications);
this.trigger("notification_added", notification);
if (!notification.sticky) {
setTimeout(() => this.close(id), 2500);
}
return id;
}
close(id: number) {
this.notifications = this.notifications.filter(n => n.id !== id);
this.trigger("notifications_updated", this.notifications);
this.trigger("notification_closed", id);
}
}
+12 -7
View File
@@ -1,4 +1,3 @@
import { INotification } from "../core/notifications";
import { Query } from "../core/router";
import { debounce } from "../core/utils";
import { ActionStack } from "../services/action_manager";
@@ -37,7 +36,6 @@ export interface Props {
}
interface State {
notifications: INotification[];
stack: ActionStack;
inHome: boolean;
currentApp: MenuItem | null;
@@ -49,15 +47,16 @@ interface State {
export class Root extends Widget<Props, State> {
template = "web.web_client";
widgets = { Navbar, Notification, HomeMenu, ActionContainer };
widgets = { Navbar, HomeMenu, ActionContainer };
state: State = {
notifications: [],
stack: [],
inHome: false,
currentApp: null
};
notifications: { [id: number]: Notification } = {};
constructor(env: Env, props: Props) {
super(env, props);
const query = this.env.router.getQuery();
@@ -69,9 +68,15 @@ export class Root extends Widget<Props, State> {
}
mounted() {
// notifications
this.env.notifications.on("notifications_updated", this, notifs =>
this.updateState({ notifications: notifs })
);
this.env.notifications.on("notification_added", this, notif => {
const notification = new Notification(this, notif);
this.notifications[notif.id] = notification;
notification.mount(<any>this.refs.notification_container);
});
this.env.notifications.on("notification_closed", this, id => {
this.notifications[id].destroy();
delete this.notifications[id];
});
// loading indicator
this.env.ajax.on("rpc_status", this, status => {
+1 -5
View File
@@ -9,11 +9,7 @@
<t t-else="1">
<t t-widget="ActionContainer" t-props="{stack:state.stack}" t-keep-alive="1"/>
</t>
<div class="o_notification_container">
<t t-foreach="state.notifications" t-as="notif">
<t t-widget="Notification" t-props="notif"/>
</t>
</div>
<div class="o_notification_container" t-ref="notification_container"/>
<div class="o_loading d-none" t-ref="loading_indicator">Loading</div>
</div>
+21 -20
View File
@@ -1,54 +1,55 @@
import {
NotificationManager,
INotification
} from "../../src/ts/core/notifications";
import { NotificationManager } from "../../src/ts/core/notifications";
test("can subscribe and add notification", () => {
let notifs: INotification[] = [];
let n = 0;
const notifications = new NotificationManager();
notifications.on("notifications_updated", {}, n => (notifs = n));
expect(notifs.length).toBe(0);
notifications.on("notification_added", null, () => n++);
notifications.on("notification_closed", null, () => n--);
expect(n).toBe(0);
const id = notifications.add({ title: "test", message: "message" });
expect(notifs.length).toBe(1);
expect(n).toBe(1);
expect(id).toBeDefined();
});
test("can close a notification", () => {
let notifs: INotification[] = [];
let n = 0;
const notifications = new NotificationManager();
notifications.on("notifications_updated", {}, n => (notifs = n));
notifications.on("notification_added", null, () => n++);
notifications.on("notification_closed", null, () => n--);
const id = notifications.add({ title: "test", message: "message" });
expect(notifs.length).toBe(1);
expect(n).toBe(1);
notifications.close(id);
expect(notifs.length).toBe(0);
expect(n).toBe(0);
});
test("notifications closes themselves after a while", () => {
jest.useFakeTimers();
let notifs: INotification[] = [];
let n = 0;
const notifications = new NotificationManager();
notifications.on("notifications_updated", {}, n => (notifs = n));
notifications.on("notification_added", null, () => n++);
notifications.on("notification_closed", null, () => n--);
notifications.add({ title: "test", message: "message" });
expect(setTimeout).toHaveBeenCalledTimes(1);
expect(notifs.length).toBe(1);
expect(n).toBe(1);
jest.runAllTimers();
expect(notifs.length).toBe(0);
expect(n).toBe(0);
});
test("sticky notifications do not close themselves after a while", () => {
jest.useFakeTimers();
let notifs: INotification[] = [];
let n = 0;
const notifications = new NotificationManager();
notifications.on("notifications_updated", {}, n => (notifs = n));
notifications.on("notification_added", null, () => n++);
notifications.on("notification_closed", null, () => n--);
notifications.add({ title: "test", message: "message", sticky: true });
expect(setTimeout).toHaveBeenCalledTimes(0);
expect(notifs.length).toBe(1);
expect(n).toBe(1);
jest.runAllTimers();
expect(notifs.length).toBe(1);
expect(n).toBe(1);
});
@@ -28,9 +28,7 @@ exports[`can be rendered (in home menu) 1`] = `
</div>
</div>
<div class=\\"o_notification_container\\">
</div>
<div class=\\"o_notification_container\\"></div>
<div class=\\"o_loading d-none\\">Loading</div>
</div>"
`;
@@ -104,9 +102,7 @@ exports[`if url has action_id, will render action and navigate to proper menu_id
<div class=\\"o_content\\"></div>
<div class=\\"o_notification_container\\">
</div>
<div class=\\"o_notification_container\\"></div>
<div class=\\"o_loading\\">Loading</div>
</div>"
`;
@@ -171,9 +167,7 @@ exports[`start with no action => clicks on client action => discuss is rendered
<button>Add sticky notif</button>
</div></div>
<div class=\\"o_notification_container\\">
</div>
<div class=\\"o_notification_container\\"></div>
<div class=\\"o_loading d-none\\">Loading</div>
</div>"
`;
+11 -9
View File
@@ -47,21 +47,23 @@ test("can be rendered", async () => {
});
test("can be closed by clicking on it (if sticky)", async () => {
let notifs: INotification[] = [];
env.notifications.on(
"notifications_updated",
null,
_notifs => (notifs = _notifs)
);
let n = 0;
let notif;
env.notifications.on("notification_added", null, _notif => {
n++;
notif = _notif;
});
env.notifications.on("notification_closed", null, () => n--);
env.notifications.add({
title: "title",
message: "message",
sticky: true
});
const navbar = new Notification(env, notifs[0]);
const navbar = new Notification(env, notif);
await navbar.mount(fixture);
expect(notifs.length).toBe(1);
expect(n).toBe(1);
(<any>fixture.getElementsByClassName("o_close")[0]).click();
expect(notifs.length).toBe(0);
expect(n).toBe(0);
});