diff options
Diffstat (limited to 'src/background/operators/impls/SelectTabPrevOperator.ts')
-rw-r--r-- | src/background/operators/impls/SelectTabPrevOperator.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/background/operators/impls/SelectTabPrevOperator.ts b/src/background/operators/impls/SelectTabPrevOperator.ts new file mode 100644 index 0000000..93a0d6d --- /dev/null +++ b/src/background/operators/impls/SelectTabPrevOperator.ts @@ -0,0 +1,22 @@ +import Operator from "../Operator"; +import TabPresenter from "../../presenters/TabPresenter"; + +export default class SelectTabPrevOperator implements Operator { + constructor( + private readonly tabPresenter: TabPresenter, + private readonly count: number + ) {} + + async run(): Promise<void> { + const tabs = await this.tabPresenter.getAll(); + if (tabs.length < 2) { + return; + } + const tab = tabs.find((t) => t.active); + if (!tab) { + return; + } + const select = (tab.index - this.count + tabs.length) % tabs.length; + return this.tabPresenter.select(tabs[select].id as number); + } +} |