Feed List Item
The Feed List Item provides a standard UI for 'feeds' where multiple users publish information on regular basis on a certain topic.
Z2UI5_CL_SMPC_APP_025
Controls
sap.m
UI5 1.137
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_025- Source file
z2ui5_cl_smpc_app_025.clas.abap↗- Library
- sap.m
- UI5 entity
sap.m.FeedListItem- Demo kit sample
sap.m.sample.FeedListItem- SAP's own sample
- running at sdk.openui5.org ↗
- Minimum UI5
- 1.137
- In the playground
- runs in the browser, with no system and nothing installed
Keywords: feedlistitem, feed, list, item, sap.m, provides, set, verticallayout, feedlistitemaction
Controls it builds
- sap.m.FeedListItem
- sap.m.FeedListItemAction
- sap.m.List
- 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_025.clas.abap — 160 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords feedlistitem feed list item sap.m provides set verticallayout feedlistitemaction
" @summary The Feed List Item provides a standard UI for 'feeds' where multiple users publish information on regular basis on a certain topic.
CLASS z2ui5_cl_smpc_app_025 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
TYPES:
BEGIN OF ty_s_action,
text TYPE string,
icon TYPE string,
key TYPE string,
END OF ty_s_action.
TYPES ty_t_action TYPE STANDARD TABLE OF ty_s_action WITH EMPTY KEY.
TYPES:
BEGIN OF ty_s_entry,
author TYPE string,
author_pic_url TYPE string,
type TYPE string,
date TYPE string,
actions TYPE ty_t_action,
text TYPE string,
END OF ty_s_entry.
DATA t_entry_collection TYPE STANDARD TABLE OF ty_s_entry WITH EMPTY KEY.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS view_display.
METHODS on_event.
METHODS model_init.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_025 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_init( ).
model_init( ).
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( ).
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns:l` v = `sap.ui.layout`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns` v = `sap.m`
)->ele( n = `VerticalLayout` ns = `l`
)->a( n = `class` v = `sapUiContentPadding`
)->a( n = `width` v = `100%`
)->ele( n = `content` ns = `l`
)->ele( `List`
)->a( n = `headerText` v = `Feed Entries`
)->a( n = `items` v = client->_bind( t_entry_collection )
)->ele( `FeedListItem`
)->a( n = `sender` v = `{AUTHOR}`
)->a( n = `icon` v = `{AUTHOR_PIC_URL}`
)->a( n = `senderPress` v = client->_event( val = `PRESSED` arg = `${AUTHOR}` )
)->a( n = `iconPress` v = client->_event( val = `PRESSED` arg = `${AUTHOR}` )
)->a( n = `info` v = `{TYPE}`
)->a( n = `timestamp` v = `{DATE}`
)->a( n = `text` v = `{TEXT}`
)->a( n = `convertLinksToAnchorTags` v = `All`
)->a( n = `actions` v = `{path: 'ACTIONS', templateShareable: false}`
" the item index for the original's removeItem travels via the List's indexOfItem on the event's item parameter
)->tag( `FeedListItemAction`
)->a( n = `text` v = `{TEXT}`
)->a( n = `icon` v = `{ICON}`
)->a( n = `key` v = `{KEY}`
)->a( n = `press` v = client->_event( val = `ACTION_PRESSED`
t_arg = VALUE #( ( `${KEY}` )
( `${$parameters>/item}.getParent().indexOfItem(${$parameters>/item})` ) ) ) ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
CASE client->get_event( ).
WHEN `PRESSED`.
client->message_toast_display( |Pressed on { client->get_event_arg( ) }| ).
WHEN `ACTION_PRESSED`.
DATA(action) = client->get_event_arg( ).
IF action = `delete`.
" the original's removeItem: splice the entry out of the collection (index arrives zero-based)
DATA(index) = CONV i( client->get_event_arg( 2 ) ) + 1.
DELETE t_entry_collection INDEX index.
client->message_toast_display( `Item deleted` ).
ELSE.
client->message_toast_display( |Action "{ action }" pressed.| ).
ENDIF.
ENDCASE.
ENDMETHOD.
METHOD model_init.
" the sample's feed.json; AuthorPicUrl rewritten to the OpenUI5 host, entries without Actions keep an empty table
t_entry_collection = VALUE #(
( author = `Alexandrina Victoria`
author_pic_url = `https://sdk.openui5.org/test-resources/sap/m/images/dronning_victoria.jpg`
type = `Request`
date = `March 03 2013`
actions = VALUE #( ( text = `Delete` icon = `sap-icon://delete` key = `delete` )
( text = `Share` icon = `sap-icon://share-2` key = `share` )
( text = `Edit` icon = `sap-icon://edit` key = `edit` ) )
text = `Lorem <strong>ipsum dolor sit amet</strong>, <em>consetetur sadipscing elitr</em>, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, ` &&
`<a href='http://www.sap.com'>sed diam voluptua</a>. At vero eos et accusam et justo duo dolores et ea rebum.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod ` &&
`<strong>tempor invidunt ut labore et dolore magna</strong> aliquyam erat, sed diam voluptua. <em>At vero eos et accusam et justo</em> duo dolores et ea rebum. ` &&
`Lorem ipsum dolor sit amet, consetetur sadipscing elitr, seddiamnonumyeirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. ` &&
`Lorem ipsum dolor sit amet, consetetur sadipscing elitr, <u>sed diam nonumy eirmod tempor invidunt ut labore</u> et dolore magna aliquyam erat, sed diam voluptua. ` &&
`<strong>At vero eos et accusam</strong> et justo duo dolores et ea rebum. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod ` &&
`<a href='//www.sap.com'>tempor invidunt</a> ut labore et dolore magna aliquyam erat, sed diam voluptua. <em>At vero eos et accusam</em> et justo duo dolores et ea rebum. ` &&
`Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.` )
( author = `George Washington`
author_pic_url = `https://sdk.openui5.org/test-resources/sap/m/images/george_washington.jpg`
type = `Reply`
date = `March 04 2013`
text = `Lorem ipsum dolor sit <a href='http://www.sap.com'>amet</a>, consetetur sadipscing elitr, <em>sed diam</em> nonumy <strong>eirmod tempor</strong> invidunt ut labore` )
( author = `Alexandrina Victoria`
author_pic_url = `https://sdk.openui5.org/test-resources/sap/m/images/dronning_victoria.jpg`
type = `Request`
date = `March 05 2013`
actions = VALUE #( ( text = `Delete` icon = `sap-icon://delete` key = `delete` )
( text = `Share` icon = `sap-icon://share-2` key = `share` )
( text = `Edit` icon = `sap-icon://edit` key = `edit` ) )
text = `Lorem ipsum dolor sit amet, <u>consetetur sadipscing elitr</u>, sed diam nonumy eirmod tempor <strong>invidunt ut labore et dolore magna</strong> aliquyam erat` )
( author = `George Washington`
author_pic_url = `https://sdk.openui5.org/test-resources/sap/m/images/george_washington.jpg`
type = `Rejection`
date = `March 07 2013`
text = `Lorem ipsum dolor sit amet, consetetur sadipscing elitr, www.sap.com sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.` ) ).
ENDMETHOD.
ENDCLASS.
More in sap.m
- Dialog with Confirm Options — Creating a dialog with confirm and reject options that replaces the confirmDialog functio…
- Display List Item — Use the Display List Item for showing name/value pairs.
- Draft Indicator — The Draft Indicator shows that eighter currently a draft is saving or that it is already…
- Facet Filter - Light — This is a 'Light' version of the Facet Filter. It is for small displays where only a sele…
- Feed Content — Shows the tile containing the text of the feed, a subheader, and a numeric value.
- Feed — This sample shows you how to build a complete feed user interface by combining a FeedInpu…
- Flex Box - Nested — Flex Boxes can be nested. Remember also that HBox and VBox are 'convenience' controls bas…
- Generic Tag with Different Configurations — Previews of the GenericTag control based on combinations of different sets of properties.
- KPI Tile — Shows KPI Tile samples that can contain header, subheader, key value, trend, scale, unit…
- Header Container - Horizontal Mode — The Header Container with horizontal layout. It provides horizontal scrolling on mobile d…
- Icon Tab Bar - Stretch Content Height — In this example, the IconTabBar height is stretched to the maximum height of the page con…
- Image with ImageMode.Background — Visualizes the state of the control when the mode property is set to ImageMode.Background.
On this page