|
| 1 | +/** |
| 2 | + * External dependencies |
| 3 | + */ |
| 4 | +import { useStoreState, useTabStore } from '@ariakit/react'; |
| 5 | + |
| 6 | +/** |
| 7 | + * WordPress dependencies |
| 8 | + */ |
| 9 | +import { useInstanceId } from '@wordpress/compose'; |
| 10 | +import { useEffect, useMemo } from '@wordpress/element'; |
| 11 | +import { isRTL } from '@wordpress/i18n'; |
| 12 | + |
| 13 | +/** |
| 14 | + * Internal dependencies |
| 15 | + */ |
| 16 | +import { TabsContext } from './context'; |
| 17 | +import { Tab } from './tab'; |
| 18 | +import { TabList } from './tablist'; |
| 19 | +import { TabPanel } from './tabpanel'; |
| 20 | + |
| 21 | +const externalToInternalTabId = ( externalId, instanceId ) => { |
| 22 | + return externalId && `${ instanceId }-${ externalId }`; |
| 23 | +}; |
| 24 | + |
| 25 | +const internalToExternalTabId = ( internalId, instanceId ) => { |
| 26 | + return typeof internalId === 'string' |
| 27 | + ? internalId.replace( `${ instanceId }-`, '' ) |
| 28 | + : internalId; |
| 29 | +}; |
| 30 | + |
| 31 | +/** |
| 32 | + * Tabs is a collection of React components that combine to render |
| 33 | + * an [ARIA-compliant tabs pattern](https://www.w3.org/WAI/ARIA/apg/patterns/tabs/). |
| 34 | + * |
| 35 | + * Tabs organizes content across different screens, data sets, and interactions. |
| 36 | + * It has two sections: a list of tabs, and the view to show when a tab is chosen. |
| 37 | + * |
| 38 | + * `Tabs` itself is a wrapper component and context provider. |
| 39 | + * It is responsible for managing the state of the tabs, and rendering one instance of the `Tabs.TabList` component and one or more instances of the `Tab.TabPanel` component. |
| 40 | + */ |
| 41 | +const Tabs = Object.assign( |
| 42 | + function Tabs( { |
| 43 | + selectOnMove = true, |
| 44 | + defaultTabId, |
| 45 | + orientation = 'horizontal', |
| 46 | + onSelect, |
| 47 | + children, |
| 48 | + selectedTabId, |
| 49 | + activeTabId, |
| 50 | + defaultActiveTabId, |
| 51 | + onActiveTabIdChange, |
| 52 | + } ) { |
| 53 | + const instanceId = useInstanceId( Tabs, 'tabs' ); |
| 54 | + const store = useTabStore( { |
| 55 | + selectOnMove, |
| 56 | + orientation, |
| 57 | + defaultSelectedId: externalToInternalTabId( |
| 58 | + defaultTabId, |
| 59 | + instanceId |
| 60 | + ), |
| 61 | + setSelectedId: ( newSelectedId ) => { |
| 62 | + onSelect?.( |
| 63 | + internalToExternalTabId( newSelectedId, instanceId ) |
| 64 | + ); |
| 65 | + }, |
| 66 | + selectedId: externalToInternalTabId( selectedTabId, instanceId ), |
| 67 | + defaultActiveId: externalToInternalTabId( |
| 68 | + defaultActiveTabId, |
| 69 | + instanceId |
| 70 | + ), |
| 71 | + setActiveId: ( newActiveId ) => { |
| 72 | + onActiveTabIdChange?.( |
| 73 | + internalToExternalTabId( newActiveId, instanceId ) |
| 74 | + ); |
| 75 | + }, |
| 76 | + activeId: externalToInternalTabId( activeTabId, instanceId ), |
| 77 | + rtl: isRTL(), |
| 78 | + } ); |
| 79 | + |
| 80 | + const { items, activeId } = useStoreState( store ); |
| 81 | + const { setActiveId } = store; |
| 82 | + |
| 83 | + useEffect( () => { |
| 84 | + window.requestAnimationFrame( () => { |
| 85 | + const focusedElement = |
| 86 | + items?.[ 0 ]?.element?.ownerDocument.activeElement; |
| 87 | + |
| 88 | + if ( |
| 89 | + ! focusedElement || |
| 90 | + ! items.some( ( item ) => focusedElement === item.element ) |
| 91 | + ) { |
| 92 | + return; // Return early if no tabs are focused. |
| 93 | + } |
| 94 | + |
| 95 | + // If, after ariakit re-computes the active tab, that tab doesn't match |
| 96 | + // the currently focused tab, then we force an update to ariakit to avoid |
| 97 | + // any mismatches, especially when navigating to previous/next tab with |
| 98 | + // arrow keys. |
| 99 | + if ( activeId !== focusedElement.id ) { |
| 100 | + setActiveId( focusedElement.id ); |
| 101 | + } |
| 102 | + } ); |
| 103 | + }, [ activeId, items, setActiveId ] ); |
| 104 | + |
| 105 | + const contextValue = useMemo( |
| 106 | + () => ( { |
| 107 | + store, |
| 108 | + instanceId, |
| 109 | + } ), |
| 110 | + [ store, instanceId ] |
| 111 | + ); |
| 112 | + |
| 113 | + return ( |
| 114 | + <TabsContext.Provider value={ contextValue }> |
| 115 | + { children } |
| 116 | + </TabsContext.Provider> |
| 117 | + ); |
| 118 | + }, |
| 119 | + { |
| 120 | + /** |
| 121 | + * Renders a single tab. |
| 122 | + * |
| 123 | + * The currently active tab receives default styling that can be |
| 124 | + * overridden with CSS targeting `[aria-selected="true"]`. |
| 125 | + */ |
| 126 | + Tab: Object.assign( Tab, { |
| 127 | + displayName: 'Tabs.Tab', |
| 128 | + } ), |
| 129 | + /** |
| 130 | + * A wrapper component for the `Tab` components. |
| 131 | + * |
| 132 | + * It is responsible for rendering the list of tabs. |
| 133 | + */ |
| 134 | + TabList: Object.assign( TabList, { |
| 135 | + displayName: 'Tabs.TabList', |
| 136 | + } ), |
| 137 | + /** |
| 138 | + * Renders the content to display for a single tab once that tab is selected. |
| 139 | + */ |
| 140 | + TabPanel: Object.assign( TabPanel, { |
| 141 | + displayName: 'Tabs.TabPanel', |
| 142 | + } ), |
| 143 | + Context: Object.assign( TabsContext, { |
| 144 | + displayName: 'Tabs.Context', |
| 145 | + } ), |
| 146 | + } |
| 147 | +); |
| 148 | + |
| 149 | +export default Tabs; |
0 commit comments