0.6.1 • Published 8 years ago
static-react-render-webpack-plugin v0.6.1
static-react-render-webpack-plugin
Render static sites with React and Webpack.
Installation
npm install --save-dev static-react-render-webpack-pluginUsage
webpack.config.js
const path = require('path');
const StaticReactRenderWebpackPlugin = require('static-react-render-webpack-plugin');
module.exports = {
context: path.join(__dirname, 'src'),
entry: {
layout: './src/layout/index.jsx',
productList: './src/pages/product-list/index.jsx',
productPage: './src/pages/product-page/index.jsx'
},
output: {
path: path.join(__dirname, 'dest'),
publicPath: '/',
libraryTarget: 'commonjs' /* required so the plugin can evaluate your components */
},
target: 'node', /* required so the plugin can evaluate your components on node */
/* ...configure loaders, resolvers, etc... */
plugins: [
new StaticReactRenderWebpackPlugin({
layout: 'layout',
pages: [
'productList',
'productPage'
]
})
]
};./src/fetchProducts.js
import fetch from 'node-fetch';
export default () => fetch('http://example.com/products.json')
.then(response => response.json())
;./src/layout/index.jsx - wraps pages with a common header and footer
export default ({children}) => (
<html>
<head></head>
<body>{children}</body>
</html>
);./src/pages/product-list/index.jsx - creates a single HTML file listing all products
import fetchProducts from '../../fetchProducts';
export default class ProductList extends React.Component {
static getPath = ({product}) => `products/${product.slug}/index.html`;
static getProps = () => fetchProducts()
.then(products => ({products}))
;
render() {
const {products} = this.props;
return (
<div>
<h1>Products</h1>
<ul>
{products.map(product => (
<li>
<a href={`products/${product.slug}/`}>{product.name}</a>
</li>
))}
</ul>
</div>
);
}
}./src/pages/product-page/index.jsx - creates multiple HTML files describing each individual product
import fetchProducts from '../../fetchProducts';
export default class ProductPage extends React.Component {
static getPath = ({product}) => `products/${product.slug}/index.html`;
static getProps = () => fetchProducts()
.then(products => products.map(product => ({product})))
;
render() {
const {product} = this.props;
return (
<div>
<h1>{product.name}</h1>
<h2>{product.price}</h2>
</div>
);
}
}Options
layout
The name of the layout chunk.
Required. A
string.
pages
The names of the page chunks.
Required. An
arrayofstrings.
getLayoutProps
A function modifying the props passed to the layout component.
Optional. A
function(props, context) : objectwhere:
propsis anobjectcontextis anobjectcontaining:
pageChunklayoutChunkcompilation
getPageProps
A function modifying the props passed to the page component.
Optional. A
function(props, context) : objectwhere:
propsis anobjectcontextis anobjectcontaining:
pageChunklayoutChunkcompilation
Change log
0.6.1
- fix: bug where
modifiedPropsweren't being passed through to an array of pages
0.6.0
- add: Support
__dirnameand__filename.
0.5.0
- add: Passing the page props to the layout component (e.g. so in the layout you can render them as JSON and resume rendering
with them on the client). If you are passing a prop named
propsto the layout you won't be able to access the page props.
0.4.0
- add: automatically add the HTML doctype to HTML documents beginning with
<html
0.3.3
- fix: support non-transpiled modules
0.3.2
- fix: doco
0.3.1
- fix: remove unnecessary log
- fix: report errors
0.3.0
- break: moved
.getPath()and.getProps()to the component