AEM | SPA React Component with a responsive grid | Community
Skip to main content
New Member
October 16, 2019
Solved

AEM | SPA React Component with a responsive grid

  • October 16, 2019
  • 4 replies
  • 5856 views

Hello,

Does anyone know how I can include response grid inside react component?

It was possible in HTL.

<sly data-sly-resource="${'content' @ resourceType='wcm/foundation/components/responsivegrid'}"></sly>

Thank you

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by sunjot16

You can use that component. It's clientlibs are defined under ui.apps:

"As part of the starter project a dedicated client library for the Responsive Grid has been included in the ui.apps project. You can view the client library at /aem-guides-wknd-events/ui.apps/src/main/content/jcr_root/apps/wknd-events/clientlibs/responsive-grid. This client library has a category of wknd-events.grid and includes a single file named grid.less which includes the necessary CSS for the Layout Mode and the responsive grid to work. Next we will make sure that this CSS is loaded with the React app."

Adobe Experience Manager Help | Getting Started with React and AEM SPA Editor - Chapter 2

Moreover, it's a Layout Container Component:

Responsive Layout

You can use it the same way you can use/create the other components, the way AEM Text component is mapped to a React component.

Adobe Experience Manager Help | Getting Started with React and AEM SPA Editor - Chapter 1

4 replies

Ankur_Khare
Community Advisor
Community Advisor
October 16, 2019

Hope you have seen this -

Integrate Responsive Grid

AEM ships with an edit mode called Layout mode which when enabled allows authors to re-size components and containers to optimize content on different device widths. This feature is baked into the SPA Editing capabilities. The only action needed is to integrate AEM's Responsive Grid CSS into our project.

As part of the starter project a dedicated client library for the Responsive Grid has been included in the ui.apps project. You can view the client library at /aem-guides-wknd-events/ui.apps/src/main/content/jcr_root/apps/wknd-events/clientlibs/responsive-grid. This client library has a category of wknd-events.grid and includes a single file named grid.less which includes the necessary CSS for the Layout Mode and the responsive grid to work. Next we will make sure that this CSS is loaded with the React app

sunjot16
Adobe Employee
Adobe Employee
October 16, 2019
New Member
October 16, 2019

Hi, thanks for your reply.

I don't want to resize components inside the responsive grid.

I really need one component and I want to be able to add new components inside this one. Is a different use case.

Level 2
May 22, 2020
Did you find the answer to your question? I'm trying investigating doing the same thing.
sunjot16
Adobe Employee
sunjot16Adobe EmployeeAccepted solution
Adobe Employee
October 16, 2019

You can use that component. It's clientlibs are defined under ui.apps:

"As part of the starter project a dedicated client library for the Responsive Grid has been included in the ui.apps project. You can view the client library at /aem-guides-wknd-events/ui.apps/src/main/content/jcr_root/apps/wknd-events/clientlibs/responsive-grid. This client library has a category of wknd-events.grid and includes a single file named grid.less which includes the necessary CSS for the Layout Mode and the responsive grid to work. Next we will make sure that this CSS is loaded with the React app."

Adobe Experience Manager Help | Getting Started with React and AEM SPA Editor - Chapter 2

Moreover, it's a Layout Container Component:

Responsive Layout

You can use it the same way you can use/create the other components, the way AEM Text component is mapped to a React component.

Adobe Experience Manager Help | Getting Started with React and AEM SPA Editor - Chapter 1