feat(ui5-user-settings-notifications-view): introduce NotificationsView in UserSettingsDialog - #13885
Open
dobromiraboycheva wants to merge 9 commits into
Open
feat(ui5-user-settings-notifications-view): introduce NotificationsView in UserSettingsDialog#13885dobromiraboycheva wants to merge 9 commits into
dobromiraboycheva wants to merge 9 commits into
Conversation
…ew component family
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 08:43 — with
GitHub Actions
Inactive
Sample sync reminderHTML sample changed but React sample (
Please keep both samples in sync, or ignore if the change does not apply to both. |
|
🚀 Deployed on https://pr-13885--ui5-webcomponents-preview.netlify.app |
… and samples with design spec
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 11:43 — with
GitHub Actions
Inactive
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 11:43 — with
GitHub Actions
Inactive
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 11:46 — with
GitHub Actions
Inactive
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 11:56 — with
GitHub Actions
Inactive
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 12:01 — with
GitHub Actions
Inactive
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 12:05 — with
GitHub Actions
Inactive
…e div elements in React sample
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 3, 2026 12:17 — with
GitHub Actions
Inactive
dobromiraboycheva
temporarily deployed
to
netlify-preview
August 4, 2026 08:08 — with
GitHub Actions
Inactive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Introducing a new
UserSettingsNotificationsViewcomponent family for managing notification preferences insideUserSettingsDialog. The design follows a primary → detail drill-inpattern: a primary view lists all notification types (optionally grouped), and each navigable item opens a dedicated secondary view with its own independent state.
Structure
Three new components:
ui5-user-settings-notifications-view— extendsUserSettingsView. Acts as both the primary list view and the secondary detail view (marked withsecondary). Handles drill-innavigation automatically by matching a clicked item's
item-keyto theidof a sibling secondary view. If noidmatches, falls back to the first secondary sibling and sets itstextto the clicked item's label. Navigation can be fully overridden by canceling theitem-clickevent.ui5-user-settings-notifications-view-group— extendsListItemGroup. Groups items under a bold section header with a separator line, per the Fiori notifications design spec.ui5-user-settings-notifications-view-item— extendsListItemCustom. A toggle row with a title, an optional byline, and a trailing switch reflectingchecked. Settingnavigablerenders a navigation arrow and makes the row clickable. The trailing switch can be replaced entirely via theendContentslot (e.g. aui5-selectfor frequency); whenendContentis provided the switch andswitch-changeevent are suppressed.API
ui5-user-settings-notifications-view-itempropertiesitemKeystring""idfor drill-in navigation.textstring""bylineTextstring""checkedbooleanfalseendContentis used.navigablebooleanfalseitem-clickevent.ui5-user-settings-notifications-view-itemslotsendContentui5-select). Suppressesswitch-change.ui5-user-settings-notifications-view-grouppropertiesheaderTextstring""ui5-user-settings-notifications-viewslotsdefaultui5-user-settings-notifications-view-itemandui5-user-settings-notifications-view-groupelements.additionalContentui5-message-strip).Usage
Primary view with groups and navigable items:

Listening to events: