天天看点

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

The hyperlink could easily be defined by Smart field with the help of corresponding annotation declared in OData Model metadata.

The hyperlink in this example looks like below in UI:

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed
SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

All the source code of this sample project could be found from this link.

Project resource overview

(1) the label of Hyperlink field is defined in metadata via annotation “sap:label”

(2) the hyperlink field itself is defined in XML view. Its value is bound to field Name in OData Model.

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

(3) in OData model, the field Name has maintained annotation “com.sap.vocabularies.Common.v1.SemanticObject” so in runtime UI5 framework will render it as a SmartLink.

(4) Once pressed, UI5 framework will raise a popup which contains additional three links which are available to click. The navigation target is defined by application as below.

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed
SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed
​Since now semantic annotation is available, in line 55 there is a central _getCreator which will return the dedicated function name for control creation.
SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed
Within this _createEdmSemantic, a new instance of SmartLink is created.
SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

How is the popup dialog rendered when hyperlink is pressed

In event handler _linkPressed, semantic Attributes are calculated and returned:

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

As the first step, in fOpen() a new popup dialog is created via _createPopover().

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

In order to render the hyperlinks within the popup dialog, UI5 framework must know the navigation target url. This information is provided by application and retrieved by UI5 framework asynchronously:

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

After that you could observe that the three navigation information are maintained in the popup dialog instance’s aggregation area:

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed

And the event handler for it will call show function of popup dialog, so you could see it in UI finally.

SAP Fiori Elements里Smart Link工作原理介绍How is the popup dialog rendered when hyperlink is pressed