@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
46 lines (39 loc) • 2.43 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const jsx_runtime_1 = require("react/jsx-runtime");
const ListItem_1 = tslib_1.__importDefault(require("@mui/material/ListItem"));
const ListItemAvatar_1 = tslib_1.__importDefault(require("@mui/material/ListItemAvatar"));
const ListItemText_1 = tslib_1.__importDefault(require("@mui/material/ListItemText"));
const styles_1 = require("@mui/material/styles");
const Skeleton_1 = tslib_1.__importDefault(require("@mui/material/Skeleton"));
const material_1 = require("@mui/material");
const constants_1 = require("./constants");
const classes = {
root: `${constants_1.PREFIX}-skeleton-root`,
list: `${constants_1.PREFIX}-list`
};
const Root = (0, styles_1.styled)(ListItem_1.default, {
name: constants_1.PREFIX,
slot: 'SkeletonRoot'
})(() => ({}));
/**
* > API documentation for the Community-JS PrivateMessageSnippetItem Skeleton component. Learn about the available props and the CSS API.
#### Import
```jsx
import {PrivateMessageSnippetItemSkeleton} from '@selfcommunity/react-ui';
```
#### Component Name
The name `SCPrivateMessageSnippetItem-skeleton-root` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCPrivateMessageSnippetItem-skeleton-root|Styles applied to the root element.|
|list|.SCPrivateMessageSnippetItem-list|Styles applied to the list element.|
*
*/
function PrivateMessageSnippetItemSkeleton(props) {
const theme = (0, material_1.useTheme)();
return ((0, jsx_runtime_1.jsxs)(Root, Object.assign({ className: classes.root }, props, { secondaryAction: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", height: 30, width: 5 }) }, { children: [(0, jsx_runtime_1.jsx)(ListItemAvatar_1.default, { children: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", variant: "circular", width: theme.selfcommunity.user.avatar.sizeMedium, height: theme.selfcommunity.user.avatar.sizeMedium }) }), (0, jsx_runtime_1.jsx)(ListItemText_1.default, { primary: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", height: 10, width: 120, style: { marginBottom: 10 } }), secondary: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", height: 10, width: 70, style: { marginBottom: 10 } }) })] })));
}
exports.default = PrivateMessageSnippetItemSkeleton;