]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts
Implement auto follow in client
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-notification-preferences / my-account-notification-preferences.component.ts
CommitLineData
2f1548fd
C
1import { Component, Input, OnInit } from '@angular/core'
2import { User } from '@app/shared'
3import { I18n } from '@ngx-translate/i18n-polyfill'
4import { Subject } from 'rxjs'
5import { UserNotificationSetting, UserNotificationSettingValue, UserRight } from '../../../../../../shared'
6import { Notifier, ServerService } from '@app/core'
7import { debounce } from 'lodash-es'
8import { UserNotificationService } from '@app/shared/users/user-notification.service'
9
10@Component({
11 selector: 'my-account-notification-preferences',
12 templateUrl: './my-account-notification-preferences.component.html',
13 styleUrls: [ './my-account-notification-preferences.component.scss' ]
14})
15export class MyAccountNotificationPreferencesComponent implements OnInit {
16 @Input() user: User = null
17 @Input() userInformationLoaded: Subject<any>
18
19 notificationSettingKeys: (keyof UserNotificationSetting)[] = []
20 emailNotifications: { [ id in keyof UserNotificationSetting ]: boolean } = {} as any
21 webNotifications: { [ id in keyof UserNotificationSetting ]: boolean } = {} as any
22 labelNotifications: { [ id in keyof UserNotificationSetting ]: string } = {} as any
23 rightNotifications: { [ id in keyof Partial<UserNotificationSetting> ]: UserRight } = {} as any
24 emailEnabled: boolean
25
26 private savePreferences = debounce(this.savePreferencesImpl.bind(this), 500)
27
28 constructor (
29 private i18n: I18n,
30 private userNotificationService: UserNotificationService,
31 private serverService: ServerService,
32 private notifier: Notifier
33 ) {
7ccddd7b 34
2f1548fd
C
35 this.labelNotifications = {
36 newVideoFromSubscription: this.i18n('New video from your subscriptions'),
37 newCommentOnMyVideo: this.i18n('New comment on your video'),
1e17071b 38 videoAbuseAsModerator: this.i18n('New video abuse'),
7ccddd7b 39 videoAutoBlacklistAsModerator: this.i18n('Video auto-blacklisted waiting review'),
2f1548fd
C
40 blacklistOnMyVideo: this.i18n('One of your video is blacklisted/unblacklisted'),
41 myVideoPublished: this.i18n('Video published (after transcoding/scheduled update)'),
42 myVideoImportFinished: this.i18n('Video import finished'),
43 newUserRegistration: this.i18n('A new user registered on your instance'),
44 newFollow: this.i18n('You or your channel(s) has a new follower'),
846751c9 45 commentMention: this.i18n('Someone mentioned you in video comments'),
e1b49ee5
C
46 newInstanceFollower: this.i18n('Your instance has a new follower'),
47 autoInstanceFollowing: this.i18n('Your instance auto followed another instance')
2f1548fd
C
48 }
49 this.notificationSettingKeys = Object.keys(this.labelNotifications) as (keyof UserNotificationSetting)[]
50
51 this.rightNotifications = {
52 videoAbuseAsModerator: UserRight.MANAGE_VIDEO_ABUSES,
7ccddd7b 53 videoAutoBlacklistAsModerator: UserRight.MANAGE_VIDEO_BLACKLIST,
846751c9 54 newUserRegistration: UserRight.MANAGE_USERS,
e1b49ee5
C
55 newInstanceFollower: UserRight.MANAGE_SERVER_FOLLOW,
56 autoInstanceFollowing: UserRight.MANAGE_CONFIGURATION
2f1548fd
C
57 }
58
59 this.emailEnabled = this.serverService.getConfig().email.enabled
60 }
61
62 ngOnInit () {
63 this.userInformationLoaded.subscribe(() => this.loadNotificationSettings())
64 }
65
66 hasUserRight (field: keyof UserNotificationSetting) {
67 const rightToHave = this.rightNotifications[field]
68 if (!rightToHave) return true // No rights needed
69
70 return this.user.hasRight(rightToHave)
71 }
72
73 updateEmailSetting (field: keyof UserNotificationSetting, value: boolean) {
74 if (value === true) this.user.notificationSettings[field] |= UserNotificationSettingValue.EMAIL
75 else this.user.notificationSettings[field] &= ~UserNotificationSettingValue.EMAIL
76
77 this.savePreferences()
78 }
79
80 updateWebSetting (field: keyof UserNotificationSetting, value: boolean) {
81 if (value === true) this.user.notificationSettings[field] |= UserNotificationSettingValue.WEB
82 else this.user.notificationSettings[field] &= ~UserNotificationSettingValue.WEB
83
84 this.savePreferences()
85 }
86
87 private savePreferencesImpl () {
88 this.userNotificationService.updateNotificationSettings(this.user, this.user.notificationSettings)
89 .subscribe(
90 () => {
91 this.notifier.success(this.i18n('Preferences saved'), undefined, 2000)
92 },
93
94 err => this.notifier.error(err.message)
95 )
96 }
97
98 private loadNotificationSettings () {
99 for (const key of Object.keys(this.user.notificationSettings)) {
100 const value = this.user.notificationSettings[key]
101 this.emailNotifications[key] = value & UserNotificationSettingValue.EMAIL
102
103 this.webNotifications[key] = value & UserNotificationSettingValue.WEB
104 }
105 }
106}