aboutsummaryrefslogtreecommitdiff
path: root/src/background/usecases/ZoomUseCase.ts
blob: 173e4d7415533fa0c2c14a07562b525839a3e1a9 (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
import { inject, injectable } from "tsyringe";
import TabPresenter from "../presenters/TabPresenter";

const ZOOM_SETTINGS: number[] = [
  0.33,
  0.5,
  0.66,
  0.75,
  0.8,
  0.9,
  1.0,
  1.1,
  1.25,
  1.5,
  1.75,
  2.0,
  2.5,
  3.0,
];

@injectable()
export default class ZoomUseCase {
  constructor(@inject("TabPresenter") private tabPresenter: TabPresenter) {}

  async zoomIn(): Promise<any> {
    const tab = await this.tabPresenter.getCurrent();
    const tabId = tab.id as number;
    const current = await this.tabPresenter.getZoom(tabId);
    const factor = ZOOM_SETTINGS.find((f) => f > current);
    if (factor) {
      return this.tabPresenter.setZoom(tabId as number, factor);
    }
  }

  async zoomOut(): Promise<any> {
    const tab = await this.tabPresenter.getCurrent();
    const tabId = tab.id as number;
    const current = await this.tabPresenter.getZoom(tabId);
    const factor = ZOOM_SETTINGS.slice(0)
      .reverse()
      .find((f) => f < current);
    if (factor) {
      return this.tabPresenter.setZoom(tabId as number, factor);
    }
  }

  async zoomNutoral(): Promise<any> {
    const tab = await this.tabPresenter.getCurrent();
    return this.tabPresenter.setZoom(tab.id as number, 1);
  }
}