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

use-ez-state

v1.1.4

Published

A template for creating npm packages using TypeScript and VSCode

Downloads

15

Readme

useEzState

useEzState is a custom React hook and a simple way to solve "React.useState hell".
It sits somewhere between useState and useReducer and excels when you have multiple state variables inside the same component. Intended to be used with typescript in order to achieve typesafe state updates.

Installation and Usage:

npm i use-ez-state

Much like React.useState the custom hook useEzState accepts an initial state parameter - with the difference that it always has to be an object. It then returns the current state and an update function as a tuple - [state, update]

import useEzState from "use-ez-state"

const [{name, age}, update] = useEzState({ name: 'John', age: 32 });

update({ name: 'Jack' });
console.log(name); // Jack
console.log(age); // 32
// You can also update multiple state variables
update({ name: 'Jill', age: 21 });
console.log(name); // Jill
console.log(age); // 21

The type of the state is inferred from the initial state and the update function accepts an object containing a subtype of the state and only those properties will be updated in the state.

You can play around with useEzState on StackBlitz

When to use useEzState

useEzStates starts scaling once you have more than 2 usages of useState:

const [email, setEmail] =  React.useState("");
const [userName, setUserName] =  React.useState("");
const [password1, setPassword1] =  React.useState("");
const [password2, setPassword2] =  React.useState("");

can be changed to:

const [{ email, userName, password1, password2 }, update] =  useEzState({
  email: "",
  userName: "",
  password1: "",
  password2: "",
});

The benefit of using useEzState is that your state structure now resembles a plain javascript object and you have to deal with only one typesafe update function.

Advanced tips:

  • By default, typescript does not differentiate between missing a value and setting this value as undefined and thus using update({email: undefined}) will not result in an error, even though it should, since we've stated that email should be only of type string. Adding the following flag "exactOptionalPropertyTypes": true in your tsconfig.json resolves this issue. Now update({email: undefined}) results in a type error. You can find out more about the exactOptionalPropertyTypes in Typescript 4.4 release notes

  • useEzState accepts a second optional parameter - a reducer function (just like useReducer). The default implementation is (state, next) => ({...state, ...next}) which just simply merges the state with the partial update value. You can add your own reducer in order to add centralized custom logic to your state updates - parsing, validation etc.