Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fluids

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluids

Glue layer for reactivity

  • 0.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
17K
increased by4.33%
Maintainers
1
Weekly downloads
 
Created
Source

fluids

This library is a tiny glue layer for observable events.

  • Create a tree of observable values
  • Let parent nodes send arbitrary events to children (for maximum flexibility)
  • Stay small yet provide helpers for easier integration

API

  • hasFluidValue(target: any): boolean

    Returns true if the given value is a fluid object.

  • getFluidValue(target: any): any

    Returns the current value of the fluid object (if possible), otherwise the argument is passed through as-is.

  • getFluidConfig(target: any): FluidConfig

    Returns the FluidConfig object that allows for observing the argument

  • setFluidConfig(target: object, config: FluidConfig): void

    Defines the hidden property that holds the FluidConfig object. Newer calls override older calls.

  • addFluidObserver(target: object, observer: FluidObserver): () => void

    Attach an observer to a fluid object, and get an unsubscribe function back. Returns undefined if the first argument is not a fluid object.

Types

  • class FluidValue<T, EventType> implements FluidConfig<T, EventType>

    The FluidValue class is convenient for automatic TypeScript compatibility with other libraries using fluids. The constructor sets each instance as its own FluidConfig (eg: setFluidConfig(this, this)), so you need to implement the onParentChange(event) method in your subclass. Remember, you're not required to use FluidValue at all. The setFluidConfig function is enough if you don't want TypeScript interop OOTB.

  • interface FluidConfig<T, EventType>

    The FluidConfig interface has three methods: get, addChild, and removeChild. These methods act as a compatibility layer between libraries and their custom event-based solutions.

  • interface FluidObserver<EventType>

    The FluidObserver interface has one method, onParentChange(event), which is called by observed FluidConfig objects whenever a new event occurs (like a "change" event).

  • interface FluidEvent<T>

    The basic shape that every FluidConfig event must adhere to.

  • interface ChangeEvent<T>

    The basic shape that every "change" event must adhere to.

FluidConfig example

This example adds observability to a ref object (like in React: { value }).

Any object can conform to the FluidConfig interface without needing to change its public API.

import { setFluidConfig, FluidObserver, FluidEvent } from 'fluids'

/** Create a `{ value }` object that can be observed */
function createRef(value) {
  const ref = {}

  // Observer tracking
  const children = new Set<FluidObserver>()
  const emit = (event: FluidEvent) =>
    children.forEach(child => child.onParentChange(event))

  // Change tracking
  const get = () => value
  Object.defineProperty(ref, 'value', {
    enumerable: true,
    get,
    set: newValue => {
      if (value !== newValue) {
        value = newValue
        emit({
          type: 'change',
          parent: ref,
          value,
        })
      }
    }
  })

  // Observer API
  setFluidConfig(ref, {
    get,
    addChild: child => children.add(child),
    removeChild: child => children.delete(child),
  })

  return ref
}

FluidObserver example

This example shows how to observe a fluid object.

import { addFluidObserver } from 'fluids'

const ref = createRef(0)
const stop = addFluidObserver(ref, {
  onParentChange(event) {
    if (event.type === 'change') {
      console.log(event.value, event.parent)
    }
  }
})

ref.value++
stop()
ref.value++

Keywords

FAQs

Package last updated on 10 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc