Insights

A Comprehensive Guide to Mastering Placeholder Functionality in Sitecore XM Cloud

Tired of placeholder issues in Sitecore XM Cloud? Discover how to fix them with Nextjs workarounds. 

Placeholders in XM Cloud with Nextjs

When working with Placeholders on a Nextjs project with Sitecore XM Cloud, issues may come up. Sitecore has deployed updates on a package [templates/nextjs-sxa] used for Headless projects; recent updates on JSS, specifically 21.0.5, have updated some functionality on Placeholders for XMCloud and Nextjs.

Unexpected Problems With Incorrect Placeholder Setup

Some of the issues are the following when incorrectly setting up the placeholder.

  1. The Allowed Controls list will not work when authoring pages in Experience Editor, it will instead show all the available renderings, which can cause problems for authors and editors.
  2. When setting up a page with placeholders, if you do not save right after adding a component, it allows placeholders in the component. Then, when adding a component inside the placeholder and saving, there’s a chance it won’t be setup correctly, and the placeholder used will be incorrect in the Presentation Details.

Solution for Components With a single Placeholder

The initial solution for components having only one placeholder setup is pretty straightforward.

  1. Format your placeholder key having a single string with no dashes followed by {*}. It should look like this placeholdertext-{*} . Don’t forget to add your placeholder inside your rendering.Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

  2. Add your placeholder in the Placeholder Settings in your Content with the format placeholdertext*
    Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

  3. In your Nextjs component, set up the component similar to the example below.

    Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Resource

Sitecore Documentation: Walkthrough: Configure your renderings to use dynamic placeholders

Limitations to the Current Solution

When we format our placeholders as placeholdertext-{*} it works fine with Allowed Controls and setting up a page in Experience Editor, but it currently has limitations. When a component requires two placeholders and applies the format, the component breaks in Experience Editor.

Looking into the warnings, the placeholders returned aren’t quite correct. Sitecore has set up two components which handle multiple placeholders Row Splitter and Column Splitter which are working properly.

Investigating the Placeholder Issue

Before introducing the workaround, I’ll provide how we were able to come up with this solution and how were able to investigate and discover it. Looking at how the Column Splitter placeholder and rendering are set up.

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Column Splitter Placeholder and Placeholder Key

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Column Splitter Nextjs Component

 

We can see that by assigning your keys as placeholder-${number}-{*} , everything should be working properly. But after applying it, it seems to give us an error and tells us that the placeholders aren’t set up.

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Looking in the Changelog File Updates for JSS Placeholder

Looking deeper into how things work by checking out the files handling our Placeholders.

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

I tried testing the regular expression to see if it could be reused.

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

We can see that the certain fix can only be applied to the column and row splitters, but with how the regex is setup we can do some tweaking and apply our own Allowed Controls on our own components by simply setting up our placeholder keys as

[placeholder_string]column-{digit}-{*}

Workaround for Multiple Placeholders in a Component

With what we found out, we can now start creating our own component, which has multiple placeholders set. Let’s start off with a component called TwoColumn which has two placeholders.

twocolumn-1-{*} and twocolumn-2-{*} will be our placeholders. Let’s set it up in Sitecore

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

We then apply the right Allowed Controls on the Placeholder Settings on the Content details.

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Apply the same Placeholder names on our Nextjs component.

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

After setting up the component in Experience Editor, the placeholders should be working now.

Solving Placeholder Issues in Sitecore XM Cloud with Nextjs

Limitations to the Workaround for a Component With Multiple Placeholders

This is just a workaround and still has its own limitations. With how the logic works, we can only set up a single Allowed Control that will be used for our multiple Placeholders. We cannot have different Allowed Control for each of them.



Meet John Flores

Front-End Developer

🪴🐩📷

John is a Front-End Developer who is passionate about design and development. Outside of work, John has wide range of hobbies, from his plant collection, being a dog daddy, and a foodie.

Connect with John