mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { FC, useEffect, useRef } from 'react';
|
|
import { AutoGrid, AutoGridProps, LayoutGridItem } from '../../../../../common';
|
|
import { useCatalogData } from '../../../../../hooks';
|
|
import { getFurniIconUrl } from '../common/getFurniIconUrl';
|
|
|
|
interface CatalogBundleGridWidgetViewProps extends AutoGridProps
|
|
{
|
|
|
|
}
|
|
|
|
export const CatalogBundleGridWidgetView: FC<CatalogBundleGridWidgetViewProps> = props =>
|
|
{
|
|
const { columnCount = 5, children = null, ...rest } = props;
|
|
const { currentOffer = null } = useCatalogData();
|
|
const elementRef = useRef<HTMLDivElement>(null);
|
|
|
|
useEffect(() =>
|
|
{
|
|
if(elementRef && elementRef.current) elementRef.current.scrollTop = 0;
|
|
}, [ currentOffer ]);
|
|
|
|
if(!currentOffer) return null;
|
|
|
|
return (
|
|
<AutoGrid columnCount={ 5 } innerRef={ elementRef } { ...rest }>
|
|
{ currentOffer.products && (currentOffer.products.length > 0) && currentOffer.products.map((product, index) => <LayoutGridItem key={ index } itemCount={ product.productCount } itemImage={ getFurniIconUrl(product) } />) }
|
|
{ children }
|
|
</AutoGrid>
|
|
);
|
|
};
|