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

solid-model

v2.3.1

Published

Automatic view model for solid-js

Downloads

67

Readme

solid-model

Automatic view model for solid-js

Objective

This package aims to provide reactive objects, is similiar to createMutable() but with a few differences

  • Seamless: It works with classes and, hopefully, any kind of JavaScript object in a completely transparent way
  • Customizable: Greater control over the interactions with the proxy
  • Scoped: It doesn't automatically apply reactivity to children of reactive objects

Standard ProxyHandlers

The module provides a set of ProxyHandlers out-of-the-box that can be used to customize the reactive behaviours of objects. These handlers are available through inheritable classes, since the default ones haven't got any instance field you can use their prototype directly. Any instance field defined on handlers will be defined on their proxy, especially private fields. Each handler also provides static methods for introspection, these works on both the raw object and its reactive proxy. You should use the static methods provided by the handler you're actually using since they could be overridden adding more specific behaviours. For example:

import { MemoHandler } from "solid-model";

const raw = { /* ... */ };
const reactive = MemoHandler.create(raw);

BaseHandler

  • is() (static): Tells whether the provided object is reactive
  • getProxy() (static): Gets the proxy of a reactive object
  • setProxy() (static): Sets the proxy of a reactive object
  • getRaw() (static): Gets the raw version of a reactive object
  • create() (static): Creates a proxy for an object using the current handler
  • detach() (static): Detaches the proxy from its target

ReactiveHandler

Handler that makes an Atom under the hood for each field of its target

  • getStore() (static): Gets the object (Of type Store) that contains the Atoms for each reactive property

It also provides a few custom overridable traps

  • createAtom(): Method that's responsible for creating the Atom for each property which hasn't got neither a getter nor a setter
  • getComparator(): Method that creates a comparison function for the Signal of each new Atom created by the current handler
  • getPropertyTag(): Method that generates a recognizable name for the Signal of each Atom to help debugging

DisposableHandler

Handler that provides a general-purpose DisposableOwner

  • getOwner() (static): Gets the DisposableOwner that handles the reactive resources of the current object
  • createOwner(): Method that's responsible for creating the DisposableOwner for each object that uses DisposableHandler

MemoHandler

Handler that inherits the behaviours of ReactiveHandler and memoizes every getter of its target

  • createMemo(): Method that's responsible for creating the ReadOnlyAtom for each getter property

Utility

The module also exposes some of its internal utilities

  • nameOf(): Utility function that powers Atom.prop()

Store

The type of the output of ReactiveHandler.getStore()

DisposableOwner

Explicitly disposable version of a "solid-js" Owner

ReadOnlyAtom

Represents a POSSIBLY read-only reactive state

  • trySet(): Allows you to try to set the value of a ReadOnlyAtom in the hope that it's actually a normal Atom
  • update(): Like the Setter overload of a Signal that takes a function with the previous value

Atom

Customizable and simplified wrappers for reactive states.

  • (Everything ReadOnlyAtom has)
  • memo(): Creates a new Atom with the setter of the current one and a memoized version of its getter
  • convert(): Creates a new Atom that applies a conversion to the current one
  • defer(): Creates a new Atom that defers the setter of the current one
  • selector(): Two way version of createSelector()
  • unwrap() (static): Allows the use of an Accessor of an Atom without having to call the Accessor each time
  • from() (static): Creates an Atom based on a Signal
  • prop() (static): Creates an Atom based on an object property
  • source() (static): Similiar to Atom.unwrap(), but if the Accessor doesn't return anything it automatically creates an internal Signal in which to store the value