(props)
| 55 | |
| 56 | class PopperContent extends React.Component { |
| 57 | constructor(props) { |
| 58 | super(props); |
| 59 | |
| 60 | this.setTargetNode = this.setTargetNode.bind(this); |
| 61 | this.getTargetNode = this.getTargetNode.bind(this); |
| 62 | this.getRef = this.getRef.bind(this); |
| 63 | this.onClosed = this.onClosed.bind(this); |
| 64 | this.state = { isOpen: props.isOpen }; |
| 65 | } |
| 66 | |
| 67 | static getDerivedStateFromProps(props, state) { |
| 68 | if (props.isOpen && !state.isOpen) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…