nitin42 / Making-a-custom-React-renderer
- четверг, 28 сентября 2017 г. в 03:15:24
Tutorial on how to make a custom React renderer
Let's make a custom React renderer
😎
This is a small tutorial on how to build your custom React renderer and render the components to the host environment you need. The tutorial is divided into four parts -
Part 1 - Creating a React reconciler (current targeted version React 16.0.0-alpha.4).
Part 2 - Creating a public interface to the reconciler i.e "Renderer".
Part 3 - Parsing the input component (call the render() method on our main document).
Part 4 - Creating a render method to flush everything to the host environment we need.
In part one, we will create a React reconciler for the current targeted version of React 16.0.0-alpha.4. We will implement the renderer using Fiber as it has a first-class renderer API for creating custom renderer.
In part two, we will create a public interface to the reconciler i.e a renderer. We will create a custom method for createElement
and will also architect the component API for our example.
In part three, we will build a function that will parse the input component and will return the output (rendered children and props).
In part four, we will create a render method which will render our input component.
We will create a custom renderer that will render a React component to a word document. I've already made one. Full source code and the documentation for that is available here.
We will use officegen for this. I'll explain some of it's basic concepts here.
Officegen can generate Open Office XML files for Microsoft Office 2007 and later. It generates a output stream and not a file. It is independent of any output tool.
Creating a document object
let doc = officegen('docx', { __someOptions__ });
Generating output stream
let output = fs.createWriteStream (__filePath__);
doc.generate(output);
Events
finalize
- It is fired after a stream has been generated successfully.
error
- Fired when there are any errors
git clone https://github.com/nitin42/Making-a-custom-React-renderer
cd Making-a-custom-React-renderer
yarn install
yarn example
After you run yarn example
, a docx file will be generated in the demo folder.
Suggestions to improve the tutorial are welcome
If you've completed the tutorial successfully, you can either watch/star this repo or follow me on twitter for more updates.