aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list/shared/video-sort.component.ts
blob: 8aa89d32bf696cd3b728cbf167a73451d52c5206 (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
import { Component, EventEmitter, Input, Output } from '@angular/core'

import { SortField } from '../../shared'

@Component({
  selector: 'my-video-sort',
  templateUrl: './video-sort.component.html'
})

export class VideoSortComponent {
  @Output() sort = new EventEmitter<any>()

  @Input() currentSort: SortField

  sortChoices: { [ P in SortField ]: string } = {
    'name': 'Name - Asc',
    '-name': 'Name - Desc',
    'duration': 'Duration - Asc',
    '-duration': 'Duration - Desc',
    'createdAt': 'Created Date - Asc',
    '-createdAt': 'Created Date - Desc',
    'views': 'Views - Asc',
    '-views': 'Views - Desc',
    'likes': 'Likes - Asc',
    '-likes': 'Likes - Desc'
  }

  get choiceKeys () {
    return Object.keys(this.sortChoices)
  }

  getStringChoice (choiceKey: SortField) {
    return this.sortChoices[choiceKey]
  }

  onSortChange () {
    this.sort.emit(this.currentSort)
  }
}