Files
bridgehead/ccp/modules/teiler.md
2025-06-11 15:35:12 +02:00

11 KiB
Raw Permalink Blame History

Teiler

Teiler is the central frontend of the bridgehead system. It brings together multiple independent tools—each built as a microfrontend—into a single, unified web application.

Users interact with Teiler as one coherent interface, but behind the scenes, it dynamically integrates and displays self-contained modules developed with different technologies (Angular, Vue, React, etc.). This modular approach makes Teiler highly flexible, allowing teams to develop, deploy, and maintain features independently.

Teiler ensures:

  • A consistent look and feel across tools.
  • Smooth navigation between components.
  • Seamless user authentication across the entire interface.

Each independent tool integrated into Teiler is called a bridgehead app. A bridgehead app can be:

  • A fully standalone microfrontend with its own frontend and backend services.
  • An embedded service inside the Teiler Dashboard.
  • An external link to another service, possibly hosted on a central server or elsewhere in the federated research network.

The modularity of Teiler enables it to adapt easily to the evolving needs of the research federated network by simply adding, updating, or removing bridgehead apps.

Below is a breakdown of Teiler's internal components that make this orchestration possible.


Teiler Orchestrator

The Teiler Orchestrator is the entry point of the Single Page Application (SPA). It consists of:

  • An HTML root page.
  • A JavaScript layer that:
    • Retrieves microfrontend configurations from the backend.
    • Registers and manages the microfrontends using Single-SPA, the framework Teiler uses to create and coordinate its microfrontend environment.

Using this information, the orchestrator dynamically loads the correct microfrontend for a given route and manages its lifecycle (init, mount, unmount) in real time.

Microfrontends run in their own containers and can be implemented with any major frontend framework. To be compatible with Teiler, they must integrate with Single-SPA.

To encourage developers to create their own microfrontends and integrate them into Teiler, we provide starter templates for Angular, Vue, and React. Developing a new microfrontend is straightforward:

  1. Use one of the templates.
  2. Extend it with your own functionality.
  3. Add its configuration in the Teiler Backend.

This modular approach accelerates development and fosters collaboration.

GitHub repository: https://github.com/samply/teiler-orchestrator


Teiler Dashboard

The Teiler Dashboard is the unified interface users interact with after logging in. It provides:

  • A single point of access where various bridgehead apps are embedded as microfrontends.
  • Central navigation and session management for a smooth user experience.

Authentication and Authorization

Teiler uses OpenID Connect (OIDC) for user authentication, accessible via the top navigation bar.

We consider three possible application roles:

Role Description
Public Accessible by any user without the need to log in
User Normal users working with various bridgehead applications
Admin Bridgehead system administrators

It is possible to deactivate OIDC authentication entirely. In such cases, all apps must have at least the public role to allow access. While this may be suitable for development or testing, we strongly encourage at least some external authentication mechanism or network-level access control to secure the bridgehead environment.

Alternatively, basic authentication can be enforced through the existing Traefik infrastructure integrated with the bridgehead.

GitHub repository: https://github.com/samply/teiler-dashboard


Teiler Backend

The Teiler Backend serves as the central configuration hub for all microfrontends and bridgehead apps. It defines:

  • Which bridgehead apps are available.
  • Their loading URLs and routes.
  • Optional metadata such as display names, icons, roles, and activation status.

It enables the orchestrator to remain generic and flexible, adapting dynamically to whatever apps are defined in the backend configuration.

Assets Directory

There is an assets directory where you can save images and other static files to be accessible to your microfrontends. This helps configure and customize apps more easily and quickly.

Assets can be referenced via:

<Teiler Backend URL>/assets/<filename>

App Configuration via Environment Variables

Apps are configured using environment variables with the following structure:

TEILER_APP<Number>_<suffix>
Optional: TEILER_APP<Number>_<LanguageCode>_<suffix>
  • The number is just for grouping variables for a single app and has no intrinsic meaning.
  • The app is the unit within Teiler, shown as a box in the dashboard.
  • Apps can be:
    • Embedded apps inside the Teiler Dashboard (there is a helper Python script for generating embedded apps: create-embedded-app.py)
    • External links (e.g., central services outside the local bridgehead instance)
  • An app's frontend (microfrontend or embedded app) can either contain the entire functionality or serve as a frontend communicating with other backend microservices in the bridgehead.

Currently supported languages in the main projects DKTK and BBMRI are English (EN) and German (DE), but the system can be extended to other languages.

The Teiler Dashboard requests variables from the backend for each app and passes the desired language code. If a language-specific variable is unavailable, the default language value is returned.

App Availability Monitoring

The Teiler Backend regularly pings apps to check availability and displays status messages such as:

  • "Frontend not available"
  • "Backend not available"
  • "Frontend and Backend not available"

Accepted TEILER_APP Variable Suffixes

Suffix Description
NAME Identifier of the app (no spaces). For embedded apps, must match the identifier defined in Teiler Dashboard.
TITLE Display title shown to users.
DESCRIPTION Brief description of the app.
BACKENDURL URL of the backend microservice (if applicable).
BACKENDCHECKURL URL that the backend pings to verify backend availability. Defaults to BACKENDURL if not specified.
SOURCEURL URL of the microfrontend or external link (not used for embedded apps).
SOURCECHECKURL URL to ping to check microfrontend or external link availability. Defaults to SOURCEURL if not specified.
ROLES Comma-separated roles allowed: TEILER_PUBLIC, TEILER_USER, TEILER_ADMIN.
ISACTIVATED true or false. Used to temporarily deactivate an app without deleting its config.
ICONCLASS Bootstrap icon class to display in app box (e.g., "bi bi-search").
ICONSOURCEURL URL to an image icon. Prefer using local assets instead of external URLs.
ORDER Relative display order of the app in the dashboard.
ISEXTERNALLINK true or false. Indicates if the app is an external link outside the local bridgehead.
ISLOCAL true or false. Indicates if the app runs locally within the bridgehead site or on a central server.

Note: Embedded apps often have many of these variables preconfigured and may not require manual specification. See the Teiler Dashboard documentation for details.

Additional Teiler Backend Variables for Dashboard Configuration

Variable Prefix Description
TEILER_DASHBOARD_ General configuration of the dashboard.
TEILER_DASHBOARD_<LangCode>_ Language-specific configuration overrides.

Important suffixes include:

Suffix Description
WELCOME_TITLE Title shown on the initial screen before login.
WELCOME_TEXT Welcome message or instructions before login.
FURTHER_INFO Additional informational text or links.
BACKGROUND_IMAGE_URL URL to a background image (SVG recommended for scalability).
LOGO_URL URL to the project or bridgehead logo.
LOGO_HEIGHT Height of the displayed logo.
LOGO_TEXT Title text of the bridgehead (e.g., "DKTK Bridgehead").
COLOR_PALETTE JSON link to color palettes for text, lines, icons, and background (especially for SVGs).
COLOR_PROFILE Selected color profile from the palette.
FONT Font family for the dashboard text.

GitHub repository: https://github.com/samply/teiler-backend


If you want to create your own bridgehead app and integrate it into Teiler, start by selecting a template or building a microfrontend compatible with Single-SPA. Then add your apps configuration in the Teiler Backend as described above.

This flexible, modular design enables easy expansion