You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.3 KiB
JavaScript
59 lines
2.3 KiB
JavaScript
"use strict";
|
|
'use client';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.TabsProvider = TabsProvider;
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _TabsContext = require("../Tabs/TabsContext");
|
|
var _useCompound = require("../useCompound");
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
/**
|
|
* Sets up the contexts for the underlying Tab and TabPanel components.
|
|
*
|
|
* @ignore - do not document.
|
|
*/
|
|
function TabsProvider(props) {
|
|
const {
|
|
value: valueProp,
|
|
children
|
|
} = props;
|
|
const {
|
|
direction,
|
|
getItemIndex,
|
|
onSelected,
|
|
orientation,
|
|
registerItem,
|
|
registerTabIdLookup,
|
|
selectionFollowsFocus,
|
|
totalSubitemCount,
|
|
value,
|
|
getTabId,
|
|
getTabPanelId
|
|
} = valueProp;
|
|
const compoundComponentContextValue = React.useMemo(() => ({
|
|
getItemIndex,
|
|
registerItem,
|
|
totalSubitemCount
|
|
}), [registerItem, getItemIndex, totalSubitemCount]);
|
|
const tabsContextValue = React.useMemo(() => ({
|
|
direction,
|
|
getTabId,
|
|
getTabPanelId,
|
|
onSelected,
|
|
orientation,
|
|
registerTabIdLookup,
|
|
selectionFollowsFocus,
|
|
value
|
|
}), [direction, getTabId, getTabPanelId, onSelected, orientation, registerTabIdLookup, selectionFollowsFocus, value]);
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_useCompound.CompoundComponentContext.Provider, {
|
|
value: compoundComponentContextValue,
|
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_TabsContext.TabsContext.Provider, {
|
|
value: tabsContextValue,
|
|
children: children
|
|
})
|
|
});
|
|
} |