Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

How to extend ResponsiveGrid in React SPA

Avatar

Level 1

Adobe SPA SDK provides implementation of ResponsiveGrid which is already mapped to 

wcm/foundation/components/responsivegrid

In case I want to extend it, how am I supposed to do it? It is not very documented anywhere.
I'm referring to newly updated ResponsiveGrid which is coming with 1.0.0 of

@adobe/aem-react-editable-components

One example I found was suggesting something like this:

export class MyGrid extends ResponsiveGrid {
render() {
return (
<div {...this.containerProps}>
<div className="MyGrid-message">Welcome to my Custom Grid!</div>
{ super.childComponents }
{ super.placeholderComponent }
</div>
)
}
}

 But that didn't work. It renders the "welcome..." text, but no placeholder for adding new components.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
8 Replies

Avatar

Community Advisor

@Grimm1 

I was also looking for something like this, extending responsivegrid and customizing it.

The reason why we can't do so is that SPA templates doesn't render non SPA or any existing OOTB component.

Now sure how we can achieve this but I guess should create a Responsive grid React component and by using mapTo statement, mapping it to AEM overlayed component under /apps/project/content/components and do some customization in React component itself. 
As far as I know we can't do any customization from AEM apart from just overlaying. Try using Aem spa libraries in React.

If possible please loop me in too, if you anything to make it work.

Thanks,
Nikhil 

Avatar

Community Advisor

@Grimm1 
Similar issue was raised in https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/include-responsivegrid-com...

It shows the implementation in Angular for responsiveGrid, Can you try using the same in React as well? 

MapIt to the OOTB responsivegrid component in react i.e. wcm/foundation/components/responsivegrid

Let me know if it works!!!


Thanks,
Nikhil

Avatar

Level 1

It is not very similar. I am able to use existing responsivegrid just fine, because it already has mapping to work in SPA, which is provided by the SDK.

In my case, I want to extend it.

 

For that I obviously need to:

1) create a component under my project's apps folder, which is going to have

sling:resourceSuperType="wcm/foundation/components/responsivegrid"

2) create a React renderer, let's name it Container.js

3) add it into import-components.js

4) in Container.js, I need to extend existing ResponsiveGrid class which comes from SDK

 

 

Avatar

Community Advisor

@Grimm1 
Below code snippet is missing in your contained class that you mentioned:

get containerProps() {
let containerProps = super.containerProps;
containerProps.className = (containerProps.className || '') + ' MyGrid ' + this.props.gridClassNames;
return containerProps;
}

Refer this link for grid component :  https://github.com/godanny86/aem-guides-wknd-events/tree/feature/mygrid

Thanks,
Nikhil

Avatar

Correct answer by
Community Advisor

@Grimm1 
Try this one out https://github.com/godanny86/aem-guides-wknd-events/tree/feature/mygrid it worked for me.

Nikhil-Kumar_0-1598469383977.png
Thanks,
Nikhil

 

Avatar

Community Advisor

You need to extend

 

 

class ResponsiveGrid extends AllowedComponentsContainer {

    /**
     * The attributes that will be injected in the root element of the container
     *
     *  {Object} - the attributes of the container
     */
    get containerProps() {
        let containerProps = super.containerProps;
        containerProps.className = (containerProps.className || '') + ' ' +  this.props.gridClassNames;
        return containerProps;
    }

    /**
     * The properties that will go on the placeholder component root element
     *
     *  {Object} - the properties as a map
     */
    get placeholderProps() {
        let props = super.placeholderProps;
        props.placeholderClassNames = (props.placeholderClassNames || '') + ' ' +  PLACEHOLDER_CLASS_NAMES;
        return props;
    }

    /**
     * Returns the properties to add on a specific child component
     *
     *    {Object} item     The item data
     *    {String} itemKey  The key of the item
     *    {String} itemPath The path of the item
     *  {Object} The map of properties to be added
     */
    getItemComponentProps(item, itemKey, itemPath) {
        let attrs = super.getItemComponentProps(item, itemKey, itemPath);

        attrs.className = attrs.className || '';
        attrs.className += this.props.columnClassNames && this.props.columnClassNames[itemKey] ? ' ' + this.props.columnClassNames[itemKey] : '';

        return attrs;
    }
}

ResponsiveGrid.defaultProps = {
    title: 'Layout Container',
    // Temporary property until CQ-4265892 is addressed, beware not rely it
    _allowedComponentPlaceholderListEmptyLabel: 'No allowed components for Layout Container'
};

MapTo('wcm/foundation/components/responsivegrid')(withComponentMappingContext(ResponsiveGrid));

 

 

like responsivegrid extending allowecomponentsContainer

 

 

  



Arun Patidar

Avatar

Level 1

Found out why it was not rendering the placeholder for adding new elements.

It was not React issue, but the missing sub-component for generating newpar, which will not come from the extended responsivegrid.

Grimm1_0-1598516958729.png

<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="cq:Component"
jcr:title="New Paragraph - Responsive Grid"
sling:resourceSuperType="wcm/foundation/components/parsys/newpar"
componentGroup=".hidden"/>

All the other code mentioned above works just fine, even with new v1.0.0 dependency

"@adobe/aem-react-editable-components"