mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Add `Notification.getHistory()` which returns a `Promise<Notification[]>` of all delivered notifications still present in Notification Center. Each returned Notification is a live object connected to the corresponding delivered notification — interaction events (click, reply, action, close) will fire on these objects, enabling apps to re-attach event handlers after a restart. Key implementation details: - Queries UNUserNotificationCenter's getDeliveredNotifications API - Creates live Notification objects with populated id, groupId, title, subtitle, and body properties from what macOS provides - Registers each object with the presenter via Restore() so the NotificationCenterDelegate routes events correctly - Restored notifications use is_restored_ flag to prevent removal from Notification Center when the JS object is garbage collected - Requires code-signed builds (unsigned builds resolve with empty array) Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_PRESENTER_H_
|
|
#define ELECTRON_SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_PRESENTER_H_
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "base/functional/callback.h"
|
|
#include "base/memory/weak_ptr.h"
|
|
#include "shell/browser/notifications/notification.h"
|
|
|
|
namespace electron {
|
|
|
|
class NotificationDelegate;
|
|
|
|
class NotificationPresenter {
|
|
public:
|
|
static std::unique_ptr<NotificationPresenter> Create();
|
|
|
|
virtual ~NotificationPresenter();
|
|
|
|
using GetDeliveredNotificationsCallback =
|
|
base::OnceCallback<void(std::vector<NotificationInfo>)>;
|
|
|
|
base::WeakPtr<Notification> CreateNotification(
|
|
NotificationDelegate* delegate,
|
|
const std::string& notification_id);
|
|
void CloseNotificationWithId(const std::string& notification_id);
|
|
|
|
virtual void GetDeliveredNotifications(
|
|
GetDeliveredNotificationsCallback callback);
|
|
|
|
std::set<Notification*> notifications() const { return notifications_; }
|
|
|
|
// disable copy
|
|
NotificationPresenter(const NotificationPresenter&) = delete;
|
|
NotificationPresenter& operator=(const NotificationPresenter&) = delete;
|
|
|
|
protected:
|
|
NotificationPresenter();
|
|
virtual Notification* CreateNotificationObject(
|
|
NotificationDelegate* delegate) = 0;
|
|
|
|
private:
|
|
friend class Notification;
|
|
|
|
void RemoveNotification(Notification* notification);
|
|
|
|
std::set<Notification*> notifications_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_PRESENTER_H_
|