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

react-native-portal

v1.3.0

Published

Translocate your render destination, using mitt. Built with react@16 and react-native in mind.

Downloads

3,940

Readme

react-native-portal

npm version Build Status

Translocate your render destination. Using mitt. Built with react@16 and react-native in mind, but these are not strictly required, as long as React.PureComponent is available.

The code itself is very minimal and only rely on react's context, and written in ES6.

Feel free to file an issue/PR if you have a better way to publish this component.

Live demo on web

  • Although I built this module for react-native, it works just as great on web.
  • https://codepen.io/zenyr/pen/xLrKPZ

Aim of this project

  • Minimalistic API
  • Minimal dependancy
  • Use official react API only

Known issues

  • Try not to put falsy 0 or '' through. ( ͡° ͜ʖ ͡°)
  • A behavior of BlackPortals having the exact same name is undefined, yet.
    • Ideas appreciated
  • Uncanny resemblance with cloudflare/react-gateway
    • This one is smaller though
  • Has react-native in its name but works on anywhere including browser DOM.
  • (webpack only) needs proper babel configuration (see ES6 usage and ES5 usage below)

Install

  1. install npm module
npm i react-native-portal -P
or
yarn add react-native-portal --prod

Make sure to put -P or --prod to ignore useless packages for consuming this module.
It should automatically install mitt, only if necessary.

  1. Wrap your root component with PortalProvider.
    As it requires a single child it is reasonable to wrap it in your entry file.
import {PortalProvider} from 'react-native-portal'
...
render(<PortalProvider><YourApp /></PortalProvider>, document.querySelector('#app'))
  1. Put your WhitePortal and BlackPortal as you wish, matching their name props.
  2. Enjoy your inner peace 🙏

ES5 usage

You can access this module on react-dom + legacy browser environment via unpkg.
Good enough for quick prototyping and goofying around.

https://unpkg.com/react-native-portal/dist/es5.js
https://unpkg.com/react-native-portal/dist/min.js
  (expects React global, prop-types & mitt bundled)

However I do not recommend this on production 😂

ES6 usage (outside of react-native)

Only refer this if you are going to use this module on browsers or a modified environment.

Since 1.1.1 I've included dist/noflow.js in the npm repo. It sticks to the pure es6 spec (as of es2015) so you won't need to strip away class properties and flow comments.

import {PortalProvider} from 'react-native-portal/dist/noflow';

(I'd better improve those filenames. I'll do a major semver update in that case!)

  module: {
    rules: [
      ...
      {
        test: /\.js$/,
        exclude: {
          and: [
            /(node_modules|bower_components)/, // << Note 1
            { not: [/(react-native-portal)/] }, // << Note 2
          ],
        },
        use: {
          loader: 'babel-loader',
          options: {
            presets: [
              ...        
            ],
            plugins: [
              ...,
              ['transform-class-properties', { spec: false }], // <<< Note 3. `spec` is optional
              ['transform-flow-strip-types'], // <<< Note 4. Only if you are NOT using flow
            ],
          },
        },
      },
    },
    ...
  }

Above snippet from webpack.config.js has 3 lines that you may have to set up properly with babel-loader.

  1. It is advised to excluded all .js files in node_modules from babel for performance reasons.
  2. However, it will also exclude react-native-portal from transpiling properly. To prevent that, we can use boolean condition to exclude option as noted.
  3. if you are not using stage-N or proper env preset you may have to add transform-class-properties plugin.
  4. if you are not using flow you must add transform-flow-strip-types plugin.

Components

PortalProvider = context provider, required

Match BlackPortal and WhitePortal by their name. Wrap your app with this component, presumably in App.js or index.js

<PortalProvider>
  <YourAppRoot />
</PortalProvider>

BlackPortal = Put things in here

Sends its child until WhitePortal renders, and always render null in its place. Once unmounted, it will wipe its children to null.

props

  • name : string
  • children : ReactElement<*> | null
<BlackPortal name="wow">
  <MyButton onPress={this.whatever} title="I'm going to space"/>
</BlackPortal>

<BlackPortal name={`greet-${user.id}`}>
  <Skeletal>Hello, {user.name}!</Skeletal>
</BlackPortal>

If there are no matching exit(WhitePortal), PortalProvider will simply hold it until requested.

WhitePortal = Things will pop out of here

Renders anything sent from BlackPortal. Renders its given child as a fallback.

props

  • name : string
  • children : ?ReactElement<*> - a default child. default: null
  • childrenProps : ?object - inject props if provided
<WhitePortal name="wow">
  <Text>I only render when there is nothing(falsy) to render from my name</Text>
</WhitePortal>

<WhitePortal name={`greet-${user.id}`} childrenProps={{doot:'thank'}} />
==> renders <Skeletal doot="thank">…</Skeletal>