DEV Community

Cover image for Sharing Components in a Marketplace for Developers with Entando Bundles
Anthony Viard 🥑 for Entando

Posted on • Updated on • Originally published at entando.com

Sharing Components in a Marketplace for Developers with Entando Bundles

Hey developers,

The day has come to learn more and share about this great feature that makes developers' lives easier when working with Entando.

What would you say if I tell you that there is a simple and intuitive way to define your Entando components, share them, manage the different versions and deploy and install them into your targeted environment.

There is a way to stop wasting time trying to deploy your microservices and micro frontend in an agnostic way. The solution is already here.

Welcome to the bundle!

Everything is a component

Before starting on the bundle we need to understand what a component is in an Entando Application. You can have micro frontends, simple html fragments, microservices, pages to host them all and so on… Every one of these is a component.

These are all of the different components that can be included in an Entando bundle:

  • Plugin (microservice)
  • Content Template
  • Widget (micro frontend)
  • Content
  • Fragment
  • Categories
  • Page Template
  • Groups
  • Page
  • Labels
  • CMS Asset
  • Languages
  • Content Type
  • Static resources

Entando uses specific terminology to name different components in a bundle. For example, a micro frontend can be added to a page as a widget and a microservice is deployed as a plugin.

We will review all of the component types in detail in future blog posts. For the moment keep in mind that each piece of an application used in an Entando instance is a component and the bundle will help you install and use them.

A bundle to rule them all

Introduction to Bundles

When working with components, the bundle will be your best friend. It will guide you in two ways: define your components and wrap them all into a descriptor file. You can think of bundles as “Entando as code”.

A bundle has the following characteristics:

  • Written in Yaml
  • Define structured components by type
  • Define relationships between different components
  • Finally, inventory all of the components in a descriptor file

By convention, each component is sorted by type under a dedicated folder (e.g fragments, widgets, plugins). Depending on your use case you can organize the folders as needed. Note that static resources are not referenced in the descriptor.yaml itself but in the component descriptor where they are used.

The only hard requirement is that the bundle descriptor is placed at the root folder and be named “descriptor.yaml”.

Please check the standard-demo-bundle repository to have a complete example of what a bundle could be.

The bundle descriptor

As we said before the bundle is first of all a way to wrap multiple components together and make their deployment and installation easier.

For achieving this, the bundle needs to declare the components it has under its responsibility. This is what the bundle descriptor does.

In addition to these declarations, we will define some metadata to define the bundle itself.

Here is my bundle descriptor:

code: my-demo
description: My Demo bundle
components:
  fragments:
    - fragments/myFragment-descriptor.yaml
    - fragments/myFragment-ftl-descriptor.yaml
Enter fullscreen mode Exit fullscreen mode

Note: If you want to include other components in addition to fragments, you can update the bundle descriptor to include those additional component types. For example, in the code below widgets and plugins have been added to the descriptor.

components:
  fragments:
    - fragments/myFragment-descriptor.yaml
    - fragments/myFragment-ftl-descriptor.yaml
  widgets:
    - widgets/myWidget-descriptor.yaml
  plugins:
  [...]
Enter fullscreen mode Exit fullscreen mode

The component descriptor

This is the low level descriptor for a given component that will contain details about the specific component. Each component type has a different descriptor format.

Here is a sample fragment descriptor:

myFragment-descriptor.yaml

code: my_fragment # The unique id
guiCode: >-
  "<div>Sample content</div>"
Enter fullscreen mode Exit fullscreen mode

As you can see, this fragment will expose a simple Div with a “Sample content” raw string.

For some component types, there is also the possibility to use a Freemarker template instead for more complex UI components. In this case, it will look like this:

myFragment-descriptor.yaml

code: my_fragment_ftl # The unique id
guiCodePath: myFragment.ftl
Enter fullscreen mode Exit fullscreen mode

fragment.ftl

<div>the content from the FTL</div>
Enter fullscreen mode Exit fullscreen mode

Bonus: Discover the bundle capabilities with this video

The bundle lifecycle

To completely understand bundles we need to understand how to build them and also how they are deployed.

The bundle should be seen as your final application artifact (considering you also have container images, Javascript minified files, assets etc…), and the communication format between how you define your components and how Entando will apply them.

First you create your components and their descriptors. The descriptors can be created manually, or in the case of widgets and plugins you can use the Entando Component Generator based on JHipster. A future post will go deeper into this specific use case.

Then, the Entando bundler will convert the bundle definition into a custom resource that can be deployed into a Kubernetes cluster. Once the custom resource is installed, your components will be available in the Entando Component Repository in the Entando App Builder.pasted_image_0_3_d0

What’s next

In this blog post, we learned how an Entando Bundle allows you to package and deploy your components in an Entando application.

Bundles are the key resource to effectively connect your source to your deployed environments,

Check out the next blog post from this series to learn more about building and deploying your own Entando bundles.

Additional Resources

https://dev.entando.org/

https://dev.entando.org/v6.3/docs/ecr/ecr-bundle-details.html

Top comments (0)