nixos-configs/modules/ags/config/ts/osd/ctor.ts

61 lines
1.4 KiB
TypeScript
Raw Normal View History

const { Box, Icon, ProgressBar } = Widget;
const Y_POS = 80;
2024-01-13 11:15:08 -05:00
// Types
import { ConnectFunc, OSD } from 'global-types';
2024-01-13 11:15:08 -05:00
export default ({ name, stack, icon, info }: OSD) => {
2024-01-13 11:15:08 -05:00
let connectFunc: ConnectFunc;
const status = info.widget ?
info.widget :
ProgressBar({ vpack: 'center' });
// Wrapper to get sliding up anim
const osd = Box({
name,
css: `margin-bottom: ${Y_POS}px;`,
children: [
// Actual OSD
Box({
class_name: 'osd',
children: [
Icon({
hpack: 'start',
icon,
}),
status,
],
}),
],
});
// Handle requests to show the OSD
// Different wether it's a bar or static
if (info.logic) {
2024-01-13 11:15:08 -05:00
connectFunc = (self) => new Promise<void>((r) => {
if (info.logic && self) {
info.logic(self);
}
r();
}).then(() => stack.attribute.popup(name));
}
else {
connectFunc = () => stack.attribute.popup(name);
}
if (info.signal) {
if (typeof info.signal === 'string') {
status.hook(info.mod, connectFunc, info.signal);
}
else {
info.signal.forEach((sig) => {
status.hook(info.mod, connectFunc, sig);
});
}
}
return osd;
};