mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-24 03:11:03 +00:00
feat: add local notifications management and UI integration
This commit is contained in:
@@ -15,6 +15,7 @@ import type {
|
||||
GameAchievement,
|
||||
Theme,
|
||||
FriendRequestSync,
|
||||
NotificationSync,
|
||||
ShortcutLocation,
|
||||
AchievementCustomNotificationPosition,
|
||||
AchievementNotificationInfo,
|
||||
@@ -507,6 +508,15 @@ contextBridge.exposeInMainWorld("electron", {
|
||||
return () =>
|
||||
ipcRenderer.removeListener("on-sync-friend-requests", listener);
|
||||
},
|
||||
onSyncNotificationCount: (cb: (notification: NotificationSync) => void) => {
|
||||
const listener = (
|
||||
_event: Electron.IpcRendererEvent,
|
||||
notification: NotificationSync
|
||||
) => cb(notification);
|
||||
ipcRenderer.on("on-sync-notification-count", listener);
|
||||
return () =>
|
||||
ipcRenderer.removeListener("on-sync-notification-count", listener);
|
||||
},
|
||||
updateFriendRequest: (userId: string, action: FriendRequestAction) =>
|
||||
ipcRenderer.invoke("updateFriendRequest", userId, action),
|
||||
|
||||
@@ -550,6 +560,26 @@ contextBridge.exposeInMainWorld("electron", {
|
||||
/* Notifications */
|
||||
publishNewRepacksNotification: (newRepacksCount: number) =>
|
||||
ipcRenderer.invoke("publishNewRepacksNotification", newRepacksCount),
|
||||
getLocalNotifications: () => ipcRenderer.invoke("getLocalNotifications"),
|
||||
getLocalNotificationsCount: () =>
|
||||
ipcRenderer.invoke("getLocalNotificationsCount"),
|
||||
markLocalNotificationRead: (id: string) =>
|
||||
ipcRenderer.invoke("markLocalNotificationRead", id),
|
||||
markAllLocalNotificationsRead: () =>
|
||||
ipcRenderer.invoke("markAllLocalNotificationsRead"),
|
||||
deleteLocalNotification: (id: string) =>
|
||||
ipcRenderer.invoke("deleteLocalNotification", id),
|
||||
clearAllLocalNotifications: () =>
|
||||
ipcRenderer.invoke("clearAllLocalNotifications"),
|
||||
onLocalNotificationCreated: (cb: (notification: unknown) => void) => {
|
||||
const listener = (
|
||||
_event: Electron.IpcRendererEvent,
|
||||
notification: unknown
|
||||
) => cb(notification);
|
||||
ipcRenderer.on("on-local-notification-created", listener);
|
||||
return () =>
|
||||
ipcRenderer.removeListener("on-local-notification-created", listener);
|
||||
},
|
||||
onAchievementUnlocked: (
|
||||
cb: (
|
||||
position?: AchievementCustomNotificationPosition,
|
||||
|
||||
Reference in New Issue
Block a user