180 lines
5.9 KiB
JavaScript
180 lines
5.9 KiB
JavaScript
const notifs = await Service.import("notifications");
|
|
import icons from "../icons/index.js";
|
|
|
|
export default () => {
|
|
notifs.popupTimeout = 5000;
|
|
|
|
return Widget.Window({
|
|
name: "notifications-window",
|
|
class_name: "notifications-window",
|
|
layer: "top",
|
|
anchor: ["top", "right"],
|
|
monitor: 2,
|
|
exclusivity: "ignore",
|
|
child: Widget.Box({
|
|
class_name: "notification-card-container",
|
|
vertical: true,
|
|
setup: (self) => {
|
|
self.hook(notifs, () => {
|
|
if (notifs.dnd) {
|
|
return [];
|
|
}
|
|
|
|
const imageContainer = (notif) => {
|
|
if (notif.image !== undefined) {
|
|
return [
|
|
Widget.Box({
|
|
class_name: "notification-card-image-container",
|
|
hpack: "center",
|
|
vpack: "center",
|
|
vexpand: false,
|
|
child: Widget.Box({
|
|
hpack: "center",
|
|
vexpand: false,
|
|
class_name: "notification-card-image",
|
|
css: `background-image: url("${notif.image}")`,
|
|
}),
|
|
}),
|
|
];
|
|
}
|
|
|
|
return [];
|
|
};
|
|
|
|
const actionsContainer = (notif) => {
|
|
if (notif.actions !== undefined && notif.actions.length > 0) {
|
|
return [
|
|
Widget.Box({
|
|
class_name: "notification-card-actions",
|
|
hpack: "start",
|
|
children: notif.actions.map((action) => {
|
|
return Widget.Button({
|
|
class_name: "notification-action-buttons",
|
|
on_primary_click: () => {
|
|
notif.invoke(action.id);
|
|
},
|
|
child: Widget.Box({
|
|
hpack: "center",
|
|
children: [
|
|
Widget.Label({
|
|
class_name: "notification-action-buttons-label",
|
|
label: action.label,
|
|
}),
|
|
],
|
|
}),
|
|
});
|
|
}),
|
|
}),
|
|
];
|
|
}
|
|
|
|
return [];
|
|
};
|
|
|
|
const NotificationIcon = ({ app_entry, app_icon, app_name }) => {
|
|
let icon = icons.fallback.notification;
|
|
|
|
if (
|
|
Utils.lookUpIcon(app_name) ||
|
|
Utils.lookUpIcon(app_name.toLowerCase() || "")
|
|
)
|
|
icon = Utils.lookUpIcon(app_name)
|
|
? app_name
|
|
: Utils.lookUpIcon(app_name.toLowerCase())
|
|
? app_name.toLowerCase()
|
|
: "";
|
|
|
|
if (Utils.lookUpIcon(app_icon) && icon === "") icon = app_icon;
|
|
|
|
if (Utils.lookUpIcon(app_entry || "") && icon === "")
|
|
icon = app_entry || "";
|
|
|
|
return Widget.Box({
|
|
css: `
|
|
min-width: 2rem;
|
|
min-height: 2rem;
|
|
`,
|
|
child: Widget.Icon({
|
|
class_name: "notification-icon",
|
|
icon,
|
|
}),
|
|
});
|
|
};
|
|
|
|
return (self.children = notifs.popups.map((notif, index) => {
|
|
// FIX: Bottom part of notification gets cut of... need to find and fix culprit
|
|
return Widget.Box({
|
|
class_name: "notification-card",
|
|
vpack: "start",
|
|
children: [
|
|
...imageContainer(notif),
|
|
Widget.Box({
|
|
vpack: "start",
|
|
vertical: true,
|
|
class_name: "notification-card-content",
|
|
children: [
|
|
Widget.Box({
|
|
vertical: false,
|
|
children: [
|
|
Widget.Box({
|
|
class_name: "notification-card-header",
|
|
vpack: "start",
|
|
children: [
|
|
Widget.Label({
|
|
class_name: "notification-card-header-label",
|
|
vexpand: true,
|
|
max_width_chars: 21,
|
|
truncate: "end",
|
|
wrap: true,
|
|
label: notif["summary"],
|
|
}),
|
|
],
|
|
}),
|
|
Widget.Box({
|
|
class_name: "notification-card-header",
|
|
hexpand: true,
|
|
hpack: "end",
|
|
children: [NotificationIcon(notif)],
|
|
}),
|
|
],
|
|
}),
|
|
Widget.Box({
|
|
vpack: "start",
|
|
class_name: "notification-card-body",
|
|
children: [
|
|
Widget.Label({
|
|
hexpand: true,
|
|
use_markup: true,
|
|
xalign: 0,
|
|
justification: "left",
|
|
truncate: "end",
|
|
lines: 2,
|
|
max_width_chars: 25,
|
|
wrap: true,
|
|
class_name: "notification-card-body-label",
|
|
label: notif["body"],
|
|
}),
|
|
],
|
|
}),
|
|
...actionsContainer(notif),
|
|
],
|
|
}),
|
|
Widget.Button({
|
|
class_name: "close-notification-button",
|
|
on_primary_click: () => {
|
|
notifs.CloseNotification(notif.id);
|
|
},
|
|
child: Widget.Label({
|
|
label: "",
|
|
hpack: "center",
|
|
}),
|
|
}),
|
|
],
|
|
});
|
|
}));
|
|
});
|
|
},
|
|
}),
|
|
});
|
|
};
|