aboutsummaryrefslogtreecommitdiff
path: root/src/content/controllers/FindController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/controllers/FindController.ts')
-rw-r--r--src/content/controllers/FindController.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/content/controllers/FindController.ts b/src/content/controllers/FindController.ts
new file mode 100644
index 0000000..cf27a8d
--- /dev/null
+++ b/src/content/controllers/FindController.ts
@@ -0,0 +1,24 @@
+import * as messages from '../../shared/messages';
+import FindUseCase from '../usecases/FindUseCase';
+
+export default class FindController {
+ private findUseCase: FindUseCase;
+
+ constructor({
+ findUseCase = new FindUseCase(),
+ } = {}) {
+ this.findUseCase = findUseCase;
+ }
+
+ async start(m: messages.ConsoleEnterFindMessage): Promise<void> {
+ await this.findUseCase.startFind(m.text);
+ }
+
+ async next(_: messages.FindNextMessage): Promise<void> {
+ await this.findUseCase.findNext();
+ }
+
+ async prev(_: messages.FindPrevMessage): Promise<void> {
+ await this.findUseCase.findPrev();
+ }
+}