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

preact-shared-state-hook

v0.2.5

Published

Most straightforward way to create shareable state hooks for Preact.

Downloads

27

Readme

There is an official global state library @preact/signals, that is much better!

preact-shared-state-hook

Types: included License: WTFPL

Most straightforward way to create shareable state hooks for Preact.
It's only 30 lines of source code.

Installation

$ npm i preact-shared-state-hook

Usage

Create state hooks with createSharedState() and use them in components.
The state value can be shared by multiple components.

import { h, render } from "preact"
import { memo } from "preact/compat"
import { createSharedState } from "preact-shared-state-hook"

// create a state hook
const [useCount, setCount] = createSharedState(0)

const Counter = memo(() => {
  // use the state value
  const count = useCount()
  return <button type="button" onClick={() => setCount(count + 1)}>{count}</button>
})

render(<Counter />, document.body.appendChild(document.createElement('main')))

Create computation hooks with createSharedSelector() and use them in components.
The computed value can be shared by multiple components.

import { h, render, Fragment } from "preact"
import { memo } from "preact/compat"
import { createSharedState, createSharedSelector } from "preact-shared-state-hook"

const [useCount1, setCount1] = createSharedState(0)
const [useCount2, setCount2] = createSharedState(0)

// create a computation hook
const useProduct = createSharedSelector([useCount1, useCount2], (count1, count2) => count1 * count2)

const Counter = memo(() => {
  const count1 = useCount1()
  const count2 = useCount2()
  return (
    <Fragment>
      <button type="button" onClick={() => setCount1(count1 + 1)}>{count1}</button>
      <button type="button" onClick={() => setCount2(count2 + 1)}>{count2}</button>
    </Fragment>
  )
})

const Product = memo(() => {
  // use the computed value
  const product = useProduct()
  return <div>{product}</div>
})

const App = memo(() => {
  return (
    <Fragment>
      <Counter />
      <Product />
    </Fragment>
  )
})

render(<App />, document.body.appendChild(document.createElement('main')))

Actions can be predefined.

import { h, render } from "preact"
import { memo } from "preact/compat"
import { createSharedState } from "preact-shared-state-hook"

const [useCount, setCount] = createSharedState(0)

// action
const increment = () => setCount(count => count + 1)

const Counter = memo(() => {
  const count = useCount()
  return <button type="button" onClick={increment}>{count}</button>
})

render(<Counter />, document.body.appendChild(document.createElement('main')))

CodeSandbox

API

createSharedState

const [useSharedState, setSharedState] = createSharedState(initialState)

const state = useSharedState()

setSharedState(nextState)
setSharedState(state => nextState)

Creates a hook to share a state.

The first returned value useSharedState() returns the current state value.
useSharedState() must be called in functional components.

The second returned value setSharedState() updates the state and re-renders the components that have called useSharedState().
setSharedState() accepts a new state value or a function that computes a new state value from an old state value.
setSharedState() can be called anywhere.

createSharedSelector

const useSharedSelector = createSharedSelector([useSharedState1, useSharedState2, ...], (state1, state2, ...) => value)

const value = useSharedSelector()

Creates a hook to compute a value from some shared states.
useSharedSelector() must be called in functional components.

License

WTFPL