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

46 lines
1.3 KiB
JavaScript
Raw Normal View History

import { App, Notifications, Widget } from '../../imports.js';
const { Box, Label, Icon } = Widget;
2023-09-05 15:10:25 -04:00
import Separator from '../misc/separator.js';
import EventBox from '../misc/cursorbox.js';
export default () => EventBox({
className: 'toggle-off',
onPrimaryClickRelease: () => App.toggleWindow('notification-center'),
connections: [[App, (self, windowName, visible) => {
if (windowName == 'notification-center')
self.toggleClassName('toggle-on', visible);
}]],
child: Box({
className: 'notif-panel',
vertical: false,
children: [
Separator(28),
Icon({
connections: [[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';
}
}]],
}),
Separator(8),
Label({
binds: [
['label', Notifications, 'notifications', n => String(n.length)],
],
}),
],
}),
2023-09-05 15:10:25 -04:00
});