From dc4e0ddb742c04bb16a4b921029af263bc240b0e Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 26 Nov 2021 15:29:55 +0100 Subject: [PATCH 1/1] Improve notification settings UI --- ...nt-notification-preferences.component.html | 48 ++++++++-------- ...nt-notification-preferences.component.scss | 4 +- ...ount-notification-preferences.component.ts | 56 ++++++++++++++++--- 3 files changed, 77 insertions(+), 31 deletions(-) diff --git a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html index 75951006d..c3cfe0314 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html +++ b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html @@ -1,25 +1,29 @@ -
-
Activities
-
Web
-
Email
-
+
+ +
+
{{ group.label }}
+
Web
+
Email
+
- -
-
{{ labelNotifications[notificationType] }}
+ +
+
{{ labelNotifications[notificationType] }}
-
- -
+
+ +
-
- -
-
-
+
+ +
+
+
+
+
diff --git a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss index b4a7a0a6d..2fe1f9536 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss +++ b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss @@ -6,8 +6,10 @@ align-items: center; border-bottom: 1px solid $separator-border-color; - &:first-child { + &.header { font-size: 16px; + font-weight: $font-semibold; + margin-top: 10px; } > div { diff --git a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts index 1eac06234..09da979ab 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts @@ -11,14 +11,14 @@ import { UserNotificationSetting, UserNotificationSettingValue, UserRight } from styleUrls: [ './my-account-notification-preferences.component.scss' ] }) export class MyAccountNotificationPreferencesComponent implements OnInit { - @Input() user: User = null + @Input() user: User @Input() userInformationLoaded: Subject - notificationSettingKeys: (keyof UserNotificationSetting)[] = [] - emailNotifications: { [ id in keyof UserNotificationSetting ]: boolean } = {} as any - webNotifications: { [ id in keyof UserNotificationSetting ]: boolean } = {} as any - labelNotifications: { [ id in keyof UserNotificationSetting ]: string } = {} as any - rightNotifications: { [ id in keyof Partial ]: UserRight } = {} as any + notificationSettingGroups: { label: string, keys: (keyof UserNotificationSetting)[] }[] = [] + emailNotifications: { [ id in keyof UserNotificationSetting ]?: boolean } = {} + webNotifications: { [ id in keyof UserNotificationSetting ]?: boolean } = {} + labelNotifications: { [ id in keyof UserNotificationSetting ]?: string } = {} + rightNotifications: { [ id in keyof Partial ]?: UserRight } = {} emailEnabled = false private savePreferences = debounce(this.savePreferencesImpl.bind(this), 500) @@ -32,7 +32,7 @@ export class MyAccountNotificationPreferencesComponent implements OnInit { newVideoFromSubscription: $localize`New video from your subscriptions`, newCommentOnMyVideo: $localize`New comment on your video`, abuseAsModerator: $localize`New abuse`, - videoAutoBlacklistAsModerator: $localize`Video blocked automatically waiting review`, + videoAutoBlacklistAsModerator: $localize`An automatically blocked video is awaiting review`, blacklistOnMyVideo: $localize`One of your video is blocked/unblocked`, myVideoPublished: $localize`Video published (after transcoding/scheduled update)`, myVideoImportFinished: $localize`Video import finished`, @@ -46,7 +46,47 @@ export class MyAccountNotificationPreferencesComponent implements OnInit { newPeerTubeVersion: $localize`A new PeerTube version is available`, newPluginVersion: $localize`One of your plugin/theme has a new available version` } - this.notificationSettingKeys = Object.keys(this.labelNotifications) as (keyof UserNotificationSetting)[] + this.notificationSettingGroups = [ + { + label: $localize`Social`, + keys: [ + 'newVideoFromSubscription', + 'newFollow', + 'commentMention' + ] + }, + + { + label: $localize`Your videos`, + keys: [ + 'newCommentOnMyVideo', + 'blacklistOnMyVideo', + 'myVideoPublished', + 'myVideoImportFinished' + ] + }, + + { + label: $localize`Moderation`, + keys: [ + 'abuseStateChange', + 'abuseNewMessage', + 'abuseAsModerator', + 'videoAutoBlacklistAsModerator' + ] + }, + + { + label: $localize`Administration`, + keys: [ + 'newUserRegistration', + 'newInstanceFollower', + 'autoInstanceFollowing', + 'newPeerTubeVersion', + 'newPluginVersion' + ] + } + ] this.rightNotifications = { abuseAsModerator: UserRight.MANAGE_ABUSES, -- 2.41.0