UNPKG

@mui/joy

Version:

Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.

227 lines (225 loc) 8.69 kB
'use client'; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import _extends from "@babel/runtime/helpers/esm/extends"; const _excluded = ["className", "color", "component", "invertedColors", "size", "variant", "children", "orientation", "slots", "slotProps"]; import * as React from 'react'; import clsx from 'clsx'; import PropTypes from 'prop-types'; import { unstable_composeClasses as composeClasses } from '@mui/base'; import { unstable_capitalize as capitalize, unstable_isMuiElement as isMuiElement } from '@mui/utils'; import { useThemeProps } from '../styles'; import { applySolidInversion, applySoftInversion } from '../colorInversion'; import styled from '../styles/styled'; import { getCardUtilityClass } from './cardClasses'; import { resolveSxValue } from '../styles/styleUtils'; import useSlot from '../utils/useSlot'; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { size, variant, color, orientation } = ownerState; const slots = { root: ['root', orientation, variant && `variant${capitalize(variant)}`, color && `color${capitalize(color)}`, size && `size${capitalize(size)}`] }; return composeClasses(slots, getCardUtilityClass, {}); }; export const StyledCardRoot = styled('div')(({ theme, ownerState }) => { var _theme$variants; const { p, padding, borderRadius } = resolveSxValue({ theme, ownerState }, ['p', 'padding', 'borderRadius']); return [_extends({ '--Icon-color': ownerState.color !== 'neutral' || ownerState.variant === 'solid' ? 'currentColor' : theme.vars.palette.text.icon, // a context variable for any child component '--Card-childRadius': 'max((var(--Card-radius) - var(--variant-borderWidth, 0px)) - var(--Card-padding), min(var(--Card-padding) / 2, (var(--Card-radius) - var(--variant-borderWidth, 0px)) / 2))', // AspectRatio integration '--AspectRatio-radius': 'var(--Card-childRadius)', // Link integration '--unstable_actionMargin': 'calc(-1 * var(--variant-borderWidth, 0px))', // Link, Radio, Checkbox integration '--unstable_actionRadius': 'var(--Card-radius)', // CardCover integration '--CardCover-radius': 'calc(var(--Card-radius) - var(--variant-borderWidth, 0px))', // CardOverflow integration '--CardOverflow-offset': `calc(-1 * var(--Card-padding))`, '--CardOverflow-radius': 'calc(var(--Card-radius) - var(--variant-borderWidth, 0px))', // Divider integration '--Divider-inset': 'calc(-1 * var(--Card-padding))' }, ownerState.size === 'sm' && { '--Card-radius': theme.vars.radius.sm, '--Card-padding': '0.625rem', gap: '0.5rem' }, ownerState.size === 'md' && { '--Card-radius': theme.vars.radius.md, '--Card-padding': '1rem', gap: '0.75rem 1rem' }, ownerState.size === 'lg' && { '--Card-radius': theme.vars.radius.lg, '--Card-padding': '1.5rem', gap: '1rem 1.5rem' }, { padding: 'var(--Card-padding)', borderRadius: 'var(--Card-radius)', backgroundColor: theme.vars.palette.background.surface, position: 'relative', display: 'flex', flexDirection: ownerState.orientation === 'horizontal' ? 'row' : 'column' }, theme.typography[`body-${ownerState.size}`], ownerState.variant === 'solid' && ownerState.color && ownerState.invertedColors && applySolidInversion(ownerState.color)(theme), ownerState.variant === 'soft' && ownerState.color && ownerState.invertedColors && applySoftInversion(ownerState.color)(theme), (_theme$variants = theme.variants[ownerState.variant]) == null ? void 0 : _theme$variants[ownerState.color]), p !== undefined && { '--Card-padding': p }, padding !== undefined && { '--Card-padding': padding }, borderRadius !== undefined && { '--Card-radius': borderRadius }]; }); const CardRoot = styled(StyledCardRoot, { name: 'JoyCard', slot: 'Root', overridesResolver: (props, styles) => styles.root })({}); /** * * Demos: * * - [Card](https://mui.com/joy-ui/react-card/) * * API: * * - [Card API](https://mui.com/joy-ui/api/card/) */ const Card = /*#__PURE__*/React.forwardRef(function Card(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'JoyCard' }); const { className, color = 'neutral', component = 'div', invertedColors = false, size = 'md', variant = 'outlined', children, orientation = 'vertical', slots = {}, slotProps = {} } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const ownerState = _extends({}, props, { color, component, orientation, size, variant, invertedColors }); const classes = useUtilityClasses(ownerState); const externalForwardedProps = _extends({}, other, { component, slots, slotProps }); const [SlotRoot, rootProps] = useSlot('root', { ref, className: clsx(classes.root, className), elementType: CardRoot, externalForwardedProps, ownerState }); return /*#__PURE__*/_jsx(SlotRoot, _extends({}, rootProps, { children: React.Children.map(children, (child, index) => { if (! /*#__PURE__*/React.isValidElement(child)) { return child; } const extraProps = {}; if (isMuiElement(child, ['Divider'])) { extraProps.inset = 'inset' in child.props ? child.props.inset : 'context'; const dividerOrientation = orientation === 'vertical' ? 'horizontal' : 'vertical'; extraProps.orientation = 'orientation' in child.props ? child.props.orientation : dividerOrientation; } if (index === 0) { extraProps['data-first-child'] = ''; } if (index === React.Children.count(children) - 1) { extraProps['data-last-child'] = ''; } return /*#__PURE__*/React.cloneElement(child, extraProps); }) })); }); process.env.NODE_ENV !== "production" ? Card.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * Used to render icon or text elements inside the Card if `src` is not set. * This can be an element, or just a string. */ children: PropTypes.node, /** * @ignore */ className: PropTypes.string, /** * The color of the component. It supports those theme colors that make sense for this component. * @default 'neutral' */ color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['danger', 'neutral', 'primary', 'success', 'warning']), PropTypes.string]), /** * The component used for the root node. * Either a string to use a HTML element or a component. */ component: PropTypes.elementType, /** * If `true`, the children with an implicit color prop invert their colors to match the component's variant and color. * @default false */ invertedColors: PropTypes.bool, /** * The component orientation. * @default 'vertical' */ orientation: PropTypes.oneOf(['horizontal', 'vertical']), /** * The size of the component. * It accepts theme values between 'sm' and 'lg'. * @default 'md' */ size: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['lg', 'md', 'sm']), PropTypes.string]), /** * The props used for each slot inside. * @default {} */ slotProps: PropTypes.shape({ root: PropTypes.oneOfType([PropTypes.func, PropTypes.object]) }), /** * The components used for each slot inside. * @default {} */ slots: PropTypes.shape({ root: PropTypes.elementType }), /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]), /** * The [global variant](https://mui.com/joy-ui/main-features/global-variants/) to use. * @default 'outlined' */ variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['outlined', 'plain', 'soft', 'solid']), PropTypes.string]) } : void 0; export default Card;