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

@jfrk/facade

v1.1.2

Published

Makes it easier and more intuitive to work with state trees consisting of plain objects, arrays and primitive values. Use methods, getters and setters directly on the objects instead of selectors. Perfect to combine with [Immer](https://github.com/mwestst

Downloads

7

Readme

Facade

Makes it easier and more intuitive to work with state trees consisting of plain objects, arrays and primitive values. Use methods, getters and setters directly on the objects instead of selectors. Perfect to combine with Immer.

Installation

npm install --save @jfrk/facade

Usage example

const { wrap, INDEX, ROOT } = require('@jfrk/facade')

// The state is a serializable, one-directional object tree consisting of plain objects, arrays and primitive values.
const state = {
  posts: [
    {
      id: '6NEN6Xuo',
      title: 'My first post',
      authorId: '7obJ6CwW',
      tags: ['foo', 'bar'],
    },
    {
      id: 'vu3KPoW7',
      title: 'My second post',
      authorId: '7obJ6CwW',
      tags: ['foo'],
    },
    {
      id: 'FocE8EQ7',
      title: 'My first post',
      authorId: 'N6TKjJ3M',
      tags: ['qux'],
    },
  ],
  authors: [
    {
      id: '7obJ6CwW',
      firstName: 'Jane',
      lastName: 'Doe',
    },
    {
      id: 'N6TKjJ3M',
      firstName: 'John',
      lastName: 'Smith',
    },
  ],
}

// We define a list of types used to enhance objects and arrays in the state tree. With these we can add getter, setters and methods.
let typeDefs = {
  State: {
    posts: 'PostList',
    author: 'AuthorList',
    getPost(id) {
      return this.posts.find(post => post.id === id)
    },
    getAuthor(id) {
      return this.authors.find(author => author.id === id)
    },
  },
  PostList: {
    [INDEX]: 'Post',
    getByTag(tag) {
      return this.filter(post => post.tags.includes(tag))
    },
  },
  Post: {
    get author() {
      return this[ROOT].getAuthor(this.authorId)
    },
  },
  AuthorList: {
    [INDEX]: 'Author',
  },
  Author: {
    get fullName() {
      return `${this.firstName} ${this.lastName}`
    },
    get posts() {
      return this[ROOT].posts.filter(
        post => post.authorId === this.id,
      )
    },
  },
}

// `wrap` is called with the type definitions, the type of the root object and state tree and returns a wrapped state.
let wrappedState = wrap(typeDefs, 'State', state)

// Example usage of the wrapped state:

wrappedState.getPost('vu3KPoW7').title
// 'My second post'

wrappedState.getPost('vu3KPoW7').author.fullName
// 'Jane Doe'

wrappedState.posts.getByTag('foo').length
// 2

Combined with Immer

import produce from 'immer'
import { wrap } from '@jfrk/facade'

let wrapper = wrap(
  {
    State: {
      // ...
    },
  },
  'State',
)

export default producer =>
  produce(draftState => {
    producer(wrapper(draftState))
  })

API

wrap(typeDefs, rootType, rootObject)

This function is curriable, which means that it can be called partially, for example to create a reusable wrapper:

let wrapper = wrap(typeDefs, rootType)
let wrappedObject = wrapper(rootObject)

wrap is the default export but also availbale as a named export.

Type definitions

  • { propName: 'Type' }

    When getting the prop propName on objects of this type, the value will be wrapped in the type Type.

  • { [INDEX]: 'ElementType' }

    When getting elements on arrays of this type, the element will be wrapped in the type ElementType. INDEX is a symbol provided by this package and matches any prop that is an integer on both arrays and objects.

  • { methodName(...) { ... } }

    Objects of this type will have a mathod availbale called methodName. Inside this function, this will be the wrapped object.

  • { get propName() { return ... } }

    When getting the prop propName on objects of this type, this getter will be used to calculate the value. Inside this function, this will be the wrapped object.

  • { set propName(value) { ... } }

    When setting the prop propName on objects of this type, this function will be used to set the value. Inside this function, this will be the wrapped object.

Exported symbols

  • INDEX

    Use this as a prop in a type definition to set a type for all array elements. Example:

    {
      [INDEX]: 'ElementType'
    }
  • ROOT

    Use this symbol on this inside a method to get the root object. Example:

    {
      get rootObject() {
        return this[ROOT]
      }
    }
  • PARENT

    Use this symbol on this inside a method to get the previously accessed object. Example:

    {
      get parentObject() {
        return this[PARENT]
      }
    }
  • TYPE

    Use this symbol on this inside a method to get the name of the object’s type. Example:

    {
      get type() {
        return this[TYPE]
      }
    }

Caveats

This package uses Proxies and Symbols, so it will not work in all browsers.