Skip to content

Commit

Permalink
#516591: Add missing Headless row splitter component (#1146)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonKechashin authored Sep 7, 2022
1 parent 29b4d83 commit e9d6650
Showing 1 changed file with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import React from 'react';
import {
ComponentParams,
ComponentRendering,
Placeholder,
} from '@sitecore-jss/sitecore-jss-nextjs';

interface ComponentProps {
rendering: ComponentRendering & { params: ComponentParams };
params: ComponentParams;
}

export const Default = (props: ComponentProps): JSX.Element => {
const styles = `${props.params.GridParameters ?? ''} ${props.params.Styles ?? ''}`.trimEnd();
const rowStyles = [
props.params.Styles1,
props.params.Styles2,
props.params.Styles3,
props.params.Styles4,
props.params.Styles5,
props.params.Styles6,
props.params.Styles7,
props.params.Styles8,
];
const enabledPlaceholders = props.params.EnabledPlaceholders.split(',');

return (
<div className={`component row-splitter ${styles}`}>
{enabledPlaceholders.map((ph, index) => {
const phKey = `row-${ph}-{*}`;
const phStyles = `${rowStyles[+ph - 1] ?? ''}`.trimEnd();

return (
<div key={index} className={`container-fluid ${phStyles}`.trimEnd()}>
<div key={index}>
<div key={index} className="row">
<Placeholder key={index} name={phKey} rendering={props.rendering} />
</div>
</div>
</div>
);
})}
</div>
);
};

0 comments on commit e9d6650

Please sign in to comment.