aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/video-list/video-sort.component.ts
blob: c950fa8aa0d8714b6c4d94dd6e02cdc6de8db2b4 (plain) (tree)
1
2
3
4
5
6
7
                                                                       
 
                                      


                            
                                            








                                           


                                   
                                      


                                        
    




                                         
                                         






                                       
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 = {
    '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'
  };

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

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

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