* adjusted sleep between polls to always sleep at least 2s * fixed tooltip formatting when no updates available --------- Co-authored-by: Mara <mara.dawn69@gmail.com>
110 lines
3.3 KiB
TypeScript
110 lines
3.3 KiB
TypeScript
import options from 'src/options';
|
|
import { Module } from '../../shared/Module';
|
|
import { inputHandler } from 'src/components/bar/utils/helpers';
|
|
import { BarBoxChild } from 'src/lib/types/bar';
|
|
import { BashPoller } from 'src/lib/poller/BashPoller';
|
|
import { bind, Variable } from 'astal';
|
|
import { Astal } from 'astal/gtk3';
|
|
|
|
const {
|
|
updateCommand,
|
|
updateTooltipCommand,
|
|
extendedTooltip,
|
|
label,
|
|
padZero,
|
|
autoHide,
|
|
pollingInterval,
|
|
icon,
|
|
leftClick,
|
|
rightClick,
|
|
middleClick,
|
|
scrollUp,
|
|
scrollDown,
|
|
} = options.bar.customModules.updates;
|
|
|
|
const pendingUpdates: Variable<string> = Variable('0');
|
|
const pendingUpdatesTooltip: Variable<string> = Variable('');
|
|
const postInputUpdater = Variable(true);
|
|
const isVis = Variable(!autoHide.get());
|
|
|
|
const processUpdateCount = (updateCount: string): string => {
|
|
if (!padZero.get()) return updateCount;
|
|
return `${updateCount.padStart(2, '0')}`;
|
|
};
|
|
|
|
const processUpdateTooltip = (updateTooltip: string, updateCount: Variable<string>): string => {
|
|
const defaultTooltip = updateCount.get() + ' updates available';
|
|
if (!extendedTooltip.get() || !updateTooltip) return defaultTooltip;
|
|
return defaultTooltip + '\n\n' + updateTooltip;
|
|
};
|
|
|
|
const updatesPoller = new BashPoller<string, []>(
|
|
pendingUpdates,
|
|
[bind(padZero), bind(postInputUpdater), bind(updateCommand)],
|
|
bind(pollingInterval),
|
|
updateCommand.get(),
|
|
processUpdateCount,
|
|
);
|
|
|
|
const tooltipPoller = new BashPoller<string, [Variable<string>]>(
|
|
pendingUpdatesTooltip,
|
|
[bind(extendedTooltip), bind(postInputUpdater), bind(updateTooltipCommand)],
|
|
bind(pollingInterval),
|
|
updateTooltipCommand.get(),
|
|
processUpdateTooltip,
|
|
pendingUpdates,
|
|
);
|
|
|
|
updatesPoller.initialize('updates');
|
|
tooltipPoller.initialize('updates');
|
|
|
|
Variable.derive([bind(autoHide)], (autoHideModule) => {
|
|
isVis.set(!autoHideModule || (autoHideModule && parseFloat(pendingUpdates.get()) > 0));
|
|
});
|
|
|
|
const updatesIcon = Variable.derive(
|
|
[bind(icon.pending), bind(icon.updated), bind(pendingUpdates)],
|
|
(pendingIcon, updatedIcon, pUpdates) => {
|
|
isVis.set(!autoHide.get() || (autoHide.get() && parseFloat(pUpdates) > 0));
|
|
return parseFloat(pUpdates) === 0 ? updatedIcon : pendingIcon;
|
|
},
|
|
);
|
|
|
|
export const Updates = (): BarBoxChild => {
|
|
const updatesModule = Module({
|
|
textIcon: updatesIcon(),
|
|
tooltipText: bind(pendingUpdatesTooltip),
|
|
boxClass: 'updates',
|
|
isVis: isVis,
|
|
label: bind(pendingUpdates),
|
|
showLabelBinding: bind(label),
|
|
props: {
|
|
setup: (self: Astal.Button) => {
|
|
inputHandler(
|
|
self,
|
|
{
|
|
onPrimaryClick: {
|
|
cmd: leftClick,
|
|
},
|
|
onSecondaryClick: {
|
|
cmd: rightClick,
|
|
},
|
|
onMiddleClick: {
|
|
cmd: middleClick,
|
|
},
|
|
onScrollUp: {
|
|
cmd: scrollUp,
|
|
},
|
|
onScrollDown: {
|
|
cmd: scrollDown,
|
|
},
|
|
},
|
|
postInputUpdater,
|
|
);
|
|
},
|
|
},
|
|
});
|
|
|
|
return updatesModule;
|
|
};
|