diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-03-14 22:57:56 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-03-14 23:05:18 +0900 |
commit | 04ebd1e5331d29b2413c174ae0fe9d73566b3b8d (patch) | |
tree | 49a1759615560fe13f6b1a5c416f274a7d0da91e /src/background/controllers/ConsoleUseCase.ts | |
parent | ba19c573a76c75469b5b2ed9093f8373907ea364 (diff) |
Resize console dynamically
Diffstat (limited to 'src/background/controllers/ConsoleUseCase.ts')
-rw-r--r-- | src/background/controllers/ConsoleUseCase.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/background/controllers/ConsoleUseCase.ts b/src/background/controllers/ConsoleUseCase.ts new file mode 100644 index 0000000..556aaf8 --- /dev/null +++ b/src/background/controllers/ConsoleUseCase.ts @@ -0,0 +1,21 @@ +import { inject, injectable } from "tsyringe"; +import ConsoleFrameClient from "./ConsoleFrameClient"; +import TabPresenter from "../presenters/TabPresenter"; + +@injectable() +export default class ConsoleUseCase { + constructor( + @inject("TabPresenter") + private readonly tabPresenter: TabPresenter, + @inject("ConsoleFrameClient") + private readonly consoleFrameClient: ConsoleFrameClient + ) {} + + async resize(width: number, height: number): Promise<void> { + const tabId = (await this.tabPresenter.getCurrent()).id; + if (typeof tabId === "undefined") { + return; + } + return this.consoleFrameClient.resize(tabId, width, height); + } +} |