aboutsummaryrefslogtreecommitdiff
path: root/src/content/operators/impls/PageScrollOperator.ts
blob: fbe4dbe5d1ebc3f9bbab5d636ecb82039a4a5972 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import AbstractScrollOperator from "./AbstractScrollOperator";
import Operator from "../Operator";
import ScrollPresenter from "../../presenters/ScrollPresenter";
import SettingRepository from "../../repositories/SettingRepository";

export default class PageScrollOperator
  extends AbstractScrollOperator
  implements Operator
{
  constructor(
    private readonly presenter: ScrollPresenter,
    settingRepository: SettingRepository,
    private readonly count: number
  ) {
    super(settingRepository);
  }

  async run(): Promise<void> {
    const smooth = this.getSmoothScroll();
    this.presenter.scrollPages(this.count, smooth);
  }
}