@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
22 lines • 872 B
JavaScript
import * as React from 'react';
import * as ReactDOM from 'react-dom';
/**
* This component wraps any ReactNode and finds its ref
* It has to be a class for findDOMNode to work
* Ideally, all components used as triggers/toggles are either:
* - class based components we can assign our own ref to
* - functional components that have forwardRef implemented
* However, there is no guarantee that is what will get passed in as trigger/toggle in the case of tooltips and popovers
*/
export class FindRefWrapper extends React.Component {
componentDidMount() {
// eslint-disable-next-line react/no-find-dom-node
const root = ReactDOM.findDOMNode(this);
this.props.onFoundRef(root);
}
render() {
return this.props.children || null;
}
}
FindRefWrapper.displayName = 'FindRefWrapper';
//# sourceMappingURL=FindRefWrapper.js.map