aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/search/search.component.ts
blob: be1cb3689d02c30db5579b6575eccb47f78e6bf2 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute } from '@angular/router'
import { RedirectService } from '@app/core'
import { NotificationsService } from 'angular2-notifications'
import { Subscription } from 'rxjs'
import { SearchService } from '@app/search/search.service'
import { ComponentPagination } from '@app/shared/rest/component-pagination.model'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { Video } from '../../../../shared'
import { MetaService } from '@ngx-meta/core'

@Component({
  selector: 'my-search',
  styleUrls: [ './search.component.scss' ],
  templateUrl: './search.component.html'
})
export class SearchComponent implements OnInit, OnDestroy {
  videos: Video[] = []
  pagination: ComponentPagination = {
    currentPage: 1,
    itemsPerPage: 10, // It's per object type (so 10 videos, 10 video channels etc)
    totalItems: null
  }

  private subActivatedRoute: Subscription
  private currentSearch: string

  constructor (
    private i18n: I18n,
    private route: ActivatedRoute,
    private metaService: MetaService,
    private redirectService: RedirectService,
    private notificationsService: NotificationsService,
    private searchService: SearchService
  ) { }

  ngOnInit () {
    this.subActivatedRoute = this.route.queryParams.subscribe(
      queryParams => {
        const querySearch = queryParams['search']

        if (!querySearch) return this.redirectService.redirectToHomepage()
        if (querySearch === this.currentSearch) return

        this.currentSearch = querySearch
        this.updateTitle()

        this.reload()
      },

      err => this.notificationsService.error('Error', err.text)
    )
  }

  ngOnDestroy () {
    if (this.subActivatedRoute) this.subActivatedRoute.unsubscribe()
  }

  search () {
    return this.searchService.searchVideos(this.currentSearch, this.pagination)
      .subscribe(
        ({ videos, totalVideos }) => {
          this.videos = this.videos.concat(videos)
          this.pagination.totalItems = totalVideos
        },

        error => {
          this.notificationsService.error(this.i18n('Error'), error.message)
        }
      )
  }

  onNearOfBottom () {
    // Last page
    if (this.pagination.totalItems <= (this.pagination.currentPage * this.pagination.itemsPerPage)) return

    this.pagination.currentPage += 1
    this.search()
  }

  private reload () {
    this.pagination.currentPage = 1
    this.pagination.totalItems = null

    this.videos = []

    this.search()
  }

  private updateTitle () {
    this.metaService.setTitle(this.i18n('Search') + ' ' + this.currentSearch)
  }
}