aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/friends/friend-list/friend-list.component.ts
blob: 822a112ccc05ebf9c405a46b7c097d36a6440424 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import { Component } from '@angular/core'

import { NotificationsService } from 'angular2-notifications'
import { ServerDataSource } from 'ng2-smart-table'

import { ConfirmService } from '../../../core'
import { Utils } from '../../../shared'
import { FriendService } from '../shared'
import { Pod } from '../../../../../../shared'

@Component({
  selector: 'my-friend-list',
  templateUrl: './friend-list.component.html',
  styleUrls: [ './friend-list.component.scss' ]
})
export class FriendListComponent {
  friendsSource = null
  tableSettings = {
    mode: 'external',
    attr: {
      class: 'table-hover'
    },
    hideSubHeader: true,
    actions: {
      position: 'right',
      add: false,
      edit: false,
      delete: true
    },
    delete: {
      deleteButtonContent: Utils.getRowDeleteButton()
    },
    columns: {
      id: {
        title: 'ID',
        sort: false,
        sortDirection: 'asc'
      },
      host: {
        title: 'Host',
        sort: false
      },
      email: {
        title: 'Email',
        sort: false
      },
      score: {
        title: 'Score',
        sort: false
      },
      createdAt: {
        title: 'Created Date',
        sort: false,
        valuePrepareFunction: Utils.dateToHuman
      }
    }
  }

  constructor (
    private notificationsService: NotificationsService,
    private confirmService: ConfirmService,
    private friendService: FriendService
  ) {
    this.friendsSource = this.friendService.getDataSource()
  }

  hasFriends () {
    return this.friendsSource.count() !== 0
  }

  quitFriends () {
    const confirmMessage = 'Do you really want to quit your friends? All their videos will be deleted.'
    this.confirmService.confirm(confirmMessage, 'Quit friends').subscribe(
      res => {
        if (res === false) return

        this.friendService.quitFriends().subscribe(
          status => {
            this.notificationsService.success('Success', 'Friends left!')
            this.friendsSource.refresh()
          },

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

  removeFriend ({ data }) {
    const confirmMessage = 'Do you really want to remove this friend ? All its videos will be deleted.'
    const friend: Pod = data

    this.confirmService.confirm(confirmMessage, 'Remove').subscribe(
      res => {
        if (res === false) return

        this.friendService.removeFriend(friend).subscribe(
	  status => {
	    this.notificationsService.success('Success', 'Friend removed')
	    this.friendsSource.refresh()
	  },

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