aboutsummaryrefslogtreecommitdiff
path: root/src/background/operators/impls/OpenSourceOperator.ts
blob: 9185ba511c5d48ae639cbc1629890201e14b2250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import Operator from "../Operator";
import TabPresenter from "../../presenters/TabPresenter";

export default class OpenSourceOperator implements Operator {
  constructor(private readonly tabPresenter: TabPresenter) {}

  async run(): Promise<void> {
    const tab = await this.tabPresenter.getCurrent();
    const url = "view-source:" + tab.url;
    await this.tabPresenter.create(url);
  }
}