Giter Site home page Giter Site logo

Deep watch about react-galaxy HOT 3 OPEN

aleclarson avatar aleclarson commented on September 26, 2024
Deep watch

from react-galaxy.

Comments (3)

aleclarson avatar aleclarson commented on September 26, 2024

Deep watch is essential, I think. You can use it to intercept immer patches!

Proposal

  • The DeepWatcher class
    • extends Observable
    • has [__$willChange] method
    • adds itself to every nested observable it can find
    • has a dispose method
  • The deepWatch function
    • returns a DeepWatcher instance
    • is a no-op when its argument is none of the following:
      • an observable object
      • a plain object
import {deepWatch, watch, addObserver} from 'react-galaxy'

let watcher = deepWatch(observableState)

// Using the raw observer API
addObserver(watcher, (base, prop, newValue) => {
  // `base` is always the parent object
  // `prop` is always a string or number
  // `newValue` is the new property value
  let oldValue = base[prop]
  assert(oldValue !== newValue)
})

// Intercept patches for all nested objects
watch(watcher, (patch: Patch, base: any) => {
  console.log({ base, patch })
})

// To reclaim memory
watcher.dispose()

And of course, you can re-render components when any property in the state tree changes. 😂

from react-galaxy.

aleclarson avatar aleclarson commented on September 26, 2024

To discourage nesting of immutable objects in each other, we should add a deepTrack function and make track shallow. It's more explicit, too. Just like deepWatch!

edit: deepTrack will be released with v0.1.0

edit 2: But using deepTrack in selectors will be released with deepWatch

from react-galaxy.

aleclarson avatar aleclarson commented on September 26, 2024

Let deepTrack(object, string) be a deepWatch combined with a Slot instance.

from react-galaxy.

Related Issues (3)

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.