@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.
178 lines (177 loc) • 5.99 kB
JavaScript
'use client';
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
const _excluded = ["children", "value", "component", "color", "variant", "size", "slots", "slotProps", "keepMounted"];
import * as React from 'react';
import PropTypes from 'prop-types';
import { unstable_capitalize as capitalize } from '@mui/utils';
import { unstable_composeClasses as composeClasses } from '@mui/base';
import { useTabPanel } from '@mui/base/useTabPanel';
import { useTabsContext } from '@mui/base/Tabs';
import { styled, useThemeProps } from '../styles';
import SizeTabsContext from '../Tabs/SizeTabsContext';
import { getTabPanelUtilityClass } from './tabPanelClasses';
import useSlot from '../utils/useSlot';
import { jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
hidden,
size,
variant,
color,
orientation
} = ownerState;
const slots = {
root: ['root', hidden && 'hidden', size && `size${capitalize(size)}`, orientation, variant && `variant${capitalize(variant)}`, color && `color${capitalize(color)}`, size && `size${capitalize(size)}`]
};
return composeClasses(slots, getTabPanelUtilityClass, {});
};
const TabPanelRoot = styled('div', {
name: 'JoyTabPanel',
slot: 'Root',
overridesResolver: (props, styles) => styles.root
})(({
theme,
ownerState
}) => {
var _theme$variants;
return _extends({
display: ownerState.hidden ? 'none' : 'block',
padding: 'var(--Tabs-spacing)',
flexGrow: 1,
fontFamily: theme.vars.fontFamily.body
}, theme.typography[`body-${ownerState.size}`], (_theme$variants = theme.variants[ownerState.variant]) == null ? void 0 : _theme$variants[ownerState.color]);
});
/**
*
* Demos:
*
* - [Tabs](https://mui.com/joy-ui/react-tabs/)
*
* API:
*
* - [TabPanel API](https://mui.com/joy-ui/api/tab-panel/)
*/
const TabPanel = /*#__PURE__*/React.forwardRef(function TabPanel(inProps, ref) {
const props = useThemeProps({
props: inProps,
name: 'JoyTabPanel'
});
const {
orientation
} = useTabsContext() || {
orientation: 'horizontal'
};
const tabsSize = React.useContext(SizeTabsContext);
const {
children,
value = 0,
component,
color = 'neutral',
variant = 'plain',
size: sizeProp,
slots = {},
slotProps = {},
keepMounted = false
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const {
hidden,
getRootProps
} = useTabPanel(_extends({}, props, {
value
}));
const size = sizeProp != null ? sizeProp : tabsSize;
const ownerState = _extends({}, props, {
orientation,
hidden,
size,
color,
variant
});
const classes = useUtilityClasses(ownerState);
const externalForwardedProps = _extends({}, other, {
component,
slots,
slotProps
});
const [SlotRoot, rootProps] = useSlot('root', {
ref,
elementType: TabPanelRoot,
getSlotProps: getRootProps,
externalForwardedProps,
additionalProps: {
role: 'tabpanel',
ref,
as: component
},
ownerState,
className: classes.root
});
if (keepMounted) {
return /*#__PURE__*/_jsx(SlotRoot, _extends({}, rootProps, {
children: children
}));
}
return /*#__PURE__*/_jsx(SlotRoot, _extends({}, rootProps, {
children: !hidden && children
}));
});
process.env.NODE_ENV !== "production" ? TabPanel.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* 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,
/**
* Always keep the children in the DOM.
* @default false
*/
keepMounted: PropTypes.bool,
/**
* The size of the component.
*/
size: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['sm', 'md', 'lg']), 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 value of the TabPanel. It will be shown when the Tab with the corresponding value is selected.
* @default 0
*/
value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/**
* The [global variant](https://mui.com/joy-ui/main-features/global-variants/) to use.
* @default 'plain'
*/
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['outlined', 'plain', 'soft', 'solid']), PropTypes.string])
} : void 0;
export default TabPanel;