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

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

  openToTab(url: string, tabId: number): Promise<any> {
    return this.tabPresenter.open(url, tabId);
  }

  async openNewTab(
    url: string,
    openerId: number,
    background: boolean
  ): Promise<any> {
    const properties: any = { active: !background };

    const platform = await browser.runtime.getPlatformInfo();
    if (platform.os !== "android") {
      // openerTabId not supported on Android
      properties.openerTabId = openerId;
    }

    return this.tabPresenter.create(url, properties);
  }
}