]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts
View stats for channels
[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'
8165d00a 7import { ScreenService } from '@app/shared/misc/screen.service'
08c1efbe 8import { User } from '@app/shared'
db400f44 9import { flatMap } from 'rxjs/operators'
b1d40cff 10import { I18n } from '@ngx-translate/i18n-polyfill'
8165d00a 11import { minBy, maxBy } from 'lodash-es'
08c1efbe
C
12
13@Component({
14 selector: 'my-account-video-channels',
15 templateUrl: './my-account-video-channels.component.html',
16 styleUrls: [ './my-account-video-channels.component.scss' ]
17})
6a478b11 18export class MyAccountVideoChannelsComponent implements OnInit {
08c1efbe 19 videoChannels: VideoChannel[] = []
8165d00a
RK
20 videoChannelsData: any[]
21 videoChannelsMinimumDailyViews = 0
22 videoChannelsMaximumDailyViews: number
08c1efbe
C
23
24 private user: User
25
26 constructor (
27 private authService: AuthService,
f8b2c1b4 28 private notifier: Notifier,
08c1efbe 29 private confirmService: ConfirmService,
b1d40cff 30 private videoChannelService: VideoChannelService,
8165d00a 31 private screenService: ScreenService,
b1d40cff 32 private i18n: I18n
08c1efbe
C
33 ) {}
34
35 ngOnInit () {
36 this.user = this.authService.getUser()
37
38 this.loadVideoChannels()
39 }
40
8165d00a
RK
41 get isInSmallView () {
42 return this.screenService.isInSmallView()
43 }
44
45 get chartOptions () {
46 return {
47 legend: {
48 display: false
49 },
50 scales: {
51 xAxes: [{
52 display: false
53 }],
54 yAxes: [{
55 display: false,
56 ticks: {
57 min: Math.max(0, this.videoChannelsMinimumDailyViews - (3 * this.videoChannelsMaximumDailyViews / 100)),
58 max: this.videoChannelsMaximumDailyViews
59 }
60 }],
61 },
62 layout: {
63 padding: {
64 left: 15,
65 right: 15,
66 top: 10,
67 bottom: 0
68 }
69 },
70 elements: {
71 point:{
72 radius: 0
73 }
74 },
75 tooltips: {
76 mode: 'index',
77 intersect: false,
78 custom: function (tooltip: any) {
79 if (!tooltip) return;
80 // disable displaying the color box;
81 tooltip.displayColors = false;
82 },
83 callbacks: {
84 label: function (tooltip: any, data: any) {
85 return `${tooltip.value} views`;
86 }
87 }
88 },
89 hover: {
90 mode: 'index',
91 intersect: false
92 }
93 }
94 }
95
08c1efbe
C
96 async deleteVideoChannel (videoChannel: VideoChannel) {
97 const res = await this.confirmService.confirmWithInput(
b1d40cff 98 this.i18n(
df93a9be
C
99 // tslint:disable
100 'Do you really want to delete {{channelDisplayName}}? It will delete all videos uploaded in this channel, and you will not be able to create another channel with the same name ({{channelName}})!',
b4593cd7
C
101 { channelDisplayName: videoChannel.displayName, channelName: videoChannel.name }
102 ),
103 this.i18n(
104 'Please type the display name of the video channel ({{displayName}}) to confirm',
105 { displayName: videoChannel.displayName }
b1d40cff 106 ),
08c1efbe 107 videoChannel.displayName,
b1d40cff 108 this.i18n('Delete')
08c1efbe
C
109 )
110 if (res === false) return
111
112 this.videoChannelService.removeVideoChannel(videoChannel)
113 .subscribe(
f8b2c1b4 114 () => {
08c1efbe 115 this.loadVideoChannels()
f8b2c1b4 116 this.notifier.success(
25acef90 117 this.i18n('Video channel {{videoChannelName}} deleted.', { videoChannelName: videoChannel.displayName })
b1d40cff 118 )
08c1efbe
C
119 },
120
f8b2c1b4 121 error => this.notifier.error(error.message)
08c1efbe
C
122 )
123 }
124
125 private loadVideoChannels () {
126 this.authService.userInformationLoaded
ad9e39fb 127 .pipe(flatMap(() => this.videoChannelService.listAccountVideoChannels(this.user.account)))
8165d00a
RK
128 .subscribe(res => {
129 this.videoChannels = res.data
130 this.videoChannelsData = this.videoChannels.map(v => ({
131 labels: v.viewsPerDay.map(day => day.date.toLocaleDateString()),
132 datasets: [
133 {
134 label: this.i18n('Views for the day'),
135 data: v.viewsPerDay.map(day => day.views),
136 fill: false,
137 borderColor: "#c6c6c6"
138 }
139 ]
140 }))
141 this.videoChannelsMinimumDailyViews = minBy(this.videoChannels.map(v => minBy(v.viewsPerDay, day => day.views)), day => day.views).views
142 this.videoChannelsMaximumDailyViews = maxBy(this.videoChannels.map(v => maxBy(v.viewsPerDay, day => day.views)), day => day.views).views
143 })
08c1efbe
C
144 }
145}