@mui/base
Version:
A library of headless ('unstyled') React UI components and low-level hooks.
59 lines (58 loc) • 1.47 kB
JavaScript
import * as React from 'react';
import { unstable_useId as useId, unstable_useForkRef as useForkRef } from '@mui/utils';
import { useTabsContext } from '../Tabs';
import { useCompoundItem } from '../utils/useCompoundItem';
function tabPanelValueGenerator(otherTabPanelValues) {
return otherTabPanelValues.size;
}
/**
*
* Demos:
*
* - [Tabs](https://mui.com/base/react-tabs/#hooks)
*
* API:
*
* - [useTabPanel API](https://mui.com/base/react-tabs/hooks-api/#use-tab-panel)
*/
function useTabPanel(parameters) {
const {
value: valueParam,
id: idParam,
rootRef: externalRef
} = parameters;
const context = useTabsContext();
if (context === null) {
throw new Error('No TabContext provided');
}
const {
value: selectedTabValue,
getTabId
} = context;
const id = useId(idParam);
const ref = React.useRef(null);
const handleRef = useForkRef(ref, externalRef);
const metadata = React.useMemo(() => ({
id,
ref
}), [id]);
const {
id: value
} = useCompoundItem(valueParam ?? tabPanelValueGenerator, metadata);
const hidden = value !== selectedTabValue;
const correspondingTabId = value !== undefined ? getTabId(value) : undefined;
const getRootProps = () => {
return {
'aria-labelledby': correspondingTabId ?? undefined,
hidden,
id: id ?? undefined,
ref: handleRef
};
};
return {
hidden,
getRootProps,
rootRef: handleRef
};
}
export default useTabPanel;