aboutsummaryrefslogtreecommitdiff
path: root/src/background/operators/impls/CancelOperator.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/operators/impls/CancelOperator.ts')
-rw-r--r--src/background/operators/impls/CancelOperator.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/background/operators/impls/CancelOperator.ts b/src/background/operators/impls/CancelOperator.ts
new file mode 100644
index 0000000..7ab09fb
--- /dev/null
+++ b/src/background/operators/impls/CancelOperator.ts
@@ -0,0 +1,15 @@
+import Operator from "../Operator";
+import TabPresenter from "../../presenters/TabPresenter";
+import ConsoleClient from "../../infrastructures/ConsoleClient";
+
+export default class CancelOperator implements Operator {
+ constructor(
+ private readonly tabPresenter: TabPresenter,
+ private readonly consoleClient: ConsoleClient
+ ) {}
+
+ async run(): Promise<void> {
+ const tab = await this.tabPresenter.getCurrent();
+ return this.consoleClient.hide(tab.id as number);
+ }
+}