Giter Club home page Giter Club logo

use-side-effect's Introduction

react-global-effect

A helmet-like document-scope effect hooks manager for React

use-side-effect's People

Contributors

cometkim avatar

Watchers

James Cloos avatar  avatar  avatar

use-side-effect's Issues

WIP: Idea note

Wraps useEffect or custom effect as a component and manage it globally.

import { useEffect } from 'react'
import useCustomEffect from 'custom-effect'

import { wrapEffect } from 'use-side-effect'

interface Props0 {
  prop0?: string
  prop1?: string
}

interface Props1 {
  prop0: string
  prop1?: string // has default value
}

const GlobalEffect0 = wrapEffect<Props0>({
  hook: useEffect,
  mapPropsToHook: ({ prop0 = 'default value', prop1 = 'default value' }) => () => {
    // ...implement here
  },
})

const GlobalEffect1 = wrapEffect<Props1>({
  hook: useCustomEffect,
})

GlobalEffect1.defaultProps = {
  // ...
}

const App: React.SFC = () => (
  <Parent>
    <GlobalEffect0 />
    <Child>
      <GlobalEffect0 prop1='override value'/>
      <GlobalEffect1 prop0='b'/>
    </Child>
  </Parent>
)

Expected result:

useEffect(() => {
  // ...implementation here
}, [/* prop0 */ 'default value', /* prop1 */ 'override value'])

and

useCustomEffect(prop0, prop1)

Are called once, globally.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.