]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account-history/my-account-history.component.ts
Merge branch 'master' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-history / my-account-history.component.ts
1 import { Component, OnDestroy, OnInit } from '@angular/core'
2 import { ActivatedRoute, Router } from '@angular/router'
3 import { immutableAssign } from '@app/shared/misc/utils'
4 import { ComponentPagination } from '@app/shared/rest/component-pagination.model'
5 import { AuthService } from '../../core/auth'
6 import { ConfirmService } from '../../core/confirm'
7 import { AbstractVideoList } from '../../shared/video/abstract-video-list'
8 import { VideoService } from '../../shared/video/video.service'
9 import { I18n } from '@ngx-translate/i18n-polyfill'
10 import { ScreenService } from '@app/shared/misc/screen.service'
11 import { UserHistoryService } from '@app/shared/users/user-history.service'
12 import { UserService } from '@app/shared'
13 import { Notifier, ServerService } from '@app/core'
14
15 @Component({
16 selector: 'my-account-history',
17 templateUrl: './my-account-history.component.html',
18 styleUrls: [ './my-account-history.component.scss' ]
19 })
20 export class MyAccountHistoryComponent extends AbstractVideoList implements OnInit, OnDestroy {
21 titlePage: string
22 pagination: ComponentPagination = {
23 currentPage: 1,
24 itemsPerPage: 5,
25 totalItems: null
26 }
27 videosHistoryEnabled: boolean
28
29 constructor (
30 protected router: Router,
31 protected serverService: ServerService,
32 protected route: ActivatedRoute,
33 protected authService: AuthService,
34 protected userService: UserService,
35 protected notifier: Notifier,
36 protected screenService: ScreenService,
37 protected i18n: I18n,
38 private confirmService: ConfirmService,
39 private videoService: VideoService,
40 private userHistoryService: UserHistoryService
41 ) {
42 super()
43
44 this.titlePage = this.i18n('My videos history')
45 }
46
47 ngOnInit () {
48 super.ngOnInit()
49
50 this.videosHistoryEnabled = this.authService.getUser().videosHistoryEnabled
51 }
52
53 ngOnDestroy () {
54 super.ngOnDestroy()
55 }
56
57 getVideosObservable (page: number) {
58 const newPagination = immutableAssign(this.pagination, { currentPage: page })
59
60 return this.userHistoryService.getUserVideosHistory(newPagination)
61 }
62
63 generateSyndicationList () {
64 throw new Error('Method not implemented.')
65 }
66
67 onVideosHistoryChange () {
68 this.userService.updateMyProfile({ videosHistoryEnabled: this.videosHistoryEnabled })
69 .subscribe(
70 () => {
71 const message = this.videosHistoryEnabled === true ?
72 this.i18n('Videos history is enabled') :
73 this.i18n('Videos history is disabled')
74
75 this.notifier.success(message)
76
77 this.authService.refreshUserInformation()
78 },
79
80 err => this.notifier.error(err.message)
81 )
82 }
83
84 async deleteHistory () {
85 const title = this.i18n('Delete videos history')
86 const message = this.i18n('Are you sure you want to delete all your videos history?')
87
88 const res = await this.confirmService.confirm(message, title)
89 if (res !== true) return
90
91 this.userHistoryService.deleteUserVideosHistory()
92 .subscribe(
93 () => {
94 this.notifier.success(this.i18n('Videos history deleted'))
95
96 this.reloadVideos()
97 },
98
99 err => this.notifier.error(err.message)
100 )
101 }
102 }