prevent duplicated notifications

This commit is contained in:
Sebastian 2023-07-20 17:02:50 -03:00
parent 535c04be5c
commit 8288413786
No known key found for this signature in database
GPG Key ID: 173909D1A5F66069

View File

@ -1,5 +1,5 @@
import { TranslatedString } from "@gnu-taler/taler-util"; import { TranslatedString } from "@gnu-taler/taler-util";
import { StateUpdater, useEffect, useState } from "preact/hooks"; import { useEffect, useState } from "preact/hooks";
import { memoryMap } from "../index.browser.js"; import { memoryMap } from "../index.browser.js";
export type NotificationMessage = ErrorNotification | InfoNotification; export type NotificationMessage = ErrorNotification | InfoNotification;
@ -15,7 +15,7 @@ interface InfoNotification {
title: TranslatedString; title: TranslatedString;
} }
const storage = memoryMap<NotificationMessage[]>(); const storage = memoryMap<Map<string, NotificationMessage>>();
const NOTIFICATION_KEY = "notification"; const NOTIFICATION_KEY = "notification";
export function notifyError( export function notifyError(
@ -23,20 +23,24 @@ export function notifyError(
description: TranslatedString | undefined, description: TranslatedString | undefined,
debug?: any, debug?: any,
) { ) {
const currentState: NotificationMessage[] = const currentState: Map<string, NotificationMessage> =
storage.get(NOTIFICATION_KEY) ?? []; storage.get(NOTIFICATION_KEY) ?? new Map();
const newState = currentState.concat({
type: "error", const notif = {
type: "error" as const,
title, title,
description, description,
debug, debug,
}); };
const newState = currentState.set(hash(notif), notif);
storage.set(NOTIFICATION_KEY, newState); storage.set(NOTIFICATION_KEY, newState);
} }
export function notifyInfo(title: TranslatedString) { export function notifyInfo(title: TranslatedString) {
const currentState: NotificationMessage[] = const currentState: Map<string, NotificationMessage> =
storage.get(NOTIFICATION_KEY) ?? []; storage.get(NOTIFICATION_KEY) ?? new Map();
const newState = currentState.concat({ type: "info", title });
const notif = { type: "info" as const, title };
const newState = currentState.set(hash(notif), notif);
storage.set(NOTIFICATION_KEY, newState); storage.set(NOTIFICATION_KEY, newState);
} }
@ -46,22 +50,48 @@ type Notification = {
}; };
export function useNotifications(): Notification[] { export function useNotifications(): Notification[] {
const [value, setter] = useState<NotificationMessage[]>([]); const [value, setter] = useState<Map<string, NotificationMessage>>(new Map());
useEffect(() => { useEffect(() => {
return storage.onUpdate(NOTIFICATION_KEY, () => { return storage.onUpdate(NOTIFICATION_KEY, () => {
const mem = storage.get(NOTIFICATION_KEY) ?? []; const mem = storage.get(NOTIFICATION_KEY) ?? new Map();
setter(mem); setter(mem);
}); });
}); });
return value.map((message, idx) => {
return Array.from(value.values()).map((message, idx) => {
return { return {
message, message,
remove: () => { remove: () => {
const mem = storage.get(NOTIFICATION_KEY) ?? []; const mem = storage.get(NOTIFICATION_KEY) ?? new Map();
const newState = Array.from(mem); const newState = new Map(mem);
newState.splice(idx, 1); newState.delete(hash(message));
storage.set(NOTIFICATION_KEY, newState); storage.set(NOTIFICATION_KEY, newState);
}, },
}; };
}); });
} }
function hashCode(str: string): string {
if (str.length === 0) return "0";
let hash = 0;
let chr;
for (let i = 0; i < str.length; i++) {
chr = str.charCodeAt(i);
hash = (hash << 5) - hash + chr;
hash |= 0; // Convert to 32bit integer
}
return hash.toString(16);
}
function hash(msg: NotificationMessage): string {
let str = (msg.type + ":" + msg.title) as string;
if (msg.type === "error") {
if (msg.description) {
str += ":" + msg.description;
}
if (msg.debug) {
str += ":" + msg.debug;
}
}
return hashCode(str);
}