UNPKG

@selfcommunity/react-ui

Version:

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

51 lines (44 loc) 3.18 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const jsx_runtime_1 = require("react/jsx-runtime"); const material_1 = require("@mui/material"); const styles_1 = require("@mui/material/styles"); const Skeleton_1 = tslib_1.__importDefault(require("@mui/material/Skeleton")); const constants_1 = require("./constants"); const classes = { root: `${constants_1.PREFIX}-skeleton-root`, cover: `${constants_1.PREFIX}-cover`, avatar: `${constants_1.PREFIX}-avatar`, actions: `${constants_1.PREFIX}-actions`, section: `${constants_1.PREFIX}-section`, username: `${constants_1.PREFIX}-username` }; const Root = (0, styles_1.styled)(material_1.Box, { name: constants_1.PREFIX, slot: 'SkeletonRoot' })(() => ({})); /** * > API documentation for the Community-JS User Profile AppBar Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {UserProfileHeaderSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCUserProfileHeader-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCUserProfileHeader-skeleton-root|Styles applied to the root element.| |avatar|.SCUserProfileHeader-avatar|Styles applied to the avatar element.| |cover|.SCUserProfileHeader-cover|Styles applied to the cover element.| |actions|.SCUserProfileHeader-actions|Styles applied to the actions section.| |section|.SCUserProfileHeader-section|Styles applied to the info section.| |username|.SCUserProfileHeader-username|Styles applied to the username element.| * */ function UserProfileHeaderSkeleton() { const theme = (0, material_1.useTheme)(); return ((0, jsx_runtime_1.jsxs)(Root, Object.assign({ className: classes.root }, { children: [(0, jsx_runtime_1.jsx)(Skeleton_1.default, { className: classes.cover, animation: "wave", variant: "rectangular" }), (0, jsx_runtime_1.jsx)(material_1.Box, Object.assign({ className: classes.avatar }, { children: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", variant: "circular", width: theme.selfcommunity.user.avatar.sizeXLarge, height: theme.selfcommunity.user.avatar.sizeXLarge }) })), (0, jsx_runtime_1.jsxs)(material_1.Box, Object.assign({ className: classes.section }, { children: [(0, jsx_runtime_1.jsx)(material_1.Typography, Object.assign({ variant: "h5", className: classes.username }, { children: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", sx: { height: 30, width: 100, margin: '0 auto' } }) })), (0, jsx_runtime_1.jsxs)(material_1.Stack, Object.assign({ direction: "row", className: classes.actions }, { children: [(0, jsx_runtime_1.jsx)(material_1.Button, Object.assign({ variant: "contained", disabled: true }, { children: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", sx: { height: 20, width: 60 } }) })), (0, jsx_runtime_1.jsx)(material_1.IconButton, Object.assign({ disabled: true }, { children: (0, jsx_runtime_1.jsx)(material_1.Icon, { children: "more_vert" }) }))] }))] }))] }))); } exports.default = UserProfileHeaderSkeleton;