Skip to content

A repository showcasing the UI5 tooling extensibility to combine OSS tools for UI5 application development.

License

Notifications You must be signed in to change notification settings

faow/ui5-ecosystem-showcase

 
 

Repository files navigation

ui5-ecosystem-showcase

A repository showcasing the UI5 Tooling ecosystem idea.

OpenUI5 Community Slack (#tooling channel)

Overview

This repository showcases the endless possibilities of the UI5 Tooling. The UI5 Tooling extensibility (tasks and middleware) can be used to combine various OSS tools for UI5 application development. This increases the development experience and efficiency and also allows to use well-known tools.

The content of the repository is structured in packages and showcases. The packages folder includes the tooling extensions implementations and the showcases includes the demo applications, libraries and modules.

Packages (Tooling Extensions)

The following list provides an overview of the available tooling extensions in this repository:

packages
├── karma-ui5-transpile             // karma preprocessor: transpile sources using ui5-tooling-transpile
├── ui5-middleware-cfdestination    // middleware extension: use the approuter as proxy
├── ui5-middleware-iasync           // middleware extension: sync UI interaction across browsers (alpha! careful!)
├── ui5-middleware-index            // middleware extension: serve an HTML file for / (root)
├── ui5-middleware-livecompileless  // middleware extension: livecompiling of less files in the app folder
├── ui5-middleware-livereload       // middleware extension: usage of livereload for development
├── ui5-middleware-onelogin         // middleware extension: enable a generic login support
├── ui5-middleware-servestatic      // middleware extension: serve static resources
├── ui5-middleware-simpleproxy      // middleware extension: simple express proxy
├── ui5-middleware-webjars          // middleware extension: deliver content from JAR files
├── ui5-task-cachebuster            // task extension: enables cachebusting for standalone applications
├── ui5-task-compileless            // task extension: compile less files in the app folder
├── ui5-task-flatten-library        // task extension: prepares build result for deployment to SAP NetWeaver
├── ui5-task-i18ncheck              // task extension: checks for missing i18n texts
├── ui5-task-minify-xml             // task extension: minify xml resources
├── ui5-task-pwa-enabler            // task extension: enables ui5 app with pwa functionalities
├── ui5-task-zipper                 // task extension: bundle the entire webapp in a zip-archive
├── ui5-tooling-modules             // tooling extensions: direct consumption of NPM packages in UI5 apps
├── ui5-tooling-stringreplace       // tooling extension: replaces placeholder strings
└── ui5-tooling-transpile           // tooling extensions: transpile resources using Babel

Showcases (Demos)

The following list provides an overview of the available showcases in this repository:

showcases
├── ui5-app                         // UI5 application
├── ui5-app-simple                  // simple UI5 application using UI5 Tooling V3
├── ui5-lib                         // UI5 library
├── ui5-module                      // UI5 module providing a custom control as NPM package
├── ui5-tsapp                       // TypeScript UI5 application
├── ui5-tsapp-simple                // simple TypeScript UI5 application using UI5 Tooling V3
└── ui5-tslib                       // TypeScript UI5 library

Getting Started

First of all, make sure to use a proper long-term support version of Node.js. You can download it from nodejs.org or use nvm.

The ui5-ecosystem-showcase repository is a monorepo based using pnpm. To get started with pnpm, it's best to install it globally:

# Install pnpm (if not done already)
npm i -g pnpm

To get started with the project, please ensure to run pnpm install once to setup your mono repo and download and install all required dependencies.

# Install the node modules via pnpm
pnpm install

To get started just run one of the following commands:

# 1) Run the dev mode
# which gives you 
# - live reload of ui5-app/webapp/**/**
# - live transpilation of ui5-app/webapp/**/** on the fly
#   including debug functionality via source maps
#   (attention: async functions not yet supported!)
# - proxy functionality at $server/proxy
# - POC: same proxy middleware reused at $server/proxy2
# - cf-style proxy destinations at $server/$destinations
# - ability to execute the same UI actions across all browsers pointed to http://localhost:1081/index.html
# - using NPM packages as dependencies
pnpm dev

# 1.1) Run the TypeScript app dev mode
# which gives you 
# - live transpilation of TypeScript code
# - using NPM packages as dependencies
pnpm dev:ts

# 2) Run the Component-preload build + transpile steps
# which in addition to the above
# - transpiles all ui5-app/webapp/**/* to ui5-app/dist
# - live reload of ui5-app/dist/**/*
pnpm watch

# 3) Run the dist folder (needs manual build via `pnpm build` first)
pnpm start

# 3.1) Run the dist folder for the TypeScript app (needs manual build via `pnpm build:ts` first)
pnpm start:ts

# 4) Run Unit-(QUnit-)Tests and Integration-(OPA5-)Tests
# against "as-is" sources in /webapp/* (of /packages/ui5-app)
# with Chrome
# note: no transpiling, no bundling/building
pnpm test:opa5

# 5) Run end-to-end tests
# in dedicated terminal: 
pnpm dev # > start the local ui5 server tooling
# in another terminal:
# (uses Chrome)
pnpm test:wdi5 # > run e2e tests via wdi5 from /packages/ui5-app/webapp/test/e2e/*

# 6) Utilize CI for end-to-end tests
# using Chrome headless
pnpm test:ci # > start ui5 server in background, runs wdi5-tests, shuts down the ui5 server

Using tasks and middlewares in your project

The tasks developed in this monorepo are also publicly available on NPM right here:

The middlewares developed in this monorepo are also publicly available on NPM right here:

The tooling extensions (contains tasks and middlewares) developed in this monorepo are available on NPM right here:

The consumption of the individual tasks and middlewares can be seen inside their local README.md.

Available tasks in this project:

NPM package Description Badge
ui5-task-cachebuster enables cachebusting for standalone applications npm version
ui5-task-compileless compile less files in the app folder npm version
ui5-task-flatten-library prepares build result for deployment to SAP NetWeaver npm version
ui5-task-i18ncheck checks for missing i18n texts npm version
ui5-task-minify-xml minify xml resources npm version
ui5-task-pwa-enabler enables ui5 app with pwa functionalities npm version
ui5-task-zipper bundle the entire webapp in a zip-archive npm version

Available middlewares in this project:

NPM package Description Badge
ui5-middleware-cfdestination use the approuter as proxy npm version
ui5-middleware-iasync sync UI interactions across connected browsers (alpha! careful!) npm version
ui5-middleware-index serve an HTML file for / (root) npm version
ui5-middleware-livecompileless livecompiling of less files in the app folder npm version
ui5-middleware-livereload usage of livereload for development npm version
ui5-middleware-servestatic serve static resources npm version
ui5-middleware-onelogin enable a generic login support npm version
ui5-middleware-simpleproxy simple express proxy npm version
ui5-middleware-webjars deliver content from JAR files npm version

Available tooling extensions in this project:

NPM package Description Badge
ui5-tooling-modules direct consumption of NPM packages npm version
ui5-tooling-stringreplace replace placeholder strings npm version
ui5-tooling-transpile transpile resources using Babel npm version

Other NPM packages in this project:

NPM package Description Badge
karma-ui5-transpile Karma preprocessor to transpile sources using ui5-tooling-transpile npm version

Support, Feedback, Contributing

This project is open to feature requests/suggestions, bug reports etc. via GitHub issues. Contribution and feedback are encouraged and always welcome. For more information about how to contribute, as well as additional contribution information, see our Contribution Guidelines.

License

This work is dual-licensed under Apache 2.0 and the Derived Beer-ware License. The official license will be Apache 2.0 but finally you can choose between one of them if you use this work.

When you like this stuff, buy @vobu a beer or buy @pmuessig a coke when you see them.

About

A repository showcasing the UI5 tooling extensibility to combine OSS tools for UI5 application development.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.4%
  • HTML 1.7%
  • Other 0.9%