The features documented here will be part of yuuvis® Momentum 2.4 (2020 Winter) as a Beta-implementation. Take care because parts may be changed until the release in the next version!
This article is for developers who want to extend the client with additional functions without the necessity of building a custom client.
Table of Contents
Introduction
The way to extend the reference client, as well as all custom clients based on the core and framework libraries, is this simple: put your HTML code into one configuration file and import this. No rebuilding and deployment are necessary. The client loads the new codes dynamically. We will explain how you can extend the client with additional functions in this easy and simple way.
Structure of the Configuration File
The configuration file is of format JSON. The key disabled controls whether the client will use the defined plugins or not. In the translations section you can configure all keys for GUI elements for each language in use. The other sections are described below.
{ "disabled": false, "links": [], "states": [], "actions": [], "extensions": [], "triggers": [], "translations": { "en": {}, "de": {} } }
Plug-in Links
Configured links with a path and label can be hooked into the sidebar menu or the settings menu. The label must be configured in the translations section as shown below.
{ "links": [ { "id": "yuv.custom.link.home_yuuvis", "label": "yuv.custom.action.home_yuuvis.label", "path": "https://help.optimal-systems.com/yuuvis/home_yuuvis_en.html", "matchHook": "yuv-sidebar-navigation|yuv-sidebar-settings" } ] }
Plug-in States
States are new views with their own URL of the client, that mostly are reach by clicking a sidebar menu item (see Extend Links). The following example shows how to integrate the user management view of the yuuvis® architect as new view into the client. This view can be opened via a new main-menue item 'User management'. This item is offered if the user has the role YUUVIS_TENANT_ADMIN.
{ "states": [ { "id": "yuv.custom.state.architect.users", "label": "yuv.custom.state.architect.users", "path": "architect/users", "matchHook": "yuv-sidebar-navigation", "canActivate": "(currentRoute, currentState) => {return this.session.getUser().authorities.includes('YUUVIS_TENANT_ADMIN');}", "canDeactivate": "(component, currentRoute, currentState, nextState) => true", "plugin": { "src": "https://kolibri.enaioci.net/architect/users", "html": "<style>iframe[src=\"https://kolibri.enaioci.net/architect/users\"] {display: block; height: calc(100% + 50px); margin-top: -50px;}</style>" } } ], "translations": { "en": { "yuv.custom.state.architect.users": "User management" }, "de": { "yuv.custom.state.architect.users": "Benutzermanagement" } } }
Plug-in Actions
In general, object actions that are listed in the actions menu are processing specific functions that manipulate the focused object, e.g., Download, Manage follow-ups, Open versions, ... The following example shows TODO.
{ "actions": [ { "id": "yuv.custom.action.home_yuuvis.list", "label": "yuv.custom.action.home_yuuvis.list", "description": "yuv.custom.action.home_yuuvis.description", "icon": "", "isExecutable": "(item) => item.id", "header": "yuv.custom.action.home_yuuvis.label", "subActionComponents": [ { "id": "yuv.custom.action.home_yuuvis.sub.simple", "label": "yuv.custom.action.home_yuuvis.simple", "description": "yuv.custom.action.home_yuuvis.description", "priority": 0, "icon": "", "group": "common", "range": "MULTI_SELECT", "isExecutable": "(item) => item.id", "run": "(selection) => this.router.navigate(['dashboard'])" }] } ] }
Plug-in Extensions
The standard aspects of the object details offer general views of the data of the object: Overview of all metadata, edit the custom Metadata, Preview of the document file, History of system events. If you need more views of data that are residing in other services, you can add more such aspects. The following example shows TODO.
{ "extensions": [] }
Plug-in Triggers
Form controls supporting the user in entering specific data like String, Numbers, Dates, Booleans, or more specific ones like email addresses, users or references to other objects. If you need more such specific controls you can extend the form controls as shown in the following example:
{ "triggers": [] }
Plug-in Translations
In case you need to extend translations with new keys, please specify translations for each language in your system.
{ "translations": { "en": { "yuv.custom.action.home_yuuvis.label": "Yuuvis Home", "yuv.custom.action.home_yuuvis.description": "Yuuvis Description", "yuv.custom.action.home_yuuvis.simple": "Yuuvis Home simple", "yuv.custom.action.home_yuuvis.component": "Yuuvis Home component", "yuv.custom.action.home_yuuvis.component.full": "Yuuvis Home component full", "yuv.custom.action.home_yuuvis.link": "Yuuvis Home link", "yuv.custom.action.home_yuuvis.list": "Yuuvis Home list", "yuv.custom.trigger.paste.clipboard": "Paste clipboard", "yuv.custom.trigger.paste.selection": "Paste selection", "yuv.custom.trigger.paste.suggestion": "Paste suggestion" }, "de": { "yuv.custom.action.home_yuuvis.label": "Yuuvis Home DE", "yuv.custom.action.home_yuuvis.description": "Yuuvis Description DE", "yuv.custom.action.home_yuuvis.simple": "Yuuvis Home simple DE", "yuv.custom.action.home_yuuvis.component": "Yuuvis Home component DE", "yuv.custom.action.home_yuuvis.component.full": "Yuuvis Home component full DE", "yuv.custom.action.home_yuuvis.link": "Yuuvis Home link DE", "yuv.custom.action.home_yuuvis.list": "Yuuvis Home list DE", "yuv.custom.trigger.paste.clipboard": "Paste clipboard DE", "yuv.custom.trigger.paste.selection": "Paste selection DE", "yuv.custom.trigger.paste.suggestion": "Paste suggestion" } } }
Activating the Extension Feature and Importing Your Plug-in Configuration
To import a configuration file with your extensions (plugins), follow these steps:
- Open the client and open the settings.
- Click the
On
button in thePlug-in Configuration
. This feature is offered to all users with the YUUVIS_SYSTEM_INTEGRATOR role. - Click on the
Import
button.
The file is uploaded to the Configuration Service so that all clients will use these extensions as well.
Removing the Configuration
Import an empty JSON file to remove the configuration.
Summary
We have shown how you can extend the reference client or your custom client that is based on our core and framework libraries with custom elements.