nixos-configs/modules/ags/config/ts/bar/items/systray.ts

93 lines
2.3 KiB
TypeScript
Raw Normal View History

import SystemTray from 'resource:///com/github/Aylur/ags/service/systemtray.js';
import { timeout } from 'resource:///com/github/Aylur/ags/utils.js';
2023-11-13 16:33:19 -05:00
import { Box, Icon, MenuItem, MenuBar, Revealer } from 'resource:///com/github/Aylur/ags/widget.js';
2023-09-11 19:57:21 -04:00
import Separator from '../../misc/separator.ts';
const REVEAL_DURATION = 500;
const SPACING = 12;
2024-01-13 11:15:08 -05:00
// Types
import { TrayItem } from 'types/service/systemtray.ts';
2024-01-13 11:15:08 -05:00
const SysTrayItem = (item: TrayItem) => {
if (item.id === 'spotify-client') {
return;
}
return MenuItem({
2024-01-22 10:23:32 -05:00
submenu: item.menu,
2023-12-18 18:00:30 -05:00
tooltip_markup: item.bind('tooltip_markup'),
child: Revealer({
transition: 'slide_right',
2023-12-18 18:00:30 -05:00
transition_duration: REVEAL_DURATION,
2024-01-13 11:15:08 -05:00
child: Icon({ size: 24 }).bind('icon', item, 'icon'),
}),
});
};
2023-11-13 16:33:19 -05:00
const SysTray = () => MenuBar({
2024-01-13 11:15:08 -05:00
attribute: { items: new Map() },
2023-10-18 11:53:49 -04:00
2023-12-18 18:00:30 -05:00
setup: (self) => {
self
.hook(SystemTray, (_, id) => {
const item = SystemTray.getItem(id);
if (self.attribute.items.has(id) || !item) {
return;
}
const w = SysTrayItem(item);
// Early return if item is in blocklist
if (!w) {
return;
}
self.attribute.items.set(id, w);
self.child = w;
self.show_all();
2024-01-13 11:15:08 -05:00
w.child.reveal_child = true;
}, 'added')
.hook(SystemTray, (_, id) => {
if (!self.attribute.items.has(id)) {
return;
}
self.attribute.items.get(id).child.reveal_child = false;
timeout(REVEAL_DURATION, () => {
self.attribute.items.get(id).destroy();
self.attribute.items.delete(id);
});
}, 'removed');
2023-11-13 16:33:19 -05:00
},
});
2023-10-18 11:53:49 -04:00
export default () => {
const systray = SysTray();
return Revealer({
transition: 'slide_right',
child: Box({
children: [
Box({
2023-12-18 18:00:30 -05:00
class_name: 'sys-tray',
children: [systray],
}),
Separator(SPACING),
],
}),
2023-12-18 18:00:30 -05:00
}).hook(SystemTray, (self) => {
self.reveal_child = systray.get_children().length > 0;
});
};