aboutsummaryrefslogtreecommitdiff
path: root/src/background/operators/impls/ZoomOperatorFactoryChain.ts
blob: bf930a725ee6736f11a08136a5e11397e4beca20 (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
import { inject, injectable } from "tsyringe";
import Operator from "../Operator";
import OperatorFactoryChain from "../OperatorFactoryChain";
import ZoomInOperator from "./ZoomInOperator";
import ZoomOutOperator from "./ZoomOutOperator";
import ResetZoomOperator from "./ResetZoomOperator";
import ZoomPresenter from "../../presenters/ZoomPresenter";
import * as operations from "../../../shared/operations";

@injectable()
export default class ZoomOperatorFactoryChain implements OperatorFactoryChain {
  constructor(
    @inject("ZoomPresenter")
    private readonly zoomPresenter: ZoomPresenter
  ) {}

  create(op: operations.Operation): Operator | null {
    switch (op.type) {
      case operations.ZOOM_IN:
        return new ZoomInOperator(this.zoomPresenter);
      case operations.ZOOM_OUT:
        return new ZoomOutOperator(this.zoomPresenter);
      case operations.ZOOM_NEUTRAL:
        return new ResetZoomOperator(this.zoomPresenter);
    }
    return null;
  }
}