Socket
Socket
Sign inDemoInstall

react-redirect

Package Overview
Dependencies
9
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-redirect

A declarative, nested, stateful window.location for React


Version published
Weekly downloads
166
increased by9.93%
Maintainers
1
Install size
1.51 MB
Created
Weekly downloads
 

Readme

Source

React Document Title

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.

Keywords

FAQs

Last updated on 13 Jul 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc