@wordpress/components
Version:
UI components for WordPress.
105 lines (89 loc) • 2.46 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { createElement, Fragment } from "@wordpress/element";
/**
* External dependencies
*/
import { isFunction, isString, map, negate } from 'lodash';
/**
* WordPress dependencies
*/
import { Children, Component, cloneElement, isEmptyElement } from '@wordpress/element';
/**
* Internal dependencies
*/
import SlotFillContext from './context';
class SlotComponent extends Component {
constructor() {
super(...arguments);
this.isUnmounted = false;
this.bindNode = this.bindNode.bind(this);
}
componentDidMount() {
const {
registerSlot
} = this.props;
registerSlot(this.props.name, this);
}
componentWillUnmount() {
const {
unregisterSlot
} = this.props;
this.isUnmounted = true;
unregisterSlot(this.props.name, this);
}
componentDidUpdate(prevProps) {
const {
name,
unregisterSlot,
registerSlot
} = this.props;
if (prevProps.name !== name) {
unregisterSlot(prevProps.name);
registerSlot(name, this);
}
}
bindNode(node) {
this.node = node;
}
forceUpdate() {
if (this.isUnmounted) {
return;
}
super.forceUpdate();
}
render() {
const {
children,
name,
fillProps = {},
getFills
} = this.props;
const fills = map(getFills(name, this), fill => {
const fillChildren = isFunction(fill.children) ? fill.children(fillProps) : fill.children;
return Children.map(fillChildren, (child, childIndex) => {
if (!child || isString(child)) {
return child;
}
const childKey = child.key || childIndex;
return cloneElement(child, {
key: childKey
});
});
}).filter( // In some cases fills are rendered only when some conditions apply.
// This ensures that we only use non-empty fills when rendering, i.e.,
// it allows us to render wrappers only when the fills are actually present.
negate(isEmptyElement));
return createElement(Fragment, null, isFunction(children) ? children(fills) : fills);
}
}
const Slot = props => createElement(SlotFillContext.Consumer, null, ({
registerSlot,
unregisterSlot,
getFills
}) => createElement(SlotComponent, _extends({}, props, {
registerSlot: registerSlot,
unregisterSlot: unregisterSlot,
getFills: getFills
})));
export default Slot;
//# sourceMappingURL=slot.js.map