You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 18 Next »

Architecture

From runtime perspective, each extension is composed of 3 major building blocks:

  1. API endpoints - running on server (server-side), having access to BellaDati API, REST API and providing methods to connect to 3rd party systems. Programming language is Groovy/Java. Endpoints are accessible over HTTP using HTTP GET, POST, PUT, DELETE methods and have optional support for authentication (oAuth, Basic auth) and session.
  2. HTML content - provided by server, but running on client (client-side). Consists of HTML page (head and body) and web resources (Javascript, CSS, images, files, ...)
  3. Resources - referencable resources for server-side (JAR libraries) and client-side (Javascript, CSS, images, files)


Setup of BellaDati-Extension-API dev environment

  1. In your development environment setup following Maven dependency. You can find all available BellaDati-extension-api at https://search.maven.org/artifact/com.belladati/extensions-api
<dependency>
  <groupId>com.belladati</groupId>
  <artifactId>extensions-api</artifactId>
  <version>1.1</version>
</dependency>

and follow Usage from GitHub repository https://github.com/BellaDati/belladati-extensions-api.

    2. Get familiar with uploading Extensions zip files or creating extensions in BellaDati GUI 


BellaDati Extension types

There are 4 types of extensions, each targeting different functionality and goal:

  • New page - generic extension, which gets own URL and can optionally provide API endpoints. 

    Use it when building java web application that is utilizing BellaDati features and expands them with custom business logic
  • Custom menu - custom navigation HTML inside regular BellaDati UI
  • Table renderer - Javascript table renderer with custom CSS
  • Chart renderer - Javascript chart renderer with custom CSS

Parameters

Each extension can have one or more parameters. They can be used for customization or parametrization of the extension. By using parameters, it is possible to deploy the same extensions in multiple environments without the need to edit the code of the extension itself. In a multi-domain environment, parameters can be also changed by domain administrators.

Examples of parameters usage:

  • loading of API keys of external services
  • configuring usernames, data set IDs etc.
  • enabling or disabling functions of extension

Parameters are created in the configuration of the extension. Each parameter has a name, value and a link. The link is used in the code of the extension to load the value of the parameter. It can be used in the HTML code, in the Endpoint or in the Resource (e.g. Javascript file).

Example of parameter usage:

JavaScript

$.ajax({
		    url: "/en/bi/report/api:viewDetail/#PARAM=table1#",
		    success: function(response) {
			}
	})

HTML

<div class="dropdown">
  <button class="dropbtn">#PARAM=button2#</button><div class="dropdown-content">
  <a href="#PARAM=button2link1#">#PARAM=button2label1#</a>
  <a href="#PARAM=button2link2#">#PARAM=button2label2#</a>
   </div>


Tutorials

This section includes tutorials how BellaDati Extensions can be created and used. Each tutorial contains:

  • steps how to achieve some goal
  • partial source codes
  • final extension package which can be imported into your own instance of BellaDati

Please see following child pages for various tutorials:

 

 

  • No labels