UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

42 lines (35 loc) 1.87 kB
import { __rest } from "tslib"; import { jsx as _jsx } from "react/jsx-runtime"; import { styled } from '@mui/material/styles'; import { PREFIX } from './constants'; import { Box, Grid } from '@mui/material'; import classNames from 'classnames'; import { EventSkeleton } from '../Event'; const classes = { root: `${PREFIX}-skeleton-root`, events: `${PREFIX}-skeleton-events`, item: `${PREFIX}-skeleton-item` }; const Root = styled(Box, { name: PREFIX, slot: 'SkeletonRoot' })(() => ({})); /** * > API documentation for the Community-JS Groups Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {EventsSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCEvents-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCEvents-skeleton-root|Styles applied to the root element.| |events|.SCEvents-skeleton-events|Styles applied to the group elements.| * */ export default function EventsSkeleton(inProps) { const { className, EventSkeletonProps = {}, eventsNumber = 8, GridContainerComponentProps = {}, GridItemComponentProps = {} } = inProps, rest = __rest(inProps, ["className", "EventSkeletonProps", "eventsNumber", "GridContainerComponentProps", "GridItemComponentProps"]); return (_jsx(Root, Object.assign({ className: classNames(classes.root, className) }, rest, { children: _jsx(Grid, Object.assign({ container: true, spacing: { xs: 3 }, className: classes.events }, GridContainerComponentProps, { children: [...Array(eventsNumber)].map((event, index) => (_jsx(Grid, Object.assign({ item: true, xs: 12, sm: 12, md: 6 }, GridItemComponentProps, { className: classes.item }, { children: _jsx(EventSkeleton, Object.assign({}, EventSkeletonProps)) }), index))) })) }))); }