Hooks to React.js rendering, to enable access to the virtual DOM (as shown in React devtools)
npm install react-render-hookreact-render-hook uses the React-devtools hook to watch for rendering React components,
and provide an interface to get to the virtual DOM tree and find rendered elements and get the metadata about them.
This is meant to be used from libraries that need access to the whole virtual DOM tree, such as testing/assertion libraries.
It is used from unexpected-react as a plugin for unexpected
to allow assertions over the DOM tree. This package is extracted as a separate package, to allow for other implementations for other assertion
libraries.
This package uses React-devtools as a git submodule, such that it can keep up-to-date with it. However,
only a small part of the devtools is actually used (specifically, the backend directory), so it is not anticipated that there will be many updates to this.
react-render-hook must be included before react is included.isAttached property.This is set to true when React attaches to the devtools. This should happen immediately after react is required.
e.g.
``js
var RenderHook = require('react-render-hook');
assert(RenderHook.isAttached === false);
var React = require('react');
assert(RenderHook.isAttached === true);
`
As react is often required as part of components etc, it is recommended to check this property
before calling the other APIs, such that a useful error message can be given to the user.
Returns the devtools representation of the component. component is the value returned from React.render(), or anyref
valid instance from the children (e.g. s, etc.).
The devtools representation currently has the following properties (this is currently more-or-less worked out via guess work,element
improvements / links to better documentation greatly appreciated)
* - the element instancedata
* - metadata about the instance. Contains the following important propertiesnodeType
** - the type of node, either 'Native', 'Text' or 'Composite' ('NativeWrapper' exists too, but that is skipped over and'Native'
the child is returned)type
** - the type of the element. This corresponds to the React.createClass or class that extends React.Component thatname
created the element, or is a string value of the native node.
** - tag name of the nodeprops
** - props passed to the render method
Returns an array of the devtools representation of the component's rendered children. Note that this is not the children passed in to thechildren
render method as the prop, rather the result of the render method of the given component. The component parameter can be either aReact.render()
component instance (like that returned from ) or an devtools representation of the element, such as that returned from thefindComponent method.
react-render-hook maintains an index of mounted components. In a testing scenario, it may be helpful to occassionally clear this index out, as there can bereact-render-hook` to know that the test is completed and the data can be thrown away. Memory will continue to be used whenever React renders a
no way for
component.
Contributions are very welcome. This project was made without really any knowledge of the devtools internals, so it is not unlikely that some
things are sub-optimal, not best practice, or just plain wrong. The tests show that the rendered content is caught and located by the API.
MIT.