* fix: waybar style battery msgs * Revert "fix: waybar style battery msgs" This reverts commit 924d998ddda6cb4becc87fabfd7958a0f7ecc773. * fix: revert changes --------- Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>
134 lines
5.5 KiB
TypeScript
134 lines
5.5 KiB
TypeScript
const battery = await Service.import('battery');
|
|
import Gdk from 'gi://Gdk?version=3.0';
|
|
import { openMenu } from '../utils.js';
|
|
import options from 'options';
|
|
import { BarBoxChild } from 'lib/types/bar.js';
|
|
import Button from 'types/widgets/button.js';
|
|
import { Attribute, Child } from 'lib/types/widget.js';
|
|
import { runAsyncCommand, throttledScrollHandler } from 'customModules/utils.js';
|
|
|
|
const { label: show_label, rightClick, middleClick, scrollUp, scrollDown, hideLabelWhenFull } = options.bar.battery;
|
|
|
|
const BatteryLabel = (): BarBoxChild => {
|
|
const isVis = Variable(battery.available);
|
|
|
|
const batIcon = Utils.merge(
|
|
[battery.bind('percent'), battery.bind('charging'), battery.bind('charged')],
|
|
(batPercent: number, batCharging, batCharged) => {
|
|
if (batCharged) return `battery-level-100-charged-symbolic`;
|
|
else return `battery-level-${Math.floor(batPercent / 10) * 10}${batCharging ? '-charging' : ''}-symbolic`;
|
|
},
|
|
);
|
|
|
|
battery.connect('changed', ({ available }) => {
|
|
isVis.value = available;
|
|
});
|
|
|
|
const formatTime = (seconds: number): Record<string, number> => {
|
|
const hours = Math.floor(seconds / 3600);
|
|
const minutes = Math.floor((seconds % 3600) / 60);
|
|
return { hours, minutes };
|
|
};
|
|
|
|
const generateTooltip = (timeSeconds: number, isCharging: boolean, isCharged: boolean): string => {
|
|
if (isCharged) {
|
|
return 'Full';
|
|
}
|
|
|
|
const { hours, minutes } = formatTime(timeSeconds);
|
|
if (isCharging) {
|
|
return `Time to full: ${hours} h ${minutes} min`;
|
|
} else {
|
|
return `Time to empty: ${hours} h ${minutes} min`;
|
|
}
|
|
};
|
|
|
|
return {
|
|
component: Widget.Box({
|
|
className: Utils.merge(
|
|
[options.theme.bar.buttons.style.bind('value'), show_label.bind('value')],
|
|
(style, showLabel) => {
|
|
const styleMap = {
|
|
default: 'style1',
|
|
split: 'style2',
|
|
wave: 'style3',
|
|
wave2: 'style3',
|
|
};
|
|
return `battery-container ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
|
|
},
|
|
),
|
|
visible: battery.bind('available'),
|
|
tooltip_text: battery.bind('time_remaining').as((t) => t.toString()),
|
|
children: Utils.merge(
|
|
[
|
|
battery.bind('available'),
|
|
show_label.bind('value'),
|
|
battery.bind('charged'),
|
|
hideLabelWhenFull.bind('value'),
|
|
],
|
|
(batAvail, showLabel, isCharged, hideWhenFull) => {
|
|
if (batAvail && showLabel) {
|
|
return [
|
|
Widget.Icon({
|
|
class_name: 'bar-button-icon battery',
|
|
icon: batIcon,
|
|
}),
|
|
...(hideWhenFull && isCharged
|
|
? []
|
|
: [
|
|
Widget.Label({
|
|
class_name: 'bar-button-label battery',
|
|
label: battery.bind('percent').as((p) => `${Math.floor(p)}%`),
|
|
}),
|
|
]),
|
|
];
|
|
} else if (batAvail && !showLabel) {
|
|
return [
|
|
Widget.Icon({
|
|
class_name: 'bar-button-icon battery',
|
|
icon: batIcon,
|
|
}),
|
|
];
|
|
} else {
|
|
return [];
|
|
}
|
|
},
|
|
),
|
|
setup: (self) => {
|
|
self.hook(battery, () => {
|
|
if (battery.available) {
|
|
self.tooltip_text = generateTooltip(battery.time_remaining, battery.charging, battery.charged);
|
|
}
|
|
});
|
|
},
|
|
}),
|
|
isVis,
|
|
boxClass: 'battery',
|
|
props: {
|
|
setup: (self: Button<Child, Attribute>): void => {
|
|
self.hook(options.bar.scrollSpeed, () => {
|
|
const throttledHandler = throttledScrollHandler(options.bar.scrollSpeed.value);
|
|
|
|
self.on_secondary_click = (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
runAsyncCommand(rightClick.value, { clicked, event });
|
|
};
|
|
self.on_middle_click = (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
runAsyncCommand(middleClick.value, { clicked, event });
|
|
};
|
|
self.on_scroll_up = (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
throttledHandler(scrollUp.value, { clicked, event });
|
|
};
|
|
self.on_scroll_down = (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
throttledHandler(scrollDown.value, { clicked, event });
|
|
};
|
|
});
|
|
},
|
|
onPrimaryClick: (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
openMenu(clicked, event, 'energymenu');
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export { BatteryLabel };
|