npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rn-stack-router

v1.0.0

Published

React Native Stack Navigation based on URIs

Downloads

1

Readme

React Native Stack Router

This is a simpler way to use Navigator with URI driven navigation facilitating simple transfer of data between Screens.

This component provides Navigation and 2 useful utilities to provide Stack Like navigation.

Quick start

Install:

npm install --save rn-stack-router

Add it you your application:

First let create a Screen


import React from 'react';

import {
    Text,
    Navigator
    Platform
} from 'react-native';

import { NavigationHelper, Screen } from 'rn-stack-router';

export default class MyFirstScreen extends Screen {
    constructor(props) {
        super(props);
    }

    static screenName() {
        return 'myscreen';
    }

    static routeName() {
        return '/myscreen';
    }

    static getDefaultProps() {
        return {
            defaultAnimation: Navigator.SceneConfigs.FadeAndroid,
            useCache: false,
            props: {
                id: 'something'
            }
        };
    }

    render() {
        return (
            <Text>Hello World</Text>
        );
    }
}

import React from 'react';
import {AppRegistry} from 'react-native';

import { 
    Router, 
    RouteNavigator, 
    NavigationHelper 
} from 'rn-stack-router';

import MyFirstScreen from './MyFirstScreen';

class MyApp extends React.Component {
	render() {
    return <RouteNavigator initialRouteStack={[{name: '/myscreen'}]}
                                           router={this.router}
                                              app={this} />;
  }

  get router() {
        var _router = NavigationHelper.getRouter();

        // Add Routes if empty
        if (!NavigationHelper.hasRoutes()) {
            this.addRoutes();
        }

        // Return the router
        return _router;
    }

  addRoutes() {
      var options = {};
      
      // Add our routes here
      NavigationHelper.addRoute(MyFirstScreen);
  }
}

AppRegistry.registerComponent('MyApp',  () => MyApp);

RouteNavigator

This extends reacts Navigator class.

  • app - Application reference to pass to all managed components.
  • Router - The composed router to use for route navigation.

Screen

When you define an screen there are some important steps to folow:

  1. Your Component must extend from Screen instead of React.Component
export default class MyScreen extends Screen {

}
  1. Define screenName static Method. This method will give the Screen a name
static screenName() {
    return 'myscreen';
}
  1. Define routeName static Method. This method will give the Screen the route-parser URI.
static routeName() {
    return '/myscreen';
}

Optional

You can define some options on the View using the getDefaultProps static method

static getDefaultProps() {
        return {
            defaultAnimation: Navigator.SceneConfigs.FadeAndroid,
            useCache: false,
            props: {
                id: 'something'
            }
        };
    }

How To Navigate

You can navigate using NavigationHelper

Methods:

  • NavigationHelper.push: push the view into the Stack
  • NavigationHelper.pop: Navigates back to the previous view on the Stack
  • NavigationHelper.replace: Replace the current View from the Stack

Nav Object Components:

  • name - The name or URI of the route
  • animation - The animation to use for the transition
  • props - Additional props to use for the controller
  • body - The body object to pass to the controller.

Examples:

// Go back to previous controller in route stack
NavigationHelper.pop();

// Navigate By URI
NavigationHelper.push('/myscreen/123');

// URI with Non Default Animation
NavigationHelper.push({ 
	name: '/myscreen/123',
	animation: Navigator.SceneConfigs.FadeAndroid,
	props: {
		isRed: true
	},
	body: {
		id: 'my_id'
	}
});

// Navigate By Name
NavigationHelper.push('page1');
NavigationHelper.push({ name: 'page1'});

Reading Navigation Query/Body

Important To receive body and query you must query them from componentDidMount

You can receive URI parameters via this.state.query and the body object via this.state.body.

Credits

This Navigation component is heavily inspired on react-native-route-navigator.