且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

SAP Fiori Elements Object Page页面渲染原理

更新时间:2022-09-03 21:41:28

I have already been working with Smart template for one month. Since now no frontend JavaScript code for application is generated but instead the template maintained centrally by SAP is used in the runtime, so it might be a little bit difficult for trouble shooting when you meet with issues, for example, the object page is blank after navigation, or some field in object page is empty, and so on.


I tried to explain my personal understanding about how object page is rendered in the runtime. For list report page, the logic is the same. Since I am not expert on smart template, so please kindly point it out if there is something wrong in this blog.


Per my understanding, I will explain the technical implementation of Smart Template as: An XML view with hierarchical XML fragments where Smart Controls works with the help of OData annotation.


Design time

Where do we start to do self-study on Smart Template?


Switch any one of application generated by Smart Template to debug mode using Ctrl+Alt+Shift+P, refresh and you can observe the following XML files are loaded. The Details.view.xml contains the overall definition of object page view.


SAP Fiori Elements Object Page页面渲染原理


Have a look at the source code of this xml view file, you can find the object page consists of six building blocks, each block is included in the object page via fragment. This is the reason why you could also see the download of these six fragment files from the above screenshot.


SAP Fiori Elements Object Page页面渲染原理


The dedicated facets we see in object page are included in Sections fragment.


SAP Fiori Elements Object Page页面渲染原理


So open Sections.fragment.xml.


SAP Fiori Elements Object Page页面渲染原理


Finally, open Facet.fragment.xml view:


SAP Fiori Elements Object Page页面渲染原理


Till now, the source code of these template files have perfectly explained why you have to define annotations such as LineItem and Identification etc. The annotations you find in the template file work as a contract between Smart Template and developers who consume them. If developers strictly follow the protocol, the whole thing orchestrates well.


Runtime

How are the above mentioned fragment, extension point and other stuff loaded in the runtime? You should already recognize several tags like with, repeat and if in XML view. How are these tags parsed in the runtime?


SAP Fiori Elements Object Page页面渲染原理


Switch to debug mode, in Chrome development tool click Sources tab, Ctrl+O and type “XMLPre”, there will be auto completion for search result. Choose XMLPreprocessor-dbg.js:


SAP Fiori Elements Object Page页面渲染原理


Since the details.view.xml is loaded in the runtime into memory as a DOM and parsed via depth-first search recursively, this is so called “Pre-Process” as indicated by the file name XMLPreprocessor-dbg.js itself. In this file you can find a big SWITCH CASE statement and each tag is handled in different case statement accordingly.


SAP Fiori Elements Object Page页面渲染原理


For example, in XML file it is defined that the template:repeat operation will only be performed if the test defined by formattersap.suite.ui.generic.template.js.AnnotationHelper.hasBreadCrumbs has returned true.


SAP Fiori Elements Object Page页面渲染原理


In the runtime, the evaluation would be debugged as below:


SAP Fiori Elements Object Page页面渲染原理


The callstack could be found below:



SAP Fiori Elements Object Page页面渲染原理

You can find detail log about this pre-processing result in Console tab of Chrome development tool with filter “XMLPreprocessor”.


SAP Fiori Elements Object Page页面渲染原理


How to get pre-processing result

Set a breakpoint on line 187 of XMLView-dbg.js, and the XML source code is just stored in variable this._xContent.


SAP Fiori Elements Object Page页面渲染原理


SAP Fiori Elements Object Page页面渲染原理

If you open converted xml file, you can find that all place holders via “{ } “defined in template file like Details.view.xml are now filled with actual value provided by annotation.


SAP Fiori Elements Object Page页面渲染原理


Annotation datasource

In manifest.json file data source is defined which consists of two parts: the remote one coming from backend and the local one, annotations.xml contained in project folder:


SAP Fiori Elements Object Page页面渲染原理


This is the reason in Network tab you can observe there are two sequential http requests for the remote one and local one.


SAP Fiori Elements Object Page页面渲染原理


This is an example of remote annotation:


SAP Fiori Elements Object Page页面渲染原理


This is an example of local annotation:



SAP Fiori Elements Object Page页面渲染原理

OData metadata merged with Annotations

The two annotation data sources will be merged with OData metadata in line 187 below:


SAP Fiori Elements Object Page页面渲染原理


All subsequent processing are done based on this MERGED data model.

Hope this blog can shed light on your smart template related trouble shooting process.