aboutsummaryrefslogtreecommitdiff
path: root/src/content/usecases/ScrollUseCase.ts
blob: 32cbef19d225c59357240ad4d50dd3af766b0c77 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { injectable, inject } from 'tsyringe';
import ScrollPresenter from '../presenters/ScrollPresenter';
import SettingRepository from '../repositories/SettingRepository';

@injectable()
export default class ScrollUseCase {
  constructor(
    @inject('ScrollPresenter') private presenter: ScrollPresenter,
    @inject('SettingRepository') private settingRepository: SettingRepository,
  ) {
  }

  scrollVertically(count: number): void {
    let smooth = this.getSmoothScroll();
    this.presenter.scrollVertically(count, smooth);
  }

  scrollHorizonally(count: number): void {
    let smooth = this.getSmoothScroll();
    this.presenter.scrollHorizonally(count, smooth);
  }

  scrollPages(count: number): void {
    let smooth = this.getSmoothScroll();
    this.presenter.scrollPages(count, smooth);
  }

  scrollToTop(): void {
    let smooth = this.getSmoothScroll();
    this.presenter.scrollToTop(smooth);
  }

  scrollToBottom(): void {
    let smooth = this.getSmoothScroll();
    this.presenter.scrollToBottom(smooth);
  }

  scrollToHome(): void {
    let smooth = this.getSmoothScroll();
    this.presenter.scrollToHome(smooth);
  }

  scrollToEnd(): void {
    let smooth = this.getSmoothScroll();
    this.presenter.scrollToEnd(smooth);
  }

  private getSmoothScroll(): boolean {
    let settings = this.settingRepository.get();
    return settings.properties.smoothscroll;
  }
}