Skip to Content
Technical Articles
Author's profile photo Peter Muessig

(UI5) Web Components enablement for OpenUI5/SAPUI5

Introduction

It has been a while since the usage of UI5 Web Components inside OpenUI5 has been shown as part of the UI5ers live episode 6 in March 2021. Finally, it’s time for an update.

Image

The goal is to enable the support of Web Components in general inside OpenUI5/SAPUI5. Therefore, we need to enhance the framework. In this blog post, you will get some basics around Web Components, learn about the benefits of UI5 Web Components and finally get some insights into the Web Components enablement inside OpenUI5/SAPUI5 plus some hands-on instructions to make your fingers dirty.

UPDATE 2022-07-19

UI5 Web Components enablement is now also available for SAPUI5 1.104.0 in an experimental state (for OpenUI5 it is available since 1.97.0)! Please provide feedback for the UI5 Web Components enablement for SAPUI5 in this blog post for us to improve it further.

Web Components

Web Components are the browsers` built-in UI element framework. It comes with a 0kB of footprint and is available in all major browsers as of today. Web Components enhance the browsers standard vocabulary by custom HTML tags which encapsulate the content (HTML), presentation (CSS) and behavior (JS). Web Components are built on top of the following web platform APIs: Custom Elements, Shadow DOM, ES Module and HTML Templates. As Web Components rely on web standards support by all modern browsers, their benefit is to work with most of the HTML-based web UI frameworks out-of-the-box.

UI5 Web Components

UI5 Web Components add the “enterprise-flavored sugar” on top of the native APIs. While you can develop Web Components easily with Vanilla JS some parts may be a bit cumbersome to implement. Therefore, the UI5 Web Components add some convenience to simplify and streamline the development of Web Components:

  • Metadata to declare the available properties, slots, and events
  • Lifecycle hooks to be able to i.e., register event handler at the right time
  • Synchronize the attributes and the properties, enhanced slot handling
  • Declarative syntax to write the renderer by using a markup-centric handlebars syntax
  • Utilities to help you making your UI elements accessible, globalized, themable, and secure

Besides that, UI5 Web Components already provide a comprehensive set of UI elements for your application development, and they are available for free as Open-Source under the Apache 2.0 license.

Web UI Framework Support

Web Components are UI elements and no application programming model. To create an application, still a proper web UI framework is needed. As of today, most of the web UI frameworks support Web Components without any additional effort.

But there are still some web UI frameworks which have some troubles using Web Components, i.e., React. Therefore, UI5 Web Components for React is wrapping all UI5 Web Components as React Components. This allows to use them natively into the React programming model. Those React Components ensure that boolean attributes, as well as custom events can be used without breakouts in JSX.

And what about OpenUI5 and SAPUI5?

(UI5) Web Components Enablement for OpenUI5/SAPUI5

Also, OpenUI5/SAPUI5 doesn’t support Web Components natively. The reason for that is that it abstracts HTML/CSS from developers. Instead of working with HTML/CSS directly, the developers are working with UI5 controls when creating their user interface.

UI5 controls are the link between the HTML/CSS world, the framework, and the programming model. When embedding 3rd party controls, such as Chart.js, ACE, or TinyMCE, best is to write a custom UI5 control to manage the rendering and properly connect to the rendering lifecycle.

For Web Components the framework has been extended by adding special base classes which take care for the rendering of the custom tag, managing the properties, assigning the aggregations to slots, and registering the custom events. Every Web Component which should be used in OpenUI5/SAPUI5 needs to be wrapped by such a so-called wrapper UI5 control.

Technical Structure

The Web Components have been added as additional UI5 libraries. The central UI5 library for the enablement is sap.ui.webc.common which provides the base classes. The most important module is sap.ui.webc.common.WebComponent. It extends sap.ui.core.Control and is the wrapper UI5 control providing the glue code to integrate Web Components into the programming model. This wrapper control takes care to propagate the properties, the aggregation, and the events. It also ensures to render the control and put the aggregated controls in the dedicated slots of the Web Component.

Besides the central UI5 library, two additional Web Component UI5 libraries have been added:

  • ui.webc.main: provides the wrapper UI5 controls for the bread & butter Web Components
  • ui.webc.fiori: provides the wrapper UI5 controls for the SAP Fiori specific Web Components

These libraries are optional and can be added on-demand. But with the availability of these libraries in OpenUI5, some controls are redundant. There is i.e., a sap.m.Button and a sap.ui.webc.main.Button. The question now is: which UI5 control should I use?

Mixing UI5 Libraries? (sap.m vs. sap.ui.webc.main)

Finally, which Button UI5 control you use depends on your scenario. If you develop Ui5 applications in the context of the SAP Fiori launchpad which is using sap.m UI5 controls, you also should stick to use the sap.m UI5 controls. If you start a new UI5 application from scratch for a standalone scenario using the sap.ui.webc.main UI5 controls may be used. Only for sap.m and sap.ui.webc.main it is an either or decision. All other UI5 libraries can be freely combined. I.e., it makes sense to use sap.ui.layout with sap.ui.webc.main to create a proper user interface as UI5 Web Components do not provide layout components.

In future, new UI5 controls will first be developed as UI5 Web Components and then put back into OpenUI5/SAPUI5 via the UI5 Web Components enablement. These UI5 controls or to be precise wrapper UI5 controls can be mixed with sap.m UI5 controls or sap.ui.webc.main UI5 controls. By developing the UI elements as Web Components and use them in OpenUI5/SAPUI5 will ensure the highest possible return of invest and another huge benefit is that the UI elements can be used with other web UI frameworks.

Performance

Before we start to make our hands dirty, I would like to mention the performance topic. Performance is always key and is related to the number of bytes being loaded. Here, UI5 Web Components have a benefit compared to the classic UI5 controls. UI5 Web Components are atomic and provide their content (HTML), presentation (CSS) and behavior (JS) individually. UI5 controls just provide their content (HTML) and behavior (JS) individually but the presentation (CSS) is managed as part of the UI5 library. This is a big difference as the CSS per library grows with the number of controls being included in the library. So, using just a few UI5 Web Components vs. classic UI5 controls will require less bytes to be loaded. In future, we will see what is possible with this benefit – let’s wait for UI5con ON AIR in July 2022! 😉

Availability in SAPUI5

Right now, the UI5 Web Components enablement is only available in OpenUI5. Still, there are a few things missing. The API documentation needs to be reviewed and proper sample pages need to be created. Right now, we are also checking the usage of the wrapper UI5 controls in combination with the classic UI5 controls. Another reason for this is that we want to get some feedback first before we finally submit the enablement in SAPUI5 because once it is submitted in SAPUI5, we need to stay compatible forever! But there might be the possibility to release them even earlier in SAPUI5 by marking them experimental.

Versioning of UI5 Web Components vs. SAPUI5

UI5 Web Components will not stick with major release 1. At any time, we may need to release another major version. Developers using the UI5 Web Components directly from NPM have control on the version which is being used. This is different once part of the OpenUI5 or SAPUI5 distribution. Here the UI5 team defines which version of the UI5 Web Components is used under the hood. And what if now the UI5 Web Components upgrade to version 2? Then, the UI5 team can ensure the compatibility by keeping the APIs of the wrapper UI5 controls stable.

Getting Started

The fastest way to get started with OpenUI5 and the UI5 Web Components enablement layer is to use a very simple JSBin example: https://jsbin.com/peqaxet/1/edit?html,output. This sample is loading OpenUI5 from CDN and is directly using a sap/ui/webc/main/Button and put it into the body:

<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv='X-UA-Compatible' content='IE=edge'>
		<meta charset="utf-8">

		<title>UI5 Web Components Enablement for OpenUI5</title>

		<script id='sap-ui-bootstrap'
			src='https://openui5.hana.ondemand.com/1.104.0/resources/sap-ui-core.js'
			data-sap-ui-theme='sap_fiori_3'
			data-sap-ui-libs='sap.ui.webc.main'
			data-sap-ui-async='true'
			data-sap-ui-compatVersion='edge'></script>

		<script>

			sap.ui.getCore().attachInit(function() {
				sap.ui.require(["sap/ui/webc/main/Button"], function(Button) {
					new Button({
						text: "Hello World"
					}).placeAt("content");
				});
			});
										 
		</script>

	</head>
	<body id='content' class='sapUiBody'>
	</body>
</html>

This looks exactly like using the sap/m/Button within a UI5 application and if you run the application you will see the UI5 Web Components Button integrated as UI5 control.

Using TypeScript and UI5 Web Components in OpenUI5

Now, we will use the Yeoman generator easy-ui5 to kick-start your TypeScript UI5 application. Here you can see how all different pieces play well together: the Easy-UI5 generator, the UI5 Community templates, the OpenUI5 programming model, TypeScript, and most important here the UI5 Web Components inside OpenUI5.

Connecting%20Innovations

To get started, please follow the instructions here. The repository which hosts the state of the example below can be cloned from here (the state has been tagged as “blogpost”):

git clone https://github.com/petermuessig/ui5-webcomponents-enablement.git

The example will also be enhanced in future…

Prerequisites

To get started, you need to ensure that you have a recent Node.js version 14 or higher installed on your machine.

Install Yeoman And Easy-UI5

As a next step, you should install Yeoman and the easy-ui5 generator:

npm install -g yo generator-easy-ui5

To verify, that the installation was successful, just run the following command:

yo --generators

Make sure you see the “easy-ui5” generator listed.

!! To verify the version of the installed generator-easy-ui5 you can run the following command:

npm info generator-easy-ui5 version

The version should be at least 3.3.0 to be able to consume the templates from the UI5 Community GitHub organization listed here.

Create Your Project

Now, you can start to create your first UI5 TypeScript application project by running the following command:

yo easy-ui5 ts-app

This directly calls the ts-app sub-generator of easy-ui5 which creates the project for the UI5 TypeScript application based on e.g. the following parameters:

? How do you want to name this application? myapp
? Which namespace do you want to use? com.myorg
? Which framework do you want to use? OpenUI5
? Which framework version do you want to use? 1.104.0
? Who is the author of the library? Your Name
? Would you like to create a new directory for the application? Yes

After entering the parameters, easy-ui5 already runs npm install to ensure that you can immediately start working in your new project. If this fails, just re-run the npm install command again.

Open Your Project

Switch into new folder com.myorg.myapp and open the editor of your choice (best for this example would be the VSCode). In the project root of the UI5 TypeScript application you will find the well-known package.json and ui5.yaml. Compared to the classic UI5 application projects, the characteristic of the UI5 TypeScript application project is that the sources can be found in the src folder instead of the webapp folder and includes TypeScript instead of JavaScript sources:

project-root
\- src
   \- controller
      \- [...]
      \- App.controller.ts
   \- view
      \- [...]
      \- App.view.xml
   \- [...]
   \- Component.ts
   \- manifest.json
   \- index.html
\- [...]
\- package.json
\- README.md
\- ui5.yaml

More details about the project, the project structure and how to use this project can be found in the project root in the README.md. As the project template is based on the ui5-typescript-helloworld project, you can also read the following README.md online.

Running Your Project

To get an impression about the project and what it finally provides, just run your project in the development mode with the following command:

npm start

Now a browser window should appear which runs the UI5 application.

Using UI5 Web Components in an XMLView

Before we can start to use the sap.ui.webc.main.Button in an XMLView we need to prepare the UI5 application.

1) Add the dependency to the sap.ui.webc.main library:

In the project root execute the following command:

npx ui5 add sap.ui.webc.main

The UI5 tooling is adding the sap.ui.webc.main library as dependency to the ui5.yaml. After that you can run your project again.

2) Clean-up the manifest.json:

In the manifest.json, we replace the sap.m library with the sap.ui.webc.main library and remove the sap.ui5/routing section.

{
	"_version": "1.12.0",

	"sap.app": {
		"id": "com.myorg.myapp",
		"type": "application",
		"i18n": "i18n/i18n.properties",
		"title": "{{app_title}}",
		"description": "{{app_description}}",
		"applicationVersion": {
			"version": "1.0.0"
		}
	},

	"sap.ui": {
		"technology": "UI5",
		"icons": {

		},
		"deviceTypes": {
			"desktop": true,
			"tablet": true,
			"phone": true
		}
	},

	"sap.ui5": {
		"rootView": {
			"viewName": "com.myorg.myapp.view.App",
			"type": "XML",
			"async": true,
			"id": "app"
		},

		"dependencies": {
			"minUI5Version": "1.104.0",
			"libs": {
				"sap.ui.core": {},
				"sap.ui.layout": {},
				"sap.ui.unified": {},
				"sap.ui.webc.main": {}
			}
		},

		"handleValidation": true,

		"contentDensities": {
			"compact": true,
			"cozy": true
		},

		"models": {
			"i18n": {
				"type": "sap.ui.model.resource.ResourceModel",
				"settings": {
					"bundleName": "com.myorg.myapp.i18n.i18n"
				}
			}
		}

	}
}

This is how the manifest.json should look like now.

3) Disable the router in the Component.ts:

In the Component.ts file, you need to comment the line which initializes the router:

import UIComponent from "sap/ui/core/UIComponent";
import { support } from "sap/ui/Device";

/**
 * @namespace com.myorg.myapp
 */
export default class Component extends UIComponent {

[...]

	public init() : void {
		// call the base component's init function
		super.init();

		// create the views based on the url/hash
		//this.getRouter().initialize();
	}

[...]

}

4) Use UI5 Web Components wrapper controls in an XMLView:

Open the App.view.xml and replace the content of the view with the following one:

<mvc:View
	controllerName="com.myorg.myapp.controller.App"
	displayBlock="true"
	xmlns="sap.ui.webc.main"
	xmlns:layout="sap.ui.layout"
	xmlns:mvc="sap.ui.core.mvc">

	<Panel>
		<header>
			<Label text="UI5 Web Components Enablement"/>
		</header>
		<layout:VerticalLayout width="100%">
			<Input id="myInput" value="Enter your text here!" width="100%"/>
			<Button text="Don't click me!" click="onClick" width="100%"/>
		</layout:VerticalLayout>
	</Panel>

	<Toast id="myToast"/>

</mvc:View>

With this content, the default namespace for the XML tags is sap.ui.webc.main. So all tags, without a namespace will be the wrapper UI5 controls for the UI5 Web Components. In the code snippet above, we are using the UI5 Web Components Panel and in the header aggregation of the Panel we render a UI5 Web Components Label. In the default aggregation which is the content of the Panel we render a VerticalLayout from the UI5 controls and a UI5 Web Components Input and Button. Next to the Panel we render a Toast which we will use to visualize some feedback.

5) Work with UI5 Web Components wrapper controls in TypeScript:

Open the App.controller.ts and replace the content of the controller with the following one:

import Event from "sap/ui/base/Event";
import Button from "sap/ui/webc/main/Button";
import Input from "sap/ui/webc/main/Input";
import Toast from "sap/ui/webc/main/Toast";
import BaseController from "./BaseController";

/**
 * @namespace com.myorg.myapp.controller
 */
export default class App extends BaseController {

	public onInit() : void {
		// apply content density mode to root view
		this.getView().addStyleClass(this.getOwnerComponent().getContentDensityClass());
	}

	public onClick(event : Event) : void {
		const button = event.getSource() as Button;
		const input = this.byId("myInput") as Input;
		const toast = this.byId("myToast") as Toast;
		toast.setText(`Button text: "${button.getText()}"\nInput value: "${input.getValue()}"`);
		toast.show();
	}

}

In the controller we add the onClick event handler which refers to the Button from the event and looks up the Input and Toast by their ids. The toast will be finally used to display the text of the Button and the value of the Input.

When you add the code step by step on your own, you will notice that you get a lot of code completion support and assistance by your editor. TypeScript is automatically supported also for the UI5 Web Components wrapper controls as they also provide their control metadata and JSDoc which is used to generate the type definitions.

If you want to learn more about the TypeScript support for UI5, you can also follow the tutorial here: https://github.com/SAP-samples/ui5-typescript-tutorial.

Wrap-up

The (UI5) Web Components enablement for OpenUI5 is already in a good shape. Besides the missing samples and improving the API documentation, there is already a good foundation to start playing around with the UI5 Web Components wrapper controls and develop UI5 applications using them. They play well in the whole UI5 ecosystem. If you are brave enough to do some experiments with the UI5 Web Components wrapper controls, we would highly appreciate to get your feedback. Enjoy working with the evolution of the UI elements in OpenUI5!

Time is ready for Web Components: now even more! 😉 

Links

 

Assigned Tags

      12 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Nicolai Schoenteich
      Nicolai Schoenteich

      Fantastic news and a great walkthrough! Especially excited to hear that new controls in the future will be implemented as UI5 Webcomponents first. Overall, I think this is a great step towards streamlining all of SAP's UI offerings.

      Author's profile photo Marco Beier
      Marco Beier

      Great News and a great Blog post! I fell in love with what Web Components offer the Web Development space and It is really great seeing this being integrated into UI5. Good & smart decision to go Web Components first. Keep on killing it 🤟

      Author's profile photo Holger Schäfer
      Holger Schäfer

      Hi Peter,

      great technical overview, how SAP will integrate WC into UI5.

      I think, from the long perspective, maybe the current sap.m controls will be replaced by wc main, like the former desktop controls got deprecated.

      But anyhow, SAP would only need to maintain one main lib.

      Still waiting to get my hands on it.

      Regards

      Holger

      Author's profile photo Peter Muessig
      Peter Muessig
      Blog Post Author

      Hi Holger,

      thank you for your nice feedback. With OpenUI5 you can already start to make your hands dirty... 😉

      Regarding one main lib: yes this is true. Migrating the sap.m Controls is unfortunately not possible due to compatibility. This was my initial thought that we could do so but we need to keep the existing applications using the Controls running. But we are working on unifying the foundation of the main UI elements in Web Components and Controls. This means that we ensure the max. possible reuse across both stacks. But as written in the blog post, the future goal is the build most of the new UI elements as Web Components. Most probably on the long perspective, the Web Components based wrapper controls will be used for application development. It's an evolution, unless there is no meteorite impact, it may take a while...

      Best regards,

      Peter

      Author's profile photo Dimo Uzunov
      Dimo Uzunov
      Hello Peter,
      Great blog post! Thank you for the detailed explanation and roadmap overview.
      I have one more specific question regarding deployment of Apps build with SAP Web Components. We have a lot of clients which have SAP backend. Based on ABAP or BTP.
      Is it possible to deploy Web Components apps to ABAP based repository?
      If yes, how? In their core nature Web Components simply build a client side application but ABAP structure is a bit complicated and usually Web - IDE or BAS handles this structure to avoid problems.
      I was thinking about creating a "shell" BSP app inside a package and deploy my code there via npm nwabap upload or via BAS directly. Even if that experiment works I'm not certain that's the right approach. Could you please advice ?
      Regards,
      Dimo

       

      Author's profile photo Peter Muessig
      Peter Muessig
      Blog Post Author

      Hi Dimo,

      good question. Unfortunately, I am not the expert regarding the ABAP deployment and need to ask one of my colleagues here. Basically, I would expect that a deployment can be done similar like deploying a UI5 application. Instead of having UI5 application resources included, you include the UI5 Web Components based application code.

      I will come back to you once I have more details.

      Best regards,

      Peter

      Author's profile photo Dimo Uzunov
      Dimo Uzunov

      Hello Peter,

      Thant would be great thank you! I have tried myself but can not make my example react app to work. What I've done so far:

      1. Forked the ToDo list app from Web Components examples written by Ilhan
      2. npm install, build etc. Test if app is working locally all is good
        1. Manually creates a BSP app via SAP GUI
        2. Upload the above build folder to this BSP app via nwabap upload
        3. Run BSP app via "Test service"
        4. App not working due to some console error related to not supported by ABAP server names.
      3. Instead of manually creating a BSP app install abap-upload from NPM
        1. Try to deploy via it the same app.
        2. Getting authentication error at the last step of deployment after entering TR, package, BSP app name etc. even though it's already being authenticated once.
        3. Here I've tried giving all possible URL's including the ones that works perfectly fine with our Cloud connected and nwabap upload tool.
        4. I'm simply getting Failed to deploy Application: <connect ECONNREFUSED 172.27.1.35:80> even though I tried changing the port since this one is probably not opened.

      Any suggestions will be gladly endorsed since I would like to use SAP Web Components !

      Regards,
      Dimo

      Author's profile photo Dimo Uzunov
      Dimo Uzunov

      Hello Peter,

      Do you find an answer?

      Regards,

      Dimo

      Author's profile photo Peter Muessig
      Peter Muessig
      Blog Post Author

      Hi Dimo,

      I'm very sorry. I was in contact with some experts but didn't get any positive answer so far. While technically it should be possible to deploy any static content into the BSP (confirmed by my colleagues), it isn't officially supported. The BSP repository shouldn't really care about the content being deployed. In case of deploying UI5 applications having other static resources packaged with it, it should also work.

      Can you explain me your issues a bit more in detail? You can also reach out via Slack to me. Maybe we can also follow-up after the UI5con on this topic?

      WDYT? And really, really sorry - it's embarrassing that I didn't answer in time... 🙁

      Best regards,

      Peter

      Author's profile photo Dimo Uzunov
      Dimo Uzunov

      Hello Peter,

      No worries you are very busy I am sure.

      I will contact you via Slack.

      Regards,

      Dimo

      Author's profile photo Christian Pfisterer
      Christian Pfisterer

      Great blog Peter Muessig 

      We are currently building a brand new openUI5 app with TypeScript. Works like a charm so far.

      Now we wanted to switch from sap.m to Web Components. And now we are hitting some walls 🙂

      Why did you remove the router initialization? It seems like it is doing something, that it should not. The app is not running any more 😉

      Is there a working example of combining OpenUI5 and UI5 Web Components including Navigation etc.?

      Kind regards

      Christian

      Author's profile photo Peter Muessig
      Peter Muessig
      Blog Post Author

      Hi Christian Pfisterer ,

      sorry for my late reply - I missed your question - due to vacation... 🙂

      The Router as of today is part of the sap.m library and there is no equivalent offering in the sap.ui.webc.main library. We are thinking to externalize a basic router which can be used without pulling the sap.m library. This is currently work in progress - so far, maybe reusing the sap.m.Router or writing a custom Router may be the option forward.

      As the Web Components inside OpenUI5/SAPUI5 are still experimental, the functional offering is not yet complete. But getting feedback like yours is pretty valuable. Thanks...

      Best regards,

      Peter