Refactor Polling Mechanism: Implement Class-Based Poller with Start/Stop Control (#528)

* custom module updates to class based.

* Finish poller logic.

* Use composition for pollers

* Rename poller

* Handle recorder polling.

* Fix quotes in bash command

* Remove logs
This commit is contained in:
Jas Singh
2024-11-23 03:55:00 -08:00
committed by GitHub
parent c10c9d0e93
commit a4f5fb5917
26 changed files with 460 additions and 169 deletions

View File

@@ -3,10 +3,10 @@ import { module } from '../module';
import { inputHandler } from 'customModules/utils';
import Button from 'types/widgets/button';
import { Variable as VariableType } from 'types/variable';
import { pollVariableBash } from 'customModules/PollVar';
import { Variable as TVariable } from 'types/variable';
import { Attribute, Child } from 'lib/types/widget';
import { BarBoxChild } from 'lib/types/bar';
import { BashPoller } from 'lib/poller/BashPoller';
const {
updateCommand,
@@ -21,7 +21,7 @@ const {
scrollDown,
} = options.bar.customModules.updates;
const pendingUpdates: VariableType<string> = Variable('0');
const pendingUpdates: TVariable<string> = Variable('0');
const postInputUpdater = Variable(true);
const processUpdateCount = (updateCount: string): string => {
@@ -29,7 +29,7 @@ const processUpdateCount = (updateCount: string): string => {
return `${updateCount.padStart(2, '0')}`;
};
pollVariableBash(
const updatesPoller = new BashPoller<string, []>(
pendingUpdates,
[padZero.bind('value'), postInputUpdater.bind('value')],
pollingInterval.bind('value'),
@@ -37,6 +37,8 @@ pollVariableBash(
processUpdateCount,
);
updatesPoller.initialize('updates');
export const Updates = (): BarBoxChild => {
const updatesModule = module({
textIcon: icon.bind('value'),