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

foo-state

v1.2.1

Published

A simple yet powerful library for managing global states with react

Downloads

2

Readme

build

All Contributors

Total coverage

foo-state

This package consists of simple global states made possible by observing browser events. It works well when you need to use global states in a react or next.js app.

It can be used both with Typescript or Javascript.

Table of contents

  1. Installation
  2. Examples
    1. Using as a hook
    2. Using outside React
    3. Partial state hook
    4. Persist state
    5. Using deep comparison
    6. With lazy initialization
    7. Using with TypeScript
  3. API Reference
  4. Contributing
  5. License

⚙️ Installation

npm install --save foo-state

🔌 Examples

1 - using as a hook

import { createGlobalState } from "foo-state"

const initialState = 0

const { useGlobalState } = createGlobalState(initialState)

const Counter = () => {
  const [count, setCount] = useGlobalState()

  const increment = () => {
    setCount(count + 1)
  }

  const decrement = () => {
    // you can also use callback functions
    setCount((state) => {
      if (state > 0) {
        return state - 1
      }

      return state
    })
  }

  return (
    <div>
      <button onClick={decrement}>-</button>
      <span>{count}</span>
      <button onClick={increment}>+</button>
    </div>
  )
}

2 - using outside react

import { createGlobalState } from "foo-state"

const initialState = 0

const { useGlobalState, setGlobalState } = createGlobalState(initialState)

function setInitialState() {
  setTimeout(() => {
    setGlobalState(10_000)
  }, 2_000)
}

const Counter = () => {
  const [count, setCount] = useGlobalState()

  useEffect(() => {
    setInitialState()
  }, [])

  const decrement = () => {
    setCount(count - 1)
  }

  const increment = () => {
    setCount(count + 1)
  }

  return (
    <div>
      <button onClick={decrement}>-</button>
      <span>{count}</span>
      <button onClick={increment}>+</button>
    </div>
  )
}

3 - partial state hook

import { createGlobalState } from "foo-state"

const initialState = {
    firstName: "John",
    lastName: "Doe",
    age: 43
}

const { createPartialState } = createGlobalState(initialState)

const useAge = createPartialState(state => state.age)

const Age = () => {
    const age = useAge()

    return (
        <div>{age}</div>
    )
}

4 - persist state

import { createGlobalState } from "foo-state"

const initialState = {
    firstName: "John",
    lastName: "Doe",
    age: 43
}

const { useGlobalState } = createGlobalState(initialState, {
  persistence: {
      key: "x-storage-key",
      // optional, defaults to localStorage
      // localStorage or sessionStorage
      type: "localStorage",
  }
})

const Person = () => {
    const [person, setPerson] = useGlobalState()

    function onChange(e){
      const {name, value} = e.target

      setPerson({
        ...person,
        [name]: value
      })
    }

    return (
        <div>
          <label>
            First Name
            <br />
          <input name="firstName" value={person.firstName} onChange={onChange} />
          </label>
          <label>
            Last Name
            <br />
          <input name="lastName" value={person.lastName} onChange={onChange} />
          </label>
          <label>
            Age
            <br />
          <input name="age" value={person.age} onChange={onChange} />
          </label>
        </div>
    )
}

5 - using deep comparison (useful for objects and arrays to prevent unnecessary re-renders)

import { createGlobalState } from "foo-state"

const initialState = {
  firstName: "John",
  lastName: "Doe",
  age: 43,
}

const { useGlobalState } = createGlobalState(initialState)

const Profile = () => {
  const [state, setState] = useGlobalState()

  function invertNames() {
    const newState = {
      firstName: "Doe",
      lastName: "John",
      age: 43,
    }
    setState(newState, { deepCompare: true })
  }

  return (
    <div>
      <p>First Name: {state.firstName}</p>
      <p>Last Name: {state.lastName}</p>
      <p>Age: {state.age}</p>
      <button onClick={invertNames}>Click me!</button>
    </div>
  )
}

6 - With lazy initialization

function heavyCalculation() {
  const user = {
    name: 'John',
    birthday: new Date('1995-03-15')
  }

  // let's pretend we're getting a correct age here
  const age = new Date().getFullYear() - user.birthday.getFullYear()

  return {
    name: user.name,
    age,
  }
}


const {useGlobalState} = createGlobalState(heavyCalculation)

const Profile = () => {
  const [state] = useGlobalState()

  return (
    <div>
      <p>Name: {state.name}</p>
      <p>Age: {state.age}</p>
    </div>
  )
}

7 - With typescript

import { createGlobalState } from "foo-state"

type Person = {
  firstName: string
  lastName: string
  age: number
}

const { useGlobalState } = createGlobalState<Person>({
  firstName: "John",
  lastName: "Doe",
  // string is not assignable to type number
  age: "43"
})

const Profile = () => {
    const [state, setState] = useGlobalState()

    function invertNames() {
        const newState = {
            firstName: "Doe",
            lastName: "John",
            age: 43,
        }
        setState(newState, {deepCompare: true})
    }

    return (
        <div>
            <p>First Name: {state.firstName}</p>
            <p>Last Name: {state.lastName}</p>
            <p>Age: {state.age}</p>
            <button onClick={invertNames}>Click me!</button>
        </div>
    )
}

API Reference

createGlobalState

createGlobalState<S>(initialState: S | () => S, options: GlobalStateOptions): GlobalState

This is, most probably, the only function you will need to use from this library.

Params

The initial state can be either a value or a function that resolves to a value. This mirrors the useState API.

The library tries to infer the type as much as possible, but you can also specify the type:

type Person = {}

const state = createGlobalState<Person>({})

You can always read more about the options parameter for createGlobalState.

Returned functions

  • useGlobalState - This react hook can be used inside any functional component to access or change the state.

  • useReadOnlyState - This react hook doesn't give you access to the setState function, instead it only returns the current state.

  • createPartialState - This function will return a read only react hook with a custom partial state. See example of createPartialState

  • getGlobalState - This function returns the current state and can be used anywhere in you application, not only inside react components.See example of getGlobalState

  • setGlobalState - This function allows you to change the state and can be used anywhere in you application, not only inside react components.See example of setGlobalState

👥 Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

🏛 License

MIT

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!