2023-10-20 23:11:21 -04:00
|
|
|
import { Notifications, Utils, Widget } from '../../imports.js';
|
2023-10-02 12:06:35 -04:00
|
|
|
const { Box, Revealer, Window } = Widget;
|
|
|
|
|
2023-10-20 23:11:21 -04:00
|
|
|
import GLib from 'gi://GLib';
|
|
|
|
|
2023-09-11 13:59:51 -04:00
|
|
|
import Notification from './base.js';
|
2023-10-02 12:06:35 -04:00
|
|
|
|
2023-09-11 13:59:51 -04:00
|
|
|
|
|
|
|
const Popups = () => Box({
|
2023-10-20 23:11:21 -04:00
|
|
|
vertical: true,
|
|
|
|
properties: [
|
|
|
|
['map', new Map()],
|
|
|
|
|
|
|
|
['dismiss', (box, id, force = false) => {
|
|
|
|
if (!id || !box._map.has(id) ||
|
|
|
|
box._map.get(id)._hovered && !force)
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
if (box._map.size - 1 === 0)
|
|
|
|
box.get_parent().reveal_child = false;
|
|
|
|
|
|
|
|
Utils.timeout(200, () => {
|
|
|
|
if (box._map.get(id)?.interval) {
|
|
|
|
box._map.get(id).interval.destroy();
|
|
|
|
box._map.get(id).interval = undefined;
|
|
|
|
}
|
|
|
|
box._map.get(id)?.destroy();
|
|
|
|
box._map.delete(id);
|
|
|
|
});
|
|
|
|
}],
|
|
|
|
|
|
|
|
['notify', (box, id) => {
|
|
|
|
if (!id || Notifications.dnd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (! Notifications.getNotification(id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
box._map.delete(id);
|
|
|
|
|
|
|
|
const notif = Notifications.getNotification(id);
|
|
|
|
box._map.set(id, Notification({
|
|
|
|
notif,
|
|
|
|
command: () => notif.dismiss(),
|
|
|
|
}));
|
|
|
|
|
|
|
|
box.children = Array.from(box._map.values()).reverse();
|
|
|
|
|
|
|
|
Utils.timeout(10, () => {
|
|
|
|
box.get_parent().revealChild = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
box._map.get(id).interval = Utils.interval(4500, () => {
|
|
|
|
if (!box._map.get(id)._hovered) {
|
|
|
|
box._map.get(id).child.setStyle(box._map.get(id).child._leftAnim1);
|
|
|
|
|
|
|
|
if (box._map.get(id).interval) {
|
|
|
|
GLib.source_remove(box._map.get(id).interval);
|
|
|
|
box._map.get(id).interval = undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
connections: [
|
|
|
|
[Notifications, (box, id) => box._notify(box, id), 'notified'],
|
|
|
|
[Notifications, (box, id) => box._dismiss(box, id), 'dismissed'],
|
|
|
|
[Notifications, (box, id) => box._dismiss(box, id, true), 'closed'],
|
|
|
|
],
|
2023-09-11 13:59:51 -04:00
|
|
|
});
|
|
|
|
|
2023-09-14 16:42:39 -04:00
|
|
|
const PopupList = ({ transition = 'none' } = {}) => Box({
|
2023-10-20 23:11:21 -04:00
|
|
|
className: 'notifications-popup-list',
|
|
|
|
style: 'padding: 1px',
|
|
|
|
children: [
|
|
|
|
Revealer({
|
|
|
|
transition,
|
|
|
|
child: Popups(),
|
|
|
|
}),
|
|
|
|
],
|
2023-09-11 13:59:51 -04:00
|
|
|
});
|
|
|
|
|
2023-10-16 18:11:19 -04:00
|
|
|
export default () => Window({
|
2023-10-20 23:11:21 -04:00
|
|
|
name: 'notifications',
|
|
|
|
anchor: ['top', 'left'],
|
|
|
|
child: PopupList(),
|
2023-09-11 13:59:51 -04:00
|
|
|
});
|