The commercetools Frontend approach
commercetools Frontend allows developers and business users (for example, marketing managers) to collaborate on creating, maintaining, and optimizing the frontend for their commerce website.
On the other hand, developers are responsible for developing what business users need to create and manage the website pages and content. Developers are also responsible for optimizing the performance of the commercetools Frontend project.
This approach requires that business users and developers agree on a clear configuration for their commercetools Frontend project early in the development process. This way, developers can optimize the development based on use cases, and business users can autonomously create and manage the website pages and content.
Within commercetools Frontend, all page changes are independent from code deployments, including changes to the data displayed as well as to the structure of the page.
General concepts
API hub
Extension runner
The hostname to contact the extension runner has the following structure:
- For the production environment:
PROJECT_NAME-COMPANY_NAME.frontastic.live
(for example,exampleshop-examplecompany.frontastic.live
) - For the staging environment:
PROJECT_NAME-COMPANY_NAME.frontastic.io
(for example,exampleshop-examplecompany.frontastic.io
) - For the development environment:
PROJECT_NAME-COMPANY_NAME.frontastic.rocks
(for example,exampleshop-examplecompany.frontastic.rocks
)
Commercetools-Frontend-Extension-Version
HTTP header set to one of the following:- For the development environment: your Studio developer username.
- For the production or staging environment: the
NEXT_PUBLIC_EXT_BUILD_ID
environment variable.
extensionVersion
parameter in configuration.External calls made by extensions have a timeout limit of 8 seconds to ensure optimal performance of the extension runner.
Studio
Build a website page
Components, Data Sources, and Actions are the required elements to build a website page with commercetools Frontend. Developers create them and business users use them in the Studio to build the website pages.
Components
commercetools Frontend Components are React components that receive and display data as configured by business users in the Studio.
Each Component consists of the two following files, which developers write and maintain in their commercetools Frontend project GitHub repository:
- JavaScript source code file. This is the entry point, it is a React component that receives some special props.
- JSON configuration file. It defines the Component configuration options that are available in the Studio. In particular, it determines which aspects of the Component can be configured and how, and which Data Sources are connected to the Component.
An example of a Component is a product slider, for which it is possible to configure the title, the number of products displayed, and the Data Source from which product data is read.
tastics
in the code base.Data Sources
Data Sources return data that is then displayed on the website pages through Components. Data Sources are decoupled from Components, therefore no deployment is needed to manage the data displayed on a page and business users can autonomously do it.
Data Sources are JavaScript/TypeScript functions that:
- Fetch data from external APIs (for example, a headless commerce system).
- Simplify the fetched data to what is required by commercetools Frontend.
- Return data in a structure that Components can use.
Data Sources receive the user session, user configuration, and project configuration and then return data. Data Sources can optionally use the user context (user groups, flags, locale, etc.) and the context in which they are used (page, URL, locale, etc.). Therefore, there is great potential in optimizing the retrievable data for specific use cases.
Each Data Source has a configuration schema that defines what can be configured for the Data Source from the Studio.
An example of Data Source is a product list fetched from a headless commerce system, for which it is possible to configure search queries, categories, or price ranges.
Components and Data Sources decoupling
The decoupling of Components from Data Sources is meant to make business users independent in managing the website pages so that developers are not involved in daily frontend changes. This way, developers can focus on improving Components and Data Sources. The trade-off of this decoupling is that pages cannot be optimized by hand, since business users can edit any page without interacting with the development team.
Actions
Websites don’t only display data, they also perform actions. commercetools Frontend Actions perform actions on external APIs (for example, a headless commerce system) and return a response if needed.
Actions are JavaScript/TypeScript functions that retrieve data from the frontend and have access to the user context and project configuration.
An example of Action is adding a product to the cart.
How Components, Data Sources, and Actions work
The entry Component is often a basic Component retrieving data and calling other Components which implement the visuals, as in the following example of a product slider.
import { Product } from '@commercetools/frontend-domain-types/product/Product';
import ProductSlider, {
ProductSliderProps,
} from 'components/commercetools-ui/organisms/product/product-slider';
import { Tastic } from 'types/tastic';
function ProductSliderTastic({
data,
}: Tastic<{ items: Product[] }, ProductSliderProps>) {
if (!data?.data?.dataSource?.items) return <p>No products found.</p>;
return <ProductSlider {...data} products={data.data.dataSource.items} />;
}
export default ProductSliderTastic;
Create and manage the website URL structure
As stated above, with Components, Data Sources, and Actions you build a website page. However, a commerce website consists of multiple pages.
The Site Builder and dynamic pages allow you to create and manage the URL structure of your commercetools Frontend website.
Site Builder and static pages
Some examples of Page Folders are:
- The start page, for which the path is
/
. - A landing page for an advertisement campaign. For example,
/holidays-season-2023
. - Generic pages like cart or customer account. For example,
/cart
. - Static or special categories. For example, a static landing page like
/women
with dynamic pages below.
Developers use the Site Builder to test Components using the Page Folders and Page Versions in the staging environment. Business users use the Site Builder to build and manage Page Folders and Page Versions.
Dynamic pages
To manage dynamic pages, developers must define the concepts (or entity types) of the website, such as product, product details, wishlist, etc.
Developers must create a JavaScript/TypeScript function that matches any URL not already matching the static pages defined in Site Builder and returns the matching concept and data for that URL. This is a single function, so you must also define the order of the matching concepts. An example of this could be:
- Match
/p/.*/<productSlug>
(for example, using regular expressions). This maps theproduct
concept and fetches the product data for the given slug. - Match
/c/.*/<categorySlug>
. This maps thecategory
concept and fetches the product category data for the given slug. - Any URL that has not yet been matched returns a search result for the words in the URL.
How page rendering works
pages/[[...slug]].tsx
which acts as a catch-all page.On this page, the API hub is asked what the page's structural elements (Components) and data (Data Source results) are. The API hub calls all Data Sources in parallel to fetch the required data. A function in the Next.js stack triggers the rendering of Components and checks that each Component receives the required data.
You can define custom pages next to the provided catch-all page. However, you would lose the purpose and value of the Studio by doing so.
Development constraints
For the development of your commercetools Frontend project, you are bound to the concepts described above. You should design Components, Data Sources, and Actions that best fit your business cases and you should plan an efficient management of dynamic pages according to the needs of your website. However, there are no constraints on how you develop these concepts.
The frontend of commercetools Frontend is plain Next.js with some simple helpers provided. To develop your frontend, you can follow any development pattern. All common optimizations for PWAs, SPAs, and Next.js apply and you can use any Next.js plugin. You can use either TypeScript or JavaScript, we provide you with all the type information you might need if you use TypeScript.
For backend functions of Data Sources, Actions, and dynamic page handling, you can use either TypeScript or JavaScript. Concerning APIs, the communication over HTTPS is the recommended approach. Therefore, we suggest using GraphQL, REST, RESTful, or XML-RPC. However, you can also use SMTP or anything else within specific runtime limits (time, CPU, and memory).
We provide opinionated examples for Components and Data Sources that you can use as templates or as a starting point. However, you can implement them in any way, based on the described constraints.
We recommend involving business users in the design and development phase of Components, Data Sources, and Actions and in the definition of the website URL structure.