React Router Path Extractor Webpack Plugin
Introduction
This plugin is designed to work with StaticSiteGeneratorWebpackPlugin and SitemapPlugin. It has no standalone functionality other than to precompile a React Router routes file and pass the discovered paths
into a callback function.
The callback function expects a return value consisting of an array of webpack plugins to be applied to your compiler once the paths have been resolved.
How it works
It adds a make
plugin to separately compile your routes file using the loaders
specified in your config.
Once compiled it executes the code in a vm
and runs ReactRouter.createRoutes
on the module.exports.routes
named export. Finally it executes the callback function, passing the flattened paths into it.
The compiler respects your loaders and is indifferent to how you build your routes. i.e. you can use a combination of <Route>
and PlainRoute
to describe your routes.
Signature
routesFile: String|routesFile: String options?: routesFile?: String Array<InstanceOfPlugin>
Usage
Have a look at test suite for a complete example.
webpack.config.js
var webpack = var ReactRouterPathExtractorWebpackPlugin = var StaticSiteGeneratorWebpackPlugin = var SitemapWebpackPlugin = moduleexports =
routes.js
// Important: Your routes must be a named export called "routes":// es5: module.exports.routes = ...const routes = <Route path='/' component=App> <IndexRoute component=Home title='Home' /> <Route path='about'> <IndexRoute component=About title='About' /> <Route path='contact' component=Contact title='Contact' /> </Route> // Exclude paths by adding the staticExclude prop: <Route path='exclude_this_path' staticExclude> // Child routes will included unless staticExclude is specified. <Route path='but_not_this_one' /> </Route> // This catch-all will resolve to /error/index.html // staticName will default to '404', i.e. /404/index.html <Route path='*' component=NotFound staticName='error' /> </Route> // You can always export the routes as default too for use elsewhere.
Dynamic Routing
Dynamic Routing may be possible using a hashHistory Router within a Route component or by adding a catch-all and a bit nginx config. Example coming soon.
Report an Issue
- Bugs
- Contact the author: hello@mbaasy.com
MIT License
Copyright (c) 2016 Mbaasy, Inc
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.