GithubHelp home page GithubHelp logo

exomnius / react-nested-status Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ambroos/react-nested-status

0.0 2.0 0.0 121 KB

Declarative, nested, stateful, isomorphic document.title for React

License: MIT License

JavaScript 100.00%

react-nested-status's Introduction

React Nested Status

A server-side utility component that passes status codes. Useful to set HTTP status codes based on which components are being rendered.

Built with React Side Effect.

Based (heavily) on React Document Title.

====================

Installation

npm install --save react-nested-status

Dependencies: React >= 0.11.0

Features

  • Made for isomorphic apps. Really doesn't have a use without server-side React.
  • Does not emit DOM, not even a <noscript>;
  • Like a normal React compoment, can use its parent's props and state;
  • Can be defined in many places throughout the application;
  • Supports arbitrary levels of nesting, so you can define app-wide and page-specific titles;

Example

Assuming you use something like react-router:

var App = React.createClass({
  render: function () {
    // Use "My Web App" if no child overrides this
    return (
      <NestedStatus code={200}>
        <this.props.activeRouteHandler />
      </NestedStatus>
    );
  }
});

var HomePage = React.createClass({
  render: function () {
    // Use "Home" while this component is mounted
    return (
      <NestedStatus code={200}>
        <h1>Home, sweet home.</h1>
      </NestedStatus>
    );
  }
});

var ErrorPage = React.createClass({
  mixins: [LinkStateMixin],

  render: function () {
    // Update using value from state while this component is mounted
    return (
      <NestedStatus code={404}>
        <div>
          <h1>Four-oh-four</h1>
          <p>Page not found.</p>
        </div>
      </NestedStatus>
    );
  }
});

Server Usage

Call NestedStatus.rewind() after rendering components to string to retrieve the status code given to the innermost NestedStatus. You can then use this to set your Express (or other web server) status code.

Because this component keeps track of mounted instances, you have to make sure to call rewind on server, or you'll get a memory leak.

Example

var markup = React.renderToString(React.createFactory(Handler)());
var status = NestedStatus.rewind();
var html = React.renderToStaticMarkup(htmlComponent({
    markup: markup
}));

// Express
res.status(status).send('<!DOCTYPE html>' + html);

Thank you

A huge thanks to gaearon for his open-source React Document Title that was easy to understand and modify.

react-nested-status's People

Contributors

gaearon avatar natew avatar pluma avatar

Watchers

 avatar  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.