- Migrating B2B projects to version 2 of the Frontend SDK
- Migrating B2C projects to version 2 of the Frontend SDK

Base SDK
@commercetools/frontend-sdk
.
After the SDK is configured, it manages the configurable options such as endpoint, locale, currency, and extension version, and it relays these options to the underlying utilities. For example, to HTTP headers and additional query parameters.callAction
method. The base SDK is generic in nature, it doesn't specify the domain types (such as Cart
or Wishlist
), particular action names, or other requirements out-of-the-box but provides the tools for the SDK integrations to flexibly fill in the missing type information.The base SDK also includes an event manager, which lets SDK integrations add event handlers and communicate with each other. It also lets you add custom event handlers to meet your use cases, such as tracking global events across the application.
SDK template file
The SDK template is the single source of truth for setting up and using the base SDK and integrations. You can find the template file in your project at one of the following locations:
- For B2B projects:
packages/PROJECT_NAME/frontend/src/sdk/CommercetoolsSDK.ts
- For B2C projects:
packages/PROJECT_NAME/frontend/sdk/CommercetoolsSDK.ts
We strongly recommended using this file because it enforces best practices and battle-tested design patterns. These design patterns include the setup of the integration events, and the initialization of the integrations ensuring all components of the SDK behave as singletons throughout your project. It also provides a space in the constructor to set up global event handlers for events, and contains further documentation in the file's comments.
import { SDK } from '@commercetools/frontend-sdk';
import {
ComposableCommerce,
ComposableCommerceEvents,
} from '@commercetools/frontend-composable-commerce';
import { getLocalizationInfo } from 'project.config';
// Add other integration's custom events to the SDK's generic type here,
// by extending ComposableCommerceEvents with their type using an intersection.
// For example, <ComposableCommerceEvents & OtherEvents>.
// You may also wish to add your own custom events.
class CommercetoolsSDK extends SDK<ComposableCommerceEvents> {
composableCommerce!: ComposableCommerce;
// Add any other integrations here.
constructor() {
super();
this.composableCommerce = new ComposableCommerce(this);
// Initialize your other integrations here.
this.on('errorCaught', (event) => {
// Globally handle any errors caught by the SDK and integrations. For
// example, log error, fire notification, etc.
console.log('SDK error: ', event.data);
});
// Set up any other custom global event handlers here.
// Ensure types are created and added to the SDK generic type
// if specific to your project.
}
// A simplified, reusable method for configuring the SDK, as for
// most cases only the locale and currency require input from runtime, or
// may change on user input.
defaultConfigure(localeString: string) {
const { locale, currency } = getLocalizationInfo(localeString);
sdk.configure({
locale,
currency,
extensionVersion: process.env.NEXT_PUBLIC_EXT_BUILD_ID ?? 'dev',
endpoint: process.env.NEXT_PUBLIC_FRONTASTIC_HOST
? process.env.NEXT_PUBLIC_FRONTASTIC_HOST!.split('/frontastic')[0]
: '',
});
}
}
// Create a single instance of the SDK.
const sdk = new CommercetoolsSDK();
// Export only the instance to serve as a singleton throughout the project.
export { sdk };
The key aspects of this file are the following:
CommercetoolsSDK class and ComposableCommerceEvents type
CommercetoolsSDK
class extends the SDK
class from @commercetools/frontend-sdk
, inheriting essential SDK methods and properties. This template setup simplifies access to SDK functionality and event handling throughout your project.ComposableCommerceEvents
type specifies the custom events available in the Composable Commerce integration, which are passed as a type
parameter to ensure type-safe event handling.If an event is not defined or passed to the generic SDK argument, trying to trigger the event or add a handler will cause a TypeScript compilation error.
Events
type format and adds CustomEventTriggers
as an example event type.export type Events = {
[key: string]: {
[key: string]: unknown;
};
};
export type CustomEventTriggers = {
someEventTriggered: { time: string };
someComponentClicked: { posX: number; posY: number };
};
CommercetoolsSDK.ts constructor
CommercetoolsSDK.ts
constructor does the following tasks:- Initializes the Composable Commerce integration by passing the SDK instance to the constructor in the form of
this
. This ensures that event triggers and handlers are set on the single instance of the@commercetools/frontend-sdk
SDK and that actions called on the integration use the same SDK instance that was configured. - Sets up an event handler for the
errorCaught
event, which is triggered by the@commercetools/frontend-sdk
SDK when an error occurs.
You can also set other globally managed custom event handlers in the constructor. You can use this for global error handling, such as logging the error or triggering a notification. You can also deactivate the handler by commenting it out.
{ data: T, isError: false }
on success{ isError: true, error: FetchError }
on error
Both objects also contain the tracing information for identifying requests from the frontend and backend.
Instance of the CommercetoolsSDK class
CommercetoolsSDK
class, we create an instance of the class and export it. This ensures that once configured, the SDK integrations and event handlers are initialized and added only once.CommercetoolsSDK
class, the errorCaught
handler will be added continuously and executed as many times as constructed. Furthermore, some integrations may add event handlers upon construction. Creating multiple instances of integrations will cause the same side-effect.SDK integrations
callAction
method to write action calls for each extension by providing the return type, query, and payload parameters. SDK integrations may also trigger events on successful action calls. You can add event handlers to your website in the SDK template file, such as productAddedToCart
. Event handlers can also be temporary, tied to the lifecycle of a React component. By default, the SDK triggers events when it calls a fetch, returns successfully, or returns an error.