Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101488981
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
Mon, Feb 10, 23:01
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Feb 12, 23:01 (2 d)
Engine
blob
Format
Raw Data
Handle
24163246
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