aboutsummaryrefslogtreecommitdiff
path: root/src/background/usecases/ConsoleUseCase.ts
blob: d0bd7bb69ca8c603d432dad556771dec2f2ca8cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { injectable } from 'tsyringe';
import TabPresenter from '../presenters/TabPresenter';
import ConsoleClient from '../infrastructures/ConsoleClient';

@injectable()
export default class ConsoleUseCase {

  constructor(
    private tabPresenter: TabPresenter,
    private consoleClient: ConsoleClient,
  ) {
  }

  async showCommand(): Promise<any> {
    let tab = await this.tabPresenter.getCurrent();
    return this.consoleClient.showCommand(tab.id as number, '');
  }

  async showOpenCommand(alter: boolean): Promise<any> {
    let tab = await this.tabPresenter.getCurrent();
    let command = 'open ';
    if (alter) {
      command += tab.url || '';
    }
    return this.consoleClient.showCommand(tab.id as number, command);
  }

  async showTabopenCommand(alter: boolean): Promise<any> {
    let tab = await this.tabPresenter.getCurrent();
    let command = 'tabopen ';
    if (alter) {
      command += tab.url || '';
    }
    return this.consoleClient.showCommand(tab.id as number, command);
  }

  async showWinopenCommand(alter: boolean): Promise<any> {
    let tab = await this.tabPresenter.getCurrent();
    let command = 'winopen ';
    if (alter) {
      command += tab.url || '';
    }
    return this.consoleClient.showCommand(tab.id as number, command);
  }

  async showBufferCommand(): Promise<any> {
    let tab = await this.tabPresenter.getCurrent();
    let command = 'buffer ';
    return this.consoleClient.showCommand(tab.id as number, command);
  }

  async showAddbookmarkCommand(alter: boolean): Promise<any> {
    let tab = await this.tabPresenter.getCurrent();
    let command = 'addbookmark ';
    if (alter) {
      command += tab.title || '';
    }
    return this.consoleClient.showCommand(tab.id as number, command);
  }

  async hideConsole(): Promise<any> {
    let tab = await this.tabPresenter.getCurrent();
    return this.consoleClient.hide(tab.id as number);
  }
}