Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

navigator-redux

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

navigator-redux

Navigator for React-Native, driven by redux

  • 0.3.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

What is this?

Few days ago I started this project as a spin-off from navigator-rfc. This repo is an implementation of the super-simple navigator behavior (without animated transitions! Please, keep it in mind).

Motivation

To make a proof of concept for react-native navigator (based on navigator-rfc), driven by redux.

Getting started

First of all, check an example I've made. In index.ios.js you'll find the most important parts.

Installation

As usual:

$ npm i navigator-redux --save

Then include it in your code:

import {NavigatorRedux, makeNavState, navigationReducer} from 'navigator-redux';

And finally, use it to make your navigation to work:

const store = createStore(
  navigationReducer,
  makeNavState([{title:'Initial Route', component: YourComponent}])
);

AppRegistry.registerComponent('Basic', () => () => (
  <Provider store={store}>
    <NavigatorRedux />
  </Provider>
));

API

Each view in the stack, while rendered, will receive a nav property with index, stack and actions.

  • index {Number}. Used to track your navigation stack position
  • stack {Immutable.Stack}. Your navigation stack
  • actions {Object}: {title: 'Route Title', component: Component, [passProps: {text: 'Props'}]} passProps is optional
    • push(Object). Push a new route to navigation state
    • pop(). Jump back to the previous navigation state
    • replace(Object). Replace a current navigation route by a given one

For further reading, check an example.

Status

  • Simple navigation
  • Animated transitions

FAQs

Package last updated on 02 Mar 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc