nixos-configs/devices/wim/config/ags/js/bar/items/notif-button.js

60 lines
1.7 KiB
JavaScript
Raw Normal View History

import App from 'resource:///com/github/Aylur/ags/app.js';
import Notifications from 'resource:///com/github/Aylur/ags/service/notifications.js';
2023-11-27 15:15:02 -05:00
import { Box, CenterBox, Icon, Label } from 'resource:///com/github/Aylur/ags/widget.js';
2023-09-05 15:10:25 -04:00
import CursorBox from '../../misc/cursorbox.js';
2023-11-27 15:15:02 -05:00
import Separator from '../../misc/separator.js';
const SPACING = 4;
export default () => CursorBox({
class_name: 'toggle-off',
on_primary_click_release: (self) => {
2023-12-18 18:00:30 -05:00
// @ts-expect-error
App.getWindow('notification-center')?.attribute.set_x_pos(
2023-12-18 18:00:30 -05:00
self.get_allocation(),
'right',
);
App.toggleWindow('notification-center');
},
setup: (self) => {
self.hook(App, (_, windowName, visible) => {
if (windowName === 'notification-center') {
self.toggleClassName('toggle-on', visible);
}
});
},
2023-11-27 15:15:02 -05:00
child: CenterBox({
2023-12-18 18:00:30 -05:00
class_name: 'notif-panel',
2023-11-27 15:15:02 -05:00
center_widget: Box({
children: [
2023-12-18 18:00:30 -05:00
Icon().hook(Notifications, (self) => {
if (Notifications.dnd) {
self.icon = 'notification-disabled-symbolic';
}
else if (Notifications.notifications.length > 0) {
self.icon = 'notification-new-symbolic';
}
else {
self.icon = 'notification-symbolic';
}
2023-11-27 15:15:02 -05:00
}),
Separator(SPACING),
Label({
2023-12-18 18:00:30 -05:00
label: Notifications.bind('notifications')
.transform((n) => String(n.length)),
2023-11-27 15:15:02 -05:00
}),
],
}),
}),
2023-09-05 15:10:25 -04:00
});