Anthony Rodriguez
d0466f96da
commit75cf6a4d67
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Fri Oct 11 15:34:14 2024 +0200 home/programs/niri: use gtk portals for most things, and gnome for screencast commit5ccb424079
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 21:19:33 2024 +0200 home/programs/niri: add play/pause, add settings button on fn key f12 commit8b7164739d
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:32:40 2024 +0200 home/programs/niri: replace desktop-portal-gtk with gnome commitfe40c6c72c
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:31 2024 +0200 home/programs/niri: add xdg-desktop-portal-gtk commit74b7df1245
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:14 2024 +0200 home/programs: add fractal commit3773095069
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:05 2024 +0200 home/programs/gtk: use color-scheme for gtk4.0 commit8fef768f4f
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Wed Oct 9 19:22:43 2024 +0200 system/services/regreet: ensure that regreet starts dbus session commitfcd88bfa8e
Author: Anthony Rodriguez <anthony@nezia.dev> Date: Wed Oct 9 19:22:20 2024 +0200 repo: implement ags Implement ags, a wayland bar / GTK shell. Also added a few dependencies required for it to work properly.
124 lines
3.1 KiB
JavaScript
124 lines
3.1 KiB
JavaScript
const notifications = await Service.import("notifications");
|
|
|
|
/** @param {import('resource:///com/github/Aylur/ags/service/notifications.js').Notification} n */
|
|
function NotificationIcon({ app_entry, app_icon, image }) {
|
|
if (image) {
|
|
return Widget.Box({
|
|
css:
|
|
`background-image: url("${image}");` +
|
|
"background-size: contain;" +
|
|
"background-repeat: no-repeat;" +
|
|
"background-position: center;",
|
|
});
|
|
}
|
|
|
|
let icon = "dialog-information-symbolic";
|
|
if (Utils.lookUpIcon(app_icon)) icon = app_icon;
|
|
|
|
if (app_entry && Utils.lookUpIcon(app_entry)) icon = app_entry;
|
|
|
|
return Widget.Box({
|
|
child: Widget.Icon(icon),
|
|
});
|
|
}
|
|
|
|
/** @param {import('resource:///com/github/Aylur/ags/service/notifications.js').Notification} n */
|
|
function Notification(n) {
|
|
const icon = Widget.Box({
|
|
vpack: "start",
|
|
class_name: "icon",
|
|
child: NotificationIcon(n),
|
|
});
|
|
|
|
const title = Widget.Label({
|
|
class_name: "title",
|
|
xalign: 0,
|
|
justification: "left",
|
|
hexpand: true,
|
|
max_width_chars: 24,
|
|
truncate: "end",
|
|
wrap: true,
|
|
label: n.summary,
|
|
use_markup: true,
|
|
});
|
|
|
|
const body = Widget.Label({
|
|
class_name: "body",
|
|
hexpand: true,
|
|
use_markup: true,
|
|
xalign: 0,
|
|
justification: "left",
|
|
label: n.body,
|
|
wrap: true,
|
|
});
|
|
|
|
const actions = Widget.Box({
|
|
class_name: "actions",
|
|
children: n.actions.map(({ id, label }) =>
|
|
Widget.Button({
|
|
class_name: "action-button",
|
|
on_clicked: () => {
|
|
n.invoke(id);
|
|
n.dismiss();
|
|
},
|
|
hexpand: true,
|
|
child: Widget.Label(label),
|
|
}),
|
|
),
|
|
});
|
|
|
|
return Widget.EventBox(
|
|
{
|
|
attribute: { id: n.id },
|
|
on_primary_click: n.dismiss,
|
|
},
|
|
Widget.Box(
|
|
{
|
|
class_name: `notification ${n.urgency}`,
|
|
vertical: true,
|
|
},
|
|
Widget.Box([icon, Widget.Box({ vertical: true }, title, body)]),
|
|
actions,
|
|
),
|
|
);
|
|
}
|
|
|
|
export function NotificationPopups(monitor = 0) {
|
|
const list = Widget.Box({
|
|
vertical: true,
|
|
children: notifications.popups.map(Notification),
|
|
});
|
|
|
|
function onNotified(_, /** @type {number} */ id) {
|
|
const n = notifications.getNotification(id);
|
|
if (n) list.children = [Notification(n), ...list.children];
|
|
}
|
|
|
|
function onDismissed(_, /** @type {number} */ id) {
|
|
list.children.find((n) => n.attribute.id === id)?.destroy();
|
|
}
|
|
|
|
list
|
|
.hook(notifications, onNotified, "notified")
|
|
.hook(notifications, onDismissed, "dismissed");
|
|
|
|
return Widget.Window({
|
|
monitor,
|
|
name: `notifications${monitor}`,
|
|
class_name: "notification-popups",
|
|
anchor: ["top", "right"],
|
|
child: Widget.Box({
|
|
css: "min-width: 2px; min-height: 2px;",
|
|
class_name: "notifications",
|
|
vertical: true,
|
|
child: list,
|
|
|
|
/** this is a simple one liner that could be used instead of
|
|
hooking into the 'notified' and 'dismissed' signals.
|
|
but its not very optimized becuase it will recreate
|
|
the whole list everytime a notification is added or dismissed */
|
|
// children: notifications.bind('popups')
|
|
// .as(popups => popups.map(Notification))
|
|
}),
|
|
});
|
|
}
|