UNPKG

2.43 kBJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.forEach = forEach;
5exports.hasChildOfType = hasChildOfType;
6exports.map = map;
7var React = _interopRequireWildcard(require("react"));
8function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
9function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
10/**
11 * Iterates through children that are typically specified as `props.children`,
12 * but only maps over children that are "valid elements".
13 *
14 * The mapFunction provided index will be normalised to the components mapped,
15 * so an invalid component would not increase the index.
16 *
17 */
18function map(children, func) {
19 let index = 0;
20 return React.Children.map(children, child => /*#__PURE__*/React.isValidElement(child) ? func(child, index++) : child);
21}
22
23/**
24 * Iterates through children that are "valid elements".
25 *
26 * The provided forEachFunc(child, index) will be called for each
27 * leaf child with the index reflecting the position relative to "valid components".
28 */
29function forEach(children, func) {
30 let index = 0;
31 React.Children.forEach(children, child => {
32 if ( /*#__PURE__*/React.isValidElement(child)) func(child, index++);
33 });
34}
35
36/**
37 * Finds whether a component's `children` prop includes a React element of the
38 * specified type.
39 */
40function hasChildOfType(children, type) {
41 return React.Children.toArray(children).some(child => /*#__PURE__*/React.isValidElement(child) && child.type === type);
42}
\No newline at end of file