Code Monkey home page Code Monkey logo

react-entry-loader's Introduction

react-entry-loader

Use webpack entry modules as templates for generating HTML assets.

Installation

npm install --save-dev react-entry-loader

Usage

You need to include a single ReactEntryLoaderPlugin in your webpack config to handle the HTML asset generation.

The loader itself can be used like any other loader in webpack. There is a little helper function for defining entry modules, which makes it a bit more readable than using plain strings with query params. All options that is are not a loader option are interpreted as template props. They will be forwarded to the template during compile time.

webpack.config.babel.js:

import ReactEntryLoaderPlugin from 'react-entry-loader/plugin';
import reactEntry from 'react-entry-loader/entry';

export default ()=> ({
  entry: {
    page1: reactEntry({output: 'page1.html', title: 'test'})('./src/page1.js'),
    page2: 'react-entry-loader?output=page2.html!./src/page2.js'
  },
  plugins: {
    new ReactEntryLoaderPlugin()
  }
});

The loader expects a JS module that has a React component as the default export. This component is a mix of template and entry module code.

./examples/page1.js:

import React from 'react';

import {render} from 'react-entry-loader/render';
import {Module, Styles, Scripts} from 'react-entry-loader/injectors';

import App from './app';
import theme from './page1.css';


const Html = ({scripts, styles, title})=> (
  <html>
    <head>
      <title>{title}</title>
      <Styles files={styles} />
      <Scripts files={scripts} async />
    </head>
    <body>
      <div id="page1-app" className={theme.root}>
        <Module onLoad={render('page1-app')}>
          <App theme={theme} />
        </Module>
      </div>
    </body>
  </html>
);

export default Html;

The child components of <Module onLoad={...}> and any code that they depend on is treated as the webpack entry module code, as is the code being called in onLoad={some-render-or-init-function}.

The entry module code will be extracted along with the some-render-or-init-function. The latter should be a function with the interface render(...children) that renders the children into the DOM at run-time. You can use react-entry-loader/render's render(elementId) or hydrate(elementId) render function factories for this or write your own.

Extracted Entry Module:

import React from 'react';
import {render} from 'react-entry-loader/render';
import App from './app';
import theme from './page1.css';
render('page1-app')(<App theme={theme} />);

The template code is everything left over after the child components and some-render-or-init-function code has been removed.

Extracted Template:

import React from 'react';
import {Module, Styles, Scripts} from 'react-entry-loader/injectors';
import theme from './page1.css';

const Html = ({scripts, styles, title})=> (
  <html>
    <head>
      <title>{title}</title>
      <Styles files={styles} />
      <Scripts files={scripts} async />
    </head>
    <body>
      <div id="page1-app" className={theme.root}>
        <Module />
      </div>
    </body>
  </html>
);
export default Html;

Note when using <Module hydratable ... /> the child components and their dependencies will be left in place for compile time rendering.

The loader will return the entry module code to webpack and will send the extracted template code to the ReactEntryLoaderPlugin.

The plugin will render every entry module's template at the end of the webpack compilation process to generate HTML assets.

The final chunks that an entry module depends on will be passed as scripts and styles props to the template components. These can then be passed to the <Scripts> and <Styles> components that come with the injectors module to reference the files in generated HTML.

Running the Examples

npm ci
npx run

This starts a webserver and you can see the running app at http://localhost:8080/page1.html

react-entry-loader's People

Contributors

kollhof avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.