allow closing notifications on click

This commit is contained in:
Géry Debongnie
2019-01-29 20:42:05 +01:00
parent 0bbeabd55c
commit 0b3dc0301e
4 changed files with 80 additions and 33 deletions
@@ -1,44 +1,21 @@
import {
NotificationManager,
INotification,
INotificationManager
} from "../../src/ts/services/notifications";
//------------------------------------------------------------------------------
// Setup and helpers
//------------------------------------------------------------------------------
function makeNotification(notif: Partial<INotification> = {}): INotification {
const defaultNotif = {
id: 1,
title: "title",
message: "message",
type: "notification",
sticky: false
};
return Object.assign(defaultNotif, notif);
}
//------------------------------------------------------------------------------
// Tests
//------------------------------------------------------------------------------
import { NotificationManager } from "../../src/ts/services/notifications";
test("can subscribe and add notification", () => {
let notified = false;
const notifications = new NotificationManager();
notifications.on("notification_added", {}, () => (notified = true));
expect(notified).toBe(false);
const id = notifications.add(makeNotification());
const id = notifications.add({ title: "test", message: "message" });
expect(notified).toBe(true);
expect(id).toBeDefined();
});
test("can close a notification", () => {
const notifications: INotificationManager = new NotificationManager();
const notifications = new NotificationManager();
let notified = false;
notifications.on("notification_removed", {}, () => (notified = true));
const id = notifications.add(makeNotification());
const id = notifications.add({ title: "test", message: "message" });
expect(notified).toBe(false);
notifications.close(id);
@@ -47,11 +24,11 @@ test("can close a notification", () => {
test("notifications closes themselves after a while", () => {
jest.useFakeTimers();
const notifications: INotificationManager = new NotificationManager();
const notifications = new NotificationManager();
let removed = false;
notifications.on("notification_removed", {}, () => (removed = true));
notifications.add(makeNotification());
notifications.add({ title: "test", message: "message" });
expect(setTimeout).toHaveBeenCalledTimes(1);
expect(removed).toBe(false);
@@ -61,11 +38,11 @@ test("notifications closes themselves after a while", () => {
test("sticky notifications do not close themselves after a while", () => {
jest.useFakeTimers();
const notifications: INotificationManager = new NotificationManager();
const notifications = new NotificationManager();
let removed = false;
notifications.on("notification_removed", {}, () => (removed = true));
notifications.add(makeNotification({ sticky: true }));
notifications.add({ title: "test", message: "message", sticky: true });
expect(setTimeout).toHaveBeenCalledTimes(0);
expect(removed).toBe(false);