@mui/base
Version:
MUI Base is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
129 lines (126 loc) • 3.55 kB
JavaScript
'use client';
import * as React from 'react';
import { useTabsContext } from "../Tabs/index.js";
import { TabsListActionTypes } from "./useTabsList.types.js";
import { useCompoundParent } from "../useCompound/index.js";
import { useList } from "../useList/index.js";
import { tabsListReducer } from "./tabsListReducer.js";
/**
*
* Demos:
*
* - [Tabs](https://mui.com/base-ui/react-tabs/#hooks)
*
* API:
*
* - [useTabsList API](https://mui.com/base-ui/react-tabs/hooks-api/#use-tabs-list)
*/
function useTabsList(parameters) {
const {
rootRef: externalRef
} = parameters;
const {
direction = 'ltr',
onSelected,
orientation = 'horizontal',
value,
registerTabIdLookup,
selectionFollowsFocus
} = useTabsContext();
const {
subitems,
contextValue: compoundComponentContextValue
} = useCompoundParent();
const tabIdLookup = React.useCallback(tabValue => {
return subitems.get(tabValue)?.id;
}, [subitems]);
registerTabIdLookup(tabIdLookup);
const subitemKeys = React.useMemo(() => Array.from(subitems.keys()), [subitems]);
const getTabElement = React.useCallback(tabValue => {
if (tabValue == null) {
return null;
}
return subitems.get(tabValue)?.ref.current ?? null;
}, [subitems]);
const isRtl = direction === 'rtl';
let listOrientation;
if (orientation === 'vertical') {
listOrientation = 'vertical';
} else {
listOrientation = isRtl ? 'horizontal-rtl' : 'horizontal-ltr';
}
const handleChange = React.useCallback((event, newValue) => {
onSelected(event, newValue[0] ?? null);
}, [onSelected]);
const controlledProps = React.useMemo(() => {
if (value === undefined) {
return {};
}
return value != null ? {
selectedValues: [value]
} : {
selectedValues: []
};
}, [value]);
const isItemDisabled = React.useCallback(item => subitems.get(item)?.disabled ?? false, [subitems]);
const {
contextValue: listContextValue,
dispatch,
getRootProps: getListboxRootProps,
state: {
highlightedValue,
selectedValues
},
rootRef: mergedRootRef
} = useList({
controlledProps,
disabledItemsFocusable: !selectionFollowsFocus,
focusManagement: 'DOM',
getItemDomElement: getTabElement,
isItemDisabled,
items: subitemKeys,
rootRef: externalRef,
onChange: handleChange,
orientation: listOrientation,
reducerActionContext: React.useMemo(() => ({
selectionFollowsFocus: selectionFollowsFocus || false
}), [selectionFollowsFocus]),
selectionMode: 'single',
stateReducer: tabsListReducer
});
React.useEffect(() => {
if (value === undefined) {
return;
}
// when a value changes externally, the highlighted value should be synced to it
if (value != null) {
dispatch({
type: TabsListActionTypes.valueChange,
value
});
}
}, [dispatch, value]);
const getRootProps = (externalProps = {}) => {
return {
...externalProps,
...getListboxRootProps(externalProps),
'aria-orientation': orientation === 'vertical' ? 'vertical' : undefined,
role: 'tablist'
};
};
const contextValue = React.useMemo(() => ({
...compoundComponentContextValue,
...listContextValue
}), [compoundComponentContextValue, listContextValue]);
return {
contextValue,
dispatch,
getRootProps,
highlightedValue,
isRtl,
orientation,
rootRef: mergedRootRef,
selectedValue: selectedValues[0] ?? null
};
}
export { useTabsList };