Coder Social home page Coder Social logo

pygabo / react-redirect Goto Github PK

View Code? Open in Web Editor NEW

This project forked from driftt/react-redirect

0.0 2.0 0.0 6 KB

a declarative and universal way to specify window.location in a single-page React apps

License: MIT License

JavaScript 100.00%

react-redirect's Introduction

This Project Is Deprecated

react-redirect is no longer used internally at Drift or maintained by us. We recommend using react-side-effect or window.location directly.


React Redirect

Provides a declarative way to specify window.location in a single-page app. This component can be used on server side as well.

Built with React Side Effect.

Installation

npm install --save react-redirect

Dependencies: React >= 0.11.0

Features

  • 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;
  • Works just as well with isomorphic apps.

Example

Assuming you use something like react-router:

var App = React.createClass({
  render: function () {
    // Redirect to "www.driftt.com" if no child overrides this
    return (
      <ReactRedirect location='www.driftt.com'>
        <this.props.activeRouteHandler />
      </ReactRedirect>
    );
  }
});

var HomePageRedirect = React.createClass({
  render: function () {
    // redirect to "www.driftt.com" while this component is mounted
    return (
      <ReactRedirect location='www.driftt.com'>
      </ReactRedirect>
    );
  }
});

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

  render: function () {
    // Redirect using value from state when this component is mounted
    return (
      <ReactRedirect location={this.state.redirect || ''}>
        <div>
          Redirecting...
        </div>
      </ReactRedirect>
    );
  }
});

Server Usage

If you use it on server, call ReactRedirect.rewind() after rendering components to string to retrieve the redirect location given to the innermost ReactRedirect. You can then embed this title into HTML page template.

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 assuming you use express for your server

var middleWare = function(req, res) {
  var html = React.renderToString(React.createElement(component));
  var redirect = ReactRedirect.rewind();
  if (redirect) {
    res.redirect(302, redirect);
  } else {
    res.end(html);
  }
}

react-redirect's People

Contributors

goldensunliu avatar ali avatar

Watchers

James Cloos avatar Jose Guzman 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.