@wordpress/components
Version:
UI components for WordPress.
68 lines (62 loc) • 1.78 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { createElement } from "@wordpress/element";
/**
* External dependencies
*/
/**
* WordPress dependencies
*/
import { isValidElement } from '@wordpress/element';
/**
* Internal dependencies
*/
import { getValidChildren } from '../ui/utils/get-valid-children';
import { contextConnect, useContextSystem } from '../ui/context';
import { ZStackView, ZStackChildView } from './styles';
function UnconnectedZStack(props, forwardedRef) {
const {
children,
className,
isLayered = true,
isReversed = false,
offset = 0,
...otherProps
} = useContextSystem(props, 'ZStack');
const validChildren = getValidChildren(children);
const childrenLastIndex = validChildren.length - 1;
const clonedChildren = validChildren.map((child, index) => {
const zIndex = isReversed ? childrenLastIndex - index : index;
const offsetAmount = offset * index;
const key = isValidElement(child) ? child.key : index;
return createElement(ZStackChildView, {
isLayered: isLayered,
offsetAmount: offsetAmount,
zIndex: zIndex,
key: key
}, child);
});
return createElement(ZStackView, _extends({}, otherProps, {
className: className,
ref: forwardedRef
}), clonedChildren);
}
/**
* `ZStack` allows you to stack things along the Z-axis.
*
* ```jsx
* import { __experimentalZStack as ZStack } from '@wordpress/components';
*
* function Example() {
* return (
* <ZStack offset={ 20 } isLayered>
* <ExampleImage />
* <ExampleImage />
* <ExampleImage />
* </ZStack>
* );
* }
* ```
*/
export const ZStack = contextConnect(UnconnectedZStack, 'ZStack');
export default ZStack;
//# sourceMappingURL=component.js.map