125 lines
3.5 KiB
JavaScript
125 lines
3.5 KiB
JavaScript
|
'use client';
|
||
|
|
||
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
||
|
import * as React from 'react';
|
||
|
import { useTabsContext } from '../Tabs';
|
||
|
import { TabsListActionTypes } from './useTabsList.types';
|
||
|
import { useCompoundParent } from '../useCompound';
|
||
|
import { useList } from '../useList';
|
||
|
import { tabsListReducer } from './tabsListReducer';
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* 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 _extends({}, externalProps, getListboxRootProps(externalProps), {
|
||
|
'aria-orientation': orientation === 'vertical' ? 'vertical' : undefined,
|
||
|
role: 'tablist'
|
||
|
});
|
||
|
};
|
||
|
const contextValue = React.useMemo(() => _extends({}, compoundComponentContextValue, listContextValue), [compoundComponentContextValue, listContextValue]);
|
||
|
return {
|
||
|
contextValue,
|
||
|
dispatch,
|
||
|
getRootProps,
|
||
|
highlightedValue,
|
||
|
isRtl,
|
||
|
orientation,
|
||
|
rootRef: mergedRootRef,
|
||
|
selectedValue: selectedValues[0] ?? null
|
||
|
};
|
||
|
}
|
||
|
export { useTabsList };
|