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

@besync/react-use-graphstore-channel

v1.0.8

Published

## About

Downloads

6

Readme

React GraphStore Channel Hook

About

This is a light-weight React Hook for for sharing observable state Between Parent and Child Iframe, Worker, etc.

It solves the issues associated with passing objects, events and function calls between parent and child, especially in Cross Domain situations. This allows expensive work and/or security-sensitive work to be offloaded to sandboxed child iframes.

Optionally includes a zero-configuration, batteries included, runner for Webpack that adds decorator syntax to Babel.

Features

  • Written for modern (2019+) React
  • Designed to complemnent @besync/react-use-iframe
  • Secure, two way communication between host and child
  • Works for both same domain and cross domain situations
  • includes definitions for memory store
  • roadmap: definitions for Firebase realtime database and Firestore
  • Typescript definitions included
  • No component classes or separate state manager required, pure React Hooks that can be used in function components

Requirements

React 16.7 or later

installation

$ npm install @besync/react-use-graphstore-channel
import { useMemoryChannel } from ' @besync/react-use-graphstore-channel'
import { useChildMemoryChannel } from '@besync/react-use-graphstore-channel'

Usage: IFrame Container Example

import { useOnce, Observer } from '@besync/react-use-graphstore-channel'
import { useMemoryChannel } from '@besync/react-use-graphstore-channel'
import { useFrame } from '@besync/react-use-iframe'

const { initialState, stores } from '...'  // your model

const App = props => {

  const iframe = useFrame({ src: './frame.html' }, useMemoryChannel(initialState))
  const post = useOnce(() => stores.PostStore.getbyId('1'))

  return (
    <Observer>
      {() => (
        <div>
          HELLO {post.title}
          {iframe}
          <button onClick={() => { post.title = 'UPDATED' }} />
        </div>
      )}
    </Observer>
  )
}

Usage: IFrame child of above container

import { useOnce, Observer } from '@besync/react-use-graphstore-channel'
import { useChildMemoryChannel } from '@besync/react-use-graphstore-channel'
import { useChildFrame } from '@besync/react-use-iframe'

const { stores } from '...'  // your model
const initialState = { posts: { 1: { title: 'loading' } } }

const App = props => {

   const framehelper = useChildFrame(useChildMemoryChannel(initialState))
   const post = useOnce(() => stores.PostStore.getbyId('1'))

  return (
    <Observer>
      {() => (
        <div>
          IFRAME START
          <p>{post.title}</p>
          <button onClick={() => { post.title = 'UPDATEDFRAME' }} />
          <h2>{post.title}</h2>
          IFRAME END
          {framehelper}
        </div>
      )}
    </Observer>
  )
}

Webpack Build

You need to make sure there are two separate entry points in Webpack (one for the main javascript, one for the iFrame specific javascript) and two separate HTML files created by the HTML Plugin.

The simplest way to do this is with @breun/scripts:

@berun configuration

// config/berun.config.js
module.exports = {
  use: [
    '@berun/preset-react',
    '@berun/runner-eslint',
    require('@besync/react-use-iframe/berun'),
    require('@besync/react-use-graphstore-channel/berun')
  ]
}

package.json

{
  "scripts": {
    "start": "berun-scripts start",
    "build": "berun-scripts build",
    "format": "berun-scripts lint",
    "test": "berun-scripts test --env=jsdom",
    "eject": "berun-scripts eject"
  },
  "dependencies": {
    "react": "next",
    "react-dom": "next",
    "@besync/react-use-graphstore": "..."
  },
  "devDependencies": {
    "@berun/scripts": "...",
    "@berun/preset-react": "...",
    "@berun/runner-eslint": "..."
  },
  "resolutions": {
    "babel-core": "^7.0.0-bridge.0"
  }
}

Prior Art

  • @besync/graphstore - Used to provide the observable store in both parent and worker childs; query the store using a simple Document/Collection based interface, then get and set properties on the underlying result with auto-refresh whenever the underlying store changes (locally, in child worker, or remotely)
  • @evecalm/message-hub - Used for the two way RPC between parent and child, although any similar API-compatible channel can be used instead
  • @bestyled/berun - Used to provide a zero configuration, batteries included, Webpack build, similar to create-react-app
  • react-use - Used as inspiration for the React Hooks introduced in React 16.7; not used as a dependency
  • useState, useRef, and useEffects introduced in React 16.7

License

Apache 2.0