react-tabs
Version:
An accessible and easy tab component for ReactJS
53 lines (41 loc) • 2.28 kB
JavaScript
;
exports.__esModule = true;
exports.deepMap = deepMap;
exports.deepForEach = deepForEach;
var _react = require("react");
var _elementTypes = require("./elementTypes");
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function isTabChild(child) {
return (0, _elementTypes.isTab)(child) || (0, _elementTypes.isTabList)(child) || (0, _elementTypes.isTabPanel)(child);
}
function deepMap(children, callback) {
return _react.Children.map(children, function (child) {
// null happens when conditionally rendering TabPanel/Tab
// see https://github.com/reactjs/react-tabs/issues/37
if (child === null) return null;
if (isTabChild(child)) {
return callback(child);
}
if (child.props && child.props.children && typeof child.props.children === 'object') {
// Clone the child that has children and map them too
return (0, _react.cloneElement)(child, _objectSpread({}, child.props, {
children: deepMap(child.props.children, callback)
}));
}
return child;
});
}
function deepForEach(children, callback) {
return _react.Children.forEach(children, function (child) {
// null happens when conditionally rendering TabPanel/Tab
// see https://github.com/reactjs/react-tabs/issues/37
if (child === null) return;
if ((0, _elementTypes.isTab)(child) || (0, _elementTypes.isTabPanel)(child)) {
callback(child);
} else if (child.props && child.props.children && typeof child.props.children === 'object') {
if ((0, _elementTypes.isTabList)(child)) callback(child);
deepForEach(child.props.children, callback);
}
});
}