Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122125590
Tabs.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 15, 23:08
Size
1 KB
Mime Type
text/x-java
Expires
Thu, Jul 17, 23:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27437939
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Tabs.js
View Options
import * as React from 'react';
import { useMemo } from 'react';
import { useUncontrolledProp } from 'uncontrollable';
import { useSSRSafeId } from './ssr';
import TabContext from './TabContext';
import SelectableContext from './SelectableContext';
import TabPanel from './TabPanel';
import { jsx as _jsx } from "react/jsx-runtime";
const Tabs = props => {
const {
id: userId,
generateChildId: generateCustomChildId,
onSelect: propsOnSelect,
activeKey: propsActiveKey,
defaultActiveKey,
transition,
mountOnEnter,
unmountOnExit,
children
} = props;
const [activeKey, onSelect] = useUncontrolledProp(propsActiveKey, defaultActiveKey, propsOnSelect);
const id = useSSRSafeId(userId);
const generateChildId = useMemo(() => generateCustomChildId || ((key, type) => id ? `${id}-${type}-${key}` : null), [id, generateCustomChildId]);
const tabContext = useMemo(() => ({
onSelect,
activeKey,
transition,
mountOnEnter: mountOnEnter || false,
unmountOnExit: unmountOnExit || false,
getControlledId: key => generateChildId(key, 'tabpane'),
getControllerId: key => generateChildId(key, 'tab')
}), [onSelect, activeKey, transition, mountOnEnter, unmountOnExit, generateChildId]);
return /*#__PURE__*/_jsx(TabContext.Provider, {
value: tabContext,
children: /*#__PURE__*/_jsx(SelectableContext.Provider, {
value: onSelect || null,
children: children
})
});
};
Tabs.Panel = TabPanel;
export default Tabs;
Event Timeline
Log In to Comment