Adding and Customizing Routes (DRAFT)
Note: Spartacus 1.x is no longer maintained. Please upgrade to the latest version.
Page Types and Page Labels
The CMS in SAP Commerce Cloud comes with the concept of three special page types: Product Page, Category Page, Catalog Page (Catalog is not supported for now) and one common type Content Page used for all other pages, i.e. login, order history or faq.
Spartacus reflects that by defining a few Angular Routes
:
- route with
:productCode
param - for Product Pages - route with
:categoryCode
param and route with:brandCode
param - for Category Pages - wildcard
**
route - for all other, Content Pages
The URLs of product, category and brand pages can be configured only in Spartacus. Content Pages have a configurable URL in the CMS, called page label.
How to add Content Page route
To add new route, no development is required, it suffices to add in the CMS a new Content Page with page label starting with slash i.e. /contact-us
. The Spartacus’ wildcard **
route with match it out of the box.
How to customize the Product Page route
Product Page route can be configured only in Spartacus. It has to contain the :productCode
param to identify the product. But for SEO you may want to also include more parameters that can be accessed in the product entity, i.e. product name, in ConfigModule
:
routing: {
routes: {
product: { paths: ['product/:name/:productCode'] }
}
}
Note: The optional paramsMapping
config can be used for properties that have a different name than the route parameter (i.e. to map from product.code
to :productCode
). For more information, see Configurable Router Links.
How to customize the Category Page route
Similar to Product Page.
How to add Content Page with dynamic params
Angular routes can contain dynamic route parameters that are consumed in the logic of Angular components. Although The SAP Commerce Cloud CMS doesn’t support page labels with dynamic params, you can have dynamic params for Content Pages in Spartacus. You need to define your custom Angular Route
with path
and explicitly assign the CMS page label, for example in your app.module.ts
:
import { PageLayoutComponent, CmsPageGuard } from `@spartacus/storefront`;
/* ... */
imports: [
RouterModule.forChild([
{
// path with dynamic param:
path: 'order/:orderCode',
// page label without param, starting with slash:
data: { pageLabel: '/order' },
// those are needed to display slots and components from CMS:
component: PageLayoutComponent,
canActivate: [CmsPageGuard]
}
]),
]
How to add Angular children routes for Content Page
Angular can display components for children routes inside nested <router-outlet>
. Although the SAP Commerce Cloud CMS doesn’t support children pages, in Spartacus you can have children routes. You need to configure children routes for your CMS compoennt, for example in ConfigModule
:
cmsComponents: {
CustomComponentName: {
component: CustomComponent,
childRoutes: [
{
path: 'some/nested/path',
component: ChildCustomComponent,
},
],
}
}
Note: accessing children routes via a deep links to nested routes is not yet supported. You have to open firstly the parent route and then navigate to the child route via router link.
Note 2: children routes of Product and Category Pages are not supported.
Advanced: How to configure category name in the Product Page route
Only the first-level properties of the product entity (i.e. code
or name
) can be used to build URL. Unfortunately, product categories is not the case (the field categories
is an array of objects). So you need to map categories
array’s elements to the first-level properties of the product entity. You can perform such a mapping for example in the PRODUCT_NORMALIZER
. Here is how to do it:
Provide PRODUCT_NORMALIZER
i.e. in your app.module:
providers: [
{
provide: PRODUCT_NORMALIZER,
useClass: MyProductCategoriesNormalizer,
multi: true,
},
]
… and add your implementation with mapping …
@Injectable()
export class MyProductCategoriesNormalizer
implements Converter<Occ.Product, Product> {
convert(source: Occ.Product, target?: any): any {
if (source.categories && source.categories.length) {
target.category = source.categories[0].name; //
}
return target;
}
}
… then the category
field is available in your product entity. So you can configure the Product Page route in ConfigModule
to contain :category
param:
routing: {
routes: {
product: { paths: ['product/:category/:name/:productCode'] }
}
}
Note: it’s a known issue that product entities returned by the OCC product search endpoint don’t contain categories. So you may want to also generate URLs from product entities that do not include categories. Then you need to configure also the second, less-specific route alias:
routing: {
routes: {
product: {
paths: ['product/:category/:name/:productCode', 'product/:name/:productCode']
}
}
}
Backwards Compatibility with Accelerators
The SAP Commerce Cloud Accelerators used routes **/p/:productCode
and **/c/:categoryCode
for Product and Category Page. For backwards compatibility, Spartacus also matches those routes, by simply numbering parameters.
So for example URL /some-catalogue/some-category/p/1234
will be recognized with parameters:
{
productCode: '1234',
param0: 'some-catalogue',
param1: 'some-category',
}
If you want to have more semantic names of parameters, you can configure a route alias. For example in ConfigModule
:
routing: {
routes: {
product: {
paths: ['product/:name/:productCode', ':catalogue/:category/p/:productCode']
}
}
}
Expected CMS page labels of Content Pages
Spartacus expects the page label homepage
to be configured in the CMS. For B2C Storefront recipe the list of expected CMS page labels by default is longer:
search
/login
/logout
/login/register
/login/forgot-password
/login/reset-password
/terms-and-conditions
/cart
/checkout
/checkout/shipping-address
/checkout/delivery-mode
/checkout/payment-details
/checkout/review-order
/order-confirmation
/my-account/order
/my-account/orders
/not-found
Fixed CMS page labels
For almost all Content Pages, Spartacus treats the URL as the CMS page label. It means that changing the config of route in Spartacus requires also a change of the page label in the CMS. However, there are few exceptions - when the configurable Spartacus’ URL is mapped to a fixed CMS page label:
Spartacus URL (configurable) | Fixed CMS page label |
---|---|
/search/:query (configurable cxRoute search ) |
search |
/my-account/order/:orderCode (configurable cxRoute orderDetails ) |
/my-account/order |