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

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

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