aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.ts
blob: 7c838fbf0c526982b9fa7c0201b2335369b06715 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                         
 
                                                             
 

                                                          

            

                                                  
  
                                      
                          











































                                                 
   
 
               

                                                       
     

                                                                   
 
                                    

                                                         
                                                                                

   
import { Component } from '@angular/core'

import { NotificationsService } from 'angular2-notifications'

import { Utils, VideoAbuseService } from '../../../shared'
import { VideoAbuse } from '../../../../../shared'

@Component({
  selector: 'my-video-abuse-list',
  templateUrl: './video-abuse-list.component.html'
})
export class VideoAbuseListComponent {
  videoAbusesSource = null
  tableSettings = {
    mode: 'external',
    attr: {
      class: 'table-hover'
    },
    hideSubHeader: true,
    actions: {
      position: 'right',
      add: false,
      edit: false,
      delete: false
    },
    pager: {
      display: true,
      perPage: 10
    },
    columns: {
      id: {
        title: 'ID',
        sortDirection: 'asc'
      },
      reason: {
        title: 'Reason',
        sort: false
      },
      reporterPodHost: {
        title: 'Reporter pod host',
        sort: false
      },
      reporterUsername: {
        title: 'Reporter username',
        sort: false
      },
      videoId: {
        title: 'Video',
        type: 'html',
        sort: false,
        valuePrepareFunction: this.buildVideoLink
      },
      createdAt: {
        title: 'Created Date',
        valuePrepareFunction: Utils.dateToHuman
      }
    }
  }

  constructor (
    private notificationsService: NotificationsService,
    private videoAbuseService: VideoAbuseService
  ) {
    this.videoAbusesSource = this.videoAbuseService.getDataSource()
  }

  buildVideoLink (videoId: string) {
    // TODO: transform to routerLink
    // https://github.com/akveo/ng2-smart-table/issues/57
    return `<a href="/videos/${videoId}" title="Go to the video">${videoId}</a>`
  }
}