]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts
Refractor notification service
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channels.component.ts
CommitLineData
08c1efbe 1import { Component, OnInit } from '@angular/core'
f8b2c1b4 2import { Notifier } from '@app/core'
08c1efbe
C
3import { AuthService } from '../../core/auth'
4import { ConfirmService } from '../../core/confirm'
5import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
6import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
7import { User } from '@app/shared'
db400f44 8import { flatMap } from 'rxjs/operators'
b1d40cff 9import { I18n } from '@ngx-translate/i18n-polyfill'
08c1efbe
C
10
11@Component({
12 selector: 'my-account-video-channels',
13 templateUrl: './my-account-video-channels.component.html',
14 styleUrls: [ './my-account-video-channels.component.scss' ]
15})
6a478b11 16export class MyAccountVideoChannelsComponent implements OnInit {
08c1efbe
C
17 videoChannels: VideoChannel[] = []
18
19 private user: User
20
21 constructor (
22 private authService: AuthService,
f8b2c1b4 23 private notifier: Notifier,
08c1efbe 24 private confirmService: ConfirmService,
b1d40cff
C
25 private videoChannelService: VideoChannelService,
26 private i18n: I18n
08c1efbe
C
27 ) {}
28
29 ngOnInit () {
30 this.user = this.authService.getUser()
31
32 this.loadVideoChannels()
33 }
34
35 async deleteVideoChannel (videoChannel: VideoChannel) {
36 const res = await this.confirmService.confirmWithInput(
b1d40cff 37 this.i18n(
25acef90 38 'Do you really want to delete {{videoChannelName}}? It will delete all videos uploaded in this channel too.',
b1d40cff
C
39 { videoChannelName: videoChannel.displayName }
40 ),
41 this.i18n('Please type the name of the video channel to confirm'),
08c1efbe 42 videoChannel.displayName,
b1d40cff 43 this.i18n('Delete')
08c1efbe
C
44 )
45 if (res === false) return
46
47 this.videoChannelService.removeVideoChannel(videoChannel)
48 .subscribe(
f8b2c1b4 49 () => {
08c1efbe 50 this.loadVideoChannels()
f8b2c1b4 51 this.notifier.success(
25acef90 52 this.i18n('Video channel {{videoChannelName}} deleted.', { videoChannelName: videoChannel.displayName })
b1d40cff 53 )
08c1efbe
C
54 },
55
f8b2c1b4 56 error => this.notifier.error(error.message)
08c1efbe
C
57 )
58 }
59
60 private loadVideoChannels () {
61 this.authService.userInformationLoaded
ad9e39fb 62 .pipe(flatMap(() => this.videoChannelService.listAccountVideoChannels(this.user.account)))
08c1efbe
C
63 .subscribe(res => this.videoChannels = res.data)
64 }
65}