2024-10-16 23:56:05 -04:00
|
|
|
import { bind, timeout } from 'astal';
|
|
|
|
import { App, Gtk, Widget } from 'astal/gtk3';
|
|
|
|
|
2024-10-22 13:09:39 -04:00
|
|
|
import AstalNotifd from 'gi://AstalNotifd';
|
2024-10-16 23:56:05 -04:00
|
|
|
const Notifications = AstalNotifd.get_default();
|
|
|
|
|
|
|
|
import { Notification, HasNotifs } from './notification';
|
2024-10-30 18:53:15 -04:00
|
|
|
import NotifGestureWrapper from './gesture';
|
2024-10-16 23:56:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
const addNotif = (box: Widget.Box, notifObj: AstalNotifd.Notification) => {
|
|
|
|
if (notifObj) {
|
|
|
|
const NewNotif = Notification({
|
|
|
|
id: notifObj.id,
|
|
|
|
slide_in_from: 'Right',
|
|
|
|
});
|
|
|
|
|
|
|
|
if (NewNotif) {
|
|
|
|
box.pack_end(NewNotif, false, false, 0);
|
|
|
|
box.show_all();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const NotificationList = () => (
|
|
|
|
<box
|
|
|
|
vertical
|
|
|
|
vexpand
|
|
|
|
valign={Gtk.Align.START}
|
|
|
|
visible={bind(HasNotifs)}
|
|
|
|
// It needs to be bigger than the notifs to not jiggle
|
|
|
|
css="min-width: 550px;"
|
|
|
|
|
|
|
|
setup={(self) => {
|
|
|
|
Notifications.get_notifications().forEach((n) => {
|
|
|
|
addNotif(self, n);
|
|
|
|
});
|
|
|
|
|
|
|
|
self
|
|
|
|
.hook(Notifications, 'notified', (_, id) => {
|
|
|
|
if (id) {
|
|
|
|
const notifObj = Notifications.get_notification(id);
|
|
|
|
|
|
|
|
if (notifObj) {
|
|
|
|
addNotif(self, notifObj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.hook(Notifications, 'resolved', (_, id) => {
|
|
|
|
const notif = (self.get_children() as NotifGestureWrapper[])
|
|
|
|
.find((ch) => ch.id === id);
|
|
|
|
|
|
|
|
if (notif?.sensitive) {
|
|
|
|
notif.slideAway('Right');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
const ClearButton = () => (
|
2024-10-17 11:04:24 -04:00
|
|
|
<eventbox
|
|
|
|
cursor={bind(HasNotifs).as((hasNotifs) => hasNotifs ? 'pointer' : 'not-allowed')}
|
2024-10-16 23:56:05 -04:00
|
|
|
>
|
2024-10-17 11:04:24 -04:00
|
|
|
<button
|
|
|
|
className="clear"
|
|
|
|
sensitive={bind(HasNotifs)}
|
|
|
|
|
|
|
|
onButtonReleaseEvent={() => {
|
|
|
|
Notifications.get_notifications().forEach((notif) => {
|
|
|
|
notif.dismiss();
|
|
|
|
});
|
|
|
|
timeout(1000, () => {
|
|
|
|
App.get_window('win-notif-center')?.set_visible(false);
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<box>
|
|
|
|
<label label="Clear " />
|
2024-10-16 23:56:05 -04:00
|
|
|
|
2024-10-17 11:04:24 -04:00
|
|
|
<icon icon={bind(Notifications, 'notifications')
|
|
|
|
.as((notifs) => notifs.length > 0 ?
|
|
|
|
'user-trash-full-symbolic' :
|
|
|
|
'user-trash-symbolic')}
|
|
|
|
/>
|
|
|
|
</box>
|
|
|
|
</button>
|
|
|
|
</eventbox>
|
2024-10-16 23:56:05 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
const Header = () => (
|
|
|
|
<box className="header">
|
|
|
|
<label
|
|
|
|
label="Notifications"
|
|
|
|
hexpand
|
|
|
|
xalign={0}
|
|
|
|
/>
|
|
|
|
<ClearButton />
|
|
|
|
</box>
|
|
|
|
);
|
|
|
|
|
|
|
|
const Placeholder = () => (
|
|
|
|
<revealer
|
|
|
|
transitionType={Gtk.RevealerTransitionType.CROSSFADE}
|
|
|
|
revealChild={bind(HasNotifs).as((v) => !v)}
|
|
|
|
>
|
|
|
|
<box
|
|
|
|
className="placeholder"
|
|
|
|
vertical
|
|
|
|
valign={Gtk.Align.CENTER}
|
|
|
|
halign={Gtk.Align.CENTER}
|
|
|
|
vexpand
|
|
|
|
hexpand
|
|
|
|
>
|
|
|
|
<icon icon="notification-disabled-symbolic" />
|
|
|
|
<label label="Your inbox is empty" />
|
|
|
|
</box>
|
|
|
|
</revealer>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default () => (
|
|
|
|
<box
|
|
|
|
className="notification-center widget"
|
|
|
|
vertical
|
|
|
|
>
|
|
|
|
<Header />
|
|
|
|
|
|
|
|
<box className="notification-wallpaper-box">
|
|
|
|
<scrollable
|
|
|
|
className="notification-list-box"
|
|
|
|
hscroll={Gtk.PolicyType.NEVER}
|
|
|
|
vscroll={Gtk.PolicyType.AUTOMATIC}
|
|
|
|
>
|
|
|
|
<box
|
|
|
|
className="notification-list"
|
|
|
|
vertical
|
|
|
|
>
|
|
|
|
<NotificationList />
|
|
|
|
|
|
|
|
<Placeholder />
|
|
|
|
</box>
|
|
|
|
</scrollable>
|
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
);
|