Dynamic Page with Responsive Avatar
Dynamic Page demonstrating the breakpointChange event to adjust Avatar sizes responsively based on breakpoints.
Z2UI5_CL_SMPC_APP_244
Controls
sap.f
UI5 1.147
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_244- Source file
z2ui5_cl_smpc_app_244.clas.abap↗- Library
- sap.f
- UI5 entity
sap.f.DynamicPage- Demo kit sample
sap.f.sample.DynamicPageResponsiveAvatar- SAP's own sample
- running at sdk.openui5.org ↗
- Minimum UI5
- 1.147
- In the playground
- runs in the browser, with no system and nothing installed
Keywords: dynamicpage, dynamic, sap.f, dynamicpageresponsiveavatar, dynamicpagetitle, breadcrumbs, link, hbox, title, objectmarker, text, flexbox
Controls it builds
- sap.f.DynamicPage
- sap.f.DynamicPageHeader
- sap.f.DynamicPageTitle
- sap.m.Avatar
- sap.m.Breadcrumbs
- sap.m.Button
- sap.m.FlexBox
- sap.m.HBox
- sap.m.Label
- sap.m.Link
- sap.m.MessageStrip
- sap.m.ObjectMarker
- sap.m.OverflowToolbar
- sap.m.OverflowToolbarButton
- sap.m.OverflowToolbarLayoutData
- sap.m.Text
- sap.m.Title
- sap.m.ToolbarSpacer
- sap.m.VBox
- sap.ui.core.mvc.View
- sap.ui.layout.VerticalLayout
Read out of the builder chain by the abap2UI5 linter, not from the category this sample is filed under — which is what makes “which samples build one of these” a question the catalogue can answer at all.
Libraries
Run it here
The sample running, in this page — the app on its own, with no editor over it.
Switch to Playground with this code
Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.
The ABAP
z2ui5_cl_smpc_app_244.clas.abap — 303 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords dynamicpage dynamic sap.f dynamicpageresponsiveavatar dynamicpagetitle breadcrumbs link hbox title objectmarker text flexbox
" @summary Dynamic Page demonstrating the breakpointChange event to adjust Avatar sizes responsively based on breakpoints.
CLASS z2ui5_cl_smpc_app_244 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
DATA show_footer TYPE abap_bool.
DATA avatar_size TYPE string.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS view_display.
METHODS on_event.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_244 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_init( ).
show_footer = abap_true.
avatar_size = `XL`.
view_display( ).
ELSEIF client->check_on_navigated( ).
view_display( ).
ELSEIF client->check_on_event( ).
on_event( ).
ENDIF.
ENDMETHOD.
METHOD view_display.
DATA(view) = z2ui5_cl_ui5_view_builder=>factory( ).
" sap.f.DynamicPage with a responsive Avatar. showFooter is two-way bound to
" a model flag ({/SHOW_FOOTER}, default true) and Toggle Footer flips it -
" the faithful abap2UI5 form of the controller's imperative setShowFooter.
" The Home/Examples/Avatar presses raise client-composed MessageToasts.
" breakpointChange (the sample's point) is wired as a view attribute (the
" original attaches it in onInit) and drives both Avatars' bound displaySize.
" test-resources image URLs point at the sdk.openui5.org host (offline rule).
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns` v = `sap.m`
)->a( n = `xmlns:f` v = `sap.f`
)->a( n = `xmlns:layout` v = `sap.ui.layout`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `height` v = `100%`
)->ele( n = `DynamicPage` ns = `f`
)->a( n = `id` v = `dynamicPageId`
)->a( n = `showFooter` v = client->_bind( show_footer )
" added wire (declared): the controller attaches this in onInit
)->a( n = `breakpointChange` v = client->_event( val = `BREAKPOINT_CHANGE`
t_arg = VALUE #( ( `${$parameters>/currentRange}` ) ( `${$parameters>/currentWidth}` ) ) )
)->ele( n = `title` ns = `f`
)->ele( n = `DynamicPageTitle` ns = `f`
)->ele( n = `breadcrumbs` ns = `f`
)->ele( `Breadcrumbs`
)->a( n = `currentLocationText` v = `Responsive Avatar Demo`
)->tag( `Link`
)->a( n = `text` v = `Home`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `Home pressed` ) ) )
)->tag( `Link`
)->a( n = `text` v = `Examples`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `Examples pressed` ) ) )
)->end(
)->end(
)->ele( n = `heading` ns = `f`
)->ele( `HBox`
)->tag( `Title`
)->a( n = `text` v = `Denise Smith`
)->a( n = `wrapping` v = `true`
)->tag( `ObjectMarker`
)->a( n = `type` v = `Favorite`
)->a( n = `class` v = `sapUiTinyMarginBegin`
)->end(
)->end(
)->ele( n = `expandedContent` ns = `f`
)->tag( `Text`
)->a( n = `text` v = `Senior UI Developer`
)->end(
)->ele( n = `snappedContent` ns = `f`
)->ele( `FlexBox`
)->a( n = `fitContainer` v = `true`
)->a( n = `alignItems` v = `Center`
)->tag( `Avatar`
)->a( n = `id` v = `snappedAvatar`
)->a( n = `displaySize` v = client->_bind( avatar_size )
)->a( n = `src` v = `https://sdk.openui5.org/test-resources/sap/uxap/images/imageID_275314.png`
)->a( n = `class` v = `sapUiTinyMarginEnd`
)->tag( `Text`
)->a( n = `text` v = `Senior UI Developer`
)->end(
)->end(
)->ele( n = `actions` ns = `f`
)->ele( `OverflowToolbarButton`
)->a( n = `icon` v = `sap-icon://edit`
)->a( n = `text` v = `Edit`
)->a( n = `type` v = `Emphasized`
)->a( n = `tooltip` v = `Edit`
)->ele( `layoutData`
)->tag( `OverflowToolbarLayoutData`
)->a( n = `priority` v = `NeverOverflow`
)->end(
)->end(
)->tag( `Button`
)->a( n = `text` v = `Toggle Footer`
)->a( n = `press` v = client->_event( `TOGGLE_FOOTER` )
)->end(
)->end(
)->end(
)->ele( n = `header` ns = `f`
)->ele( n = `DynamicPageHeader` ns = `f`
)->a( n = `pinnable` v = `true`
)->ele( `FlexBox`
)->a( n = `wrap` v = `Wrap`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Avatar`
)->a( n = `id` v = `headerAvatar`
)->a( n = `displaySize` v = client->_bind( avatar_size )
)->a( n = `class` v = `sapUiSmallMarginEnd`
)->a( n = `src` v = `https://sdk.openui5.org/test-resources/sap/uxap/images/imageID_275314.png`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `Avatar pressed` ) ) )
)->ele( n = `VerticalLayout` ns = `layout`
)->a( n = `class` v = `sapUiSmallMarginBeginEnd`
)->tag( `Link`
)->a( n = `text` v = `+33 6 4512 5158`
)->tag( `Link`
)->a( n = `text` v = `DeniseSmith@sap.com`
)->end(
)->ele( n = `VerticalLayout` ns = `layout`
)->a( n = `class` v = `sapUiSmallMarginBeginEnd`
)->tag( `Label`
)->a( n = `text` v = `San Jose, USA`
)->tag( `Label`
)->a( n = `text` v = `Resize the browser to see the Avatar adapt`
)->end(
)->end(
)->tag( `MessageStrip`
)->a( n = `text` v = `The Avatar size changes automatically based on screen size: Phone (M), Tablet (L), Desktop/DesktopExtraLarge (XL). This is handled using the breakpointChange event.`
)->a( n = `type` v = `Information`
)->a( n = `showIcon` v = `true`
)->a( n = `class` v = `sapUiTinyMarginTopBottom`
)->end(
)->end(
)->ele( n = `content` ns = `f`
)->ele( `VBox`
)->a( n = `class` v = `sapUiContentPadding`
)->tag( `Title`
)->a( n = `text` v = `About`
)->a( n = `titleStyle` v = `H2`
)->a( n = `class` v = `sapUiMediumMarginBottom`
)->ele( n = `VerticalLayout` ns = `layout`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Title`
)->a( n = `text` v = `Responsive Avatar Example`
)->a( n = `level` v = `H3`
)->tag( `Text`
)->a( n = `text` v = `This sample demonstrates how to use the breakpointChange event to make Avatar sizes responsive.`
)->tag( `Text`
)->a( n = `text` v = `The DynamicPage fires the breakpointChange event whenever its width changes and crosses a breakpoint.`
)->tag( `Text`
)->a( n = `text` v = `The application can handle this event to adjust UI elements like Avatar sizes accordingly.`
)->tag( `Text`
)->a( n = `class` v = `sapUiSmallMarginTop`
)->a( n = `text` v = `Breakpoints:`
)->tag( `Text`
)->a( n = `text` v = `- Phone: less than 600px ? Avatar size M (4rem)`
)->tag( `Text`
)->a( n = `text` v = `- Tablet: 600px - 1024px ? Avatar size L (5rem)`
)->tag( `Text`
)->a( n = `text` v = `- Desktop: 1024px - 1439px ? Avatar size XL (7rem)`
)->tag( `Text`
)->a( n = `text` v = `- DesktopExtraLarge: 1440px and above ? Avatar size XL (7rem)`
)->end(
)->tag( `Title`
)->a( n = `text` v = `Implementation`
)->a( n = `titleStyle` v = `H2`
)->a( n = `class` v = `sapUiMediumMarginTopBottom`
)->ele( n = `VerticalLayout` ns = `layout`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Title`
)->a( n = `text` v = `How it Works`
)->a( n = `level` v = `H3`
)->tag( `Text`
)->a( n = `text` v = `1. Attach to the breakpointChange event in the controller's onInit method`
)->tag( `Text`
)->a( n = `text` v = `2. In the event handler, get the currentRange parameter (Phone/Tablet/Desktop/DesktopExtraLarge)`
)->tag( `Text`
)->a( n = `text` v = `3. Map the range to appropriate Avatar sizes using a switch statement`
)->tag( `Text`
)->a( n = `text` v = `4. Update the Avatar's displaySize property`
)->tag( `Text`
)->a( n = `class` v = `sapUiSmallMarginTop`
)->a( n = `text` v = `The event provides two parameters:`
)->tag( `Text`
)->a( n = `text` v = `- currentRange: The media range name (Phone, Tablet, Desktop, or DesktopExtraLarge)`
)->tag( `Text`
)->a( n = `text` v = `- currentWidth: The current width of the control in pixels`
)->end(
)->tag( `Title`
)->a( n = `text` v = `Additional Content`
)->a( n = `titleStyle` v = `H2`
)->a( n = `class` v = `sapUiMediumMarginTopBottom`
)->ele( n = `VerticalLayout` ns = `layout`
)->tag( `Title`
)->a( n = `text` v = `Benefits`
)->a( n = `level` v = `H3`
)->tag( `Text`
)->a( n = `text` v = `- Full application control over responsive behavior`
)->tag( `Text`
)->a( n = `text` v = `- Simple event-based API`
)->tag( `Text`
)->a( n = `text` v = `- Can be used for any responsive UI adjustments, not just Avatars`
)->tag( `Text`
)->a( n = `text` v = `- Works seamlessly with FlexibleColumnLayout and other container controls`
)->end(
)->end(
)->end(
)->ele( n = `footer` ns = `f`
)->ele( `OverflowToolbar`
)->tag( `ToolbarSpacer`
)->tag( `Button`
)->a( n = `type` v = `Accept`
)->a( n = `text` v = `Accept`
)->tag( `Button`
)->a( n = `type` v = `Reject`
)->a( n = `text` v = `Reject`
)->end(
)->end(
)->end(
)->end( ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
CASE client->get_event( ).
WHEN `TOGGLE_FOOTER`.
" toggleFooter: setShowFooter(!getShowFooter()) - reproduced by flipping
" the two-way bound flag and pushing the model back to the client
show_footer = xsdbool( show_footer = abap_false ).
WHEN `BREAKPOINT_CHANGE`.
" onBreakpointChange: map the media range to the Avatar size (Phone M,
" Tablet L, Desktop/DesktopExtraLarge XL), update both bound Avatars
" and toast 'Media Range: <range> (<width>px)'
DATA(lv_range) = client->get_event_arg( ).
DATA(lv_width) = client->get_event_arg( 2 ).
avatar_size = SWITCH #( lv_range
WHEN `Phone` THEN `M`
WHEN `Tablet` THEN `L`
ELSE `XL` ).
client->message_toast_display( |Media Range: { lv_range } ({ lv_width }px)| ).
ENDCASE.
ENDMETHOD.
ENDCLASS.
More in sap.f
- Grid List features - Grouping, Header, Growing — This sample illustrates subgroups with headers, custom header and lazy loading of GridLis…
- Grid List - Break point examples - S, M, L, XL — This sample illustrates how to configure the responsive settings for different container…
- Shell Bar with search — Shell Bar example with configured search functionality.
- Grid List with Responsive Column Layout — This layout displays a variable number of grid columns depending on available screen size…
- Flexible Column Layout (with Event Bus) — Clicking on a link in a column opens the next column.
- Dynamic Page with Sticky Subheader — Dynamic Page containing an sap.m.IconTabBar in the sticky subheader content area.
- Flexible Column Layout Landmark Info For Columns — Flexible Column Layout where the first and the last columns have custom Landmark Info
- Flexible Column Layout Landmark Info For Arrows — Flexible Column Layout where the all the arrows have custom Landmark Info
- Grid Container - Drag and Drop — This sample represents GridContainer with enabled Drag and Drop functionality.
- Grid Container - Drag and Drop From List to GridContainer — This sample represents how items from a control which is not GridContainer can be dragged…
- Grid Container - Keyboard navigation between multiple grids — This sample demonstrates the keyboard navigation between multiple grids
- Semantic Page - Freestyle Sample — This sample demonstrates a SemanticPage with all semantic-specific actions both in the ti…
On this page