aboutsummaryrefslogtreecommitdiff
path: root/src/background/operators/impls/NavigateLinkPrevOperator.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-11-29 16:02:57 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-12-09 23:09:34 +0900
commitddf912804fc4cb26d388283eacca63a0aeddf779 (patch)
treec51faed020e9b4cfd0db40bccbe37843b15fa417 /src/background/operators/impls/NavigateLinkPrevOperator.ts
parentdcb09f7c74ff3d396431e423b0be6572c3f98955 (diff)
Make background operations as a operator
Diffstat (limited to 'src/background/operators/impls/NavigateLinkPrevOperator.ts')
-rw-r--r--src/background/operators/impls/NavigateLinkPrevOperator.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/background/operators/impls/NavigateLinkPrevOperator.ts b/src/background/operators/impls/NavigateLinkPrevOperator.ts
new file mode 100644
index 0000000..fe41ee6
--- /dev/null
+++ b/src/background/operators/impls/NavigateLinkPrevOperator.ts
@@ -0,0 +1,15 @@
+import Operator from "../Operator";
+import TabPresenter from "../../presenters/TabPresenter";
+import NavigateClient from "../../clients/NavigateClient";
+
+export default class NavigateLinkPrevOperator implements Operator {
+ constructor(
+ private readonly tabPresenter: TabPresenter,
+ private readonly navigateClient: NavigateClient
+ ) {}
+
+ async run(): Promise<void> {
+ const tab = await this.tabPresenter.getCurrent();
+ await this.navigateClient.linkPrev(tab.id!);
+ }
+}