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-selector-context

v0.4.1

Published

React useSelectorContext hook, support custom isEqual function

Downloads

33

Readme

useSelectorContext

CI npm size

React useSelectorContext hook, support custom isEqual function. This hook only depends on React and doesn't require any other external library. This makes it a lightweight and efficient option for managing and using state in your React applications.

Introduction

React Context and the useContext hook are frequently employed as solutions to circumvent prop drilling. However, it's widely recognized that this approach comes with a performance drawback. Specifically, every time the value of a context changes, all components utilizing the useContext hook will be triggered to re-render.

To solve this issue, useSelectorContext is proposed and later proposed.

The useSelectorContext supports custom selector and isEqual functions, providing fine-grained control over the conditions that trigger a re-render.

Install

This package requires react >= 18.

npm install use-selector-context
# or
yarn add use-selector-context
# or
pnpm add use-selector-context

Technical memo

To make it work like original React context, it uses useSyncExternalStore without any libraries.

Inspiration was drawn from an example.

Usage

import React, { memo, useMemo, useState, createRoot } from 'react';
import { useContext, createContext, shallowEqual } from 'use-selector-context';

const context = createContext<{
  v1: number;
  v2: number;
  v3: number[];
  setV1?: React.Dispatch<React.SetStateAction<number>>;
  setV2?: React.Dispatch<React.SetStateAction<number>>;
  setV3?: React.Dispatch<React.SetStateAction<number[]>>;
}>({
  v1: 0,
  v2: 0,
  v3: [],
});

const Child1 = memo(() => {
  const v1 = useContext(context, (v) => v.v1);
  const setV1 = useContext(context, (v) => v.setV1);
  return (
    <div>
      child1,v1:{v1}
      <button onClick={() => setV1?.(v1 + 1)}>setv1</button>
    </div>
  );
});

const Child2 = memo(() => {
  const { v2, setV2 } = useContext(context, (v) => ({ v2: v.v2, setV2: v.setV2 }), shallowEqual);
  return <Child22 v2={v2} setV2={setV2} />;
});

const Child22 = memo((props: any) => {
  return (
    <div>
      child2, v2:{props.v2}
      <button onClick={() => props?.setV2?.(props?.v2 + 1)}>setv2</button>
    </div>
  );
});

const Child3 = memo(() => {
  const { v3, setV3 } = useContext(context);
  return (
    <div>
      child3,v3.length:{v3.length}
      <button
        onClick={() => {
          setV3?.((v) => [...v, v3.length + 1]);
        }}
      >
        setv3
      </button>
    </div>
  );
});

const useAppContext = useContext.withContext(context);

const Child4 = memo(() => {
  const { v3 } = useAppContext((v) => ({ v3: v.v3 }), shallowEqual);
  return <div>child4,v3.length:{v3.length}</div>;
});

const Child5 = memo(() => {
  const { v3 } = useAppContext();
  return <div>child5,v3.length:{v3.length},no shallowEqual</div>;
});




function App() {
  const [v1, setV1] = useState(0);
  const [v2, setV2] = useState(0);
  const [v3, setV3] = useState<number[]>([]);

  const contextValue = useMemo(() => {
    return { v1, v3, setV1, setV3, v2, setV2 };
  }, [v1, v2, v3]);

  return (
    <context.Provider value={contextValue}>
      <p>render My context app ⬇️ WIP</p>
      <Child1 />
      <Child2 />
      <Child3 />
      <Child4 />
      <Child5 />
    </context.Provider>
  );
}


createRoot(document.getElementById('app')).render(<App />);

API

createContext

This creates a special context for useSelectorContext.

Parameters

  • defaultValue Value

Examples

import { createContext } from 'use-selector-context';

const AppContext = createContext({ a: '', b: '' });

useContext

This hook returns context selected value by selector.

useContext only accepts contexts created by createContext. It initiates a re-render only when the selected value undergoes a referential change.

  • By default, selector uses the function (value) => value to retrieve the value. You have the option to use destructuring to extract data.
  • By default, isEqual uses Object.is for comparison. However, you have the flexibility to use shallowEqual(import ) or your own custom isEqual function to determine when the selected value has changed.

Parameters

  • context ZContext<Value>
  • selector? function (value: Value): Selected
  • isEqual? function (a: Selected,b: Selected): boolean

Examples

import { useContext, shallowEqual } from 'use-selector-context';

const a = useContext(AppContext, (state) => state.a);
// or
const b = useContext(AppContext, (state) => {
  b: state.a;
});

// or
const c = useContext(
  AppContext,
  (state) => {
    c: state.a;
  },
  shallowEqual
);

useContext.withContext

Similar to React Redux useSelector, you can use useContext.withContext to specify the context type and to pass in the default parameters for the context.

Parameters

  • context ZContext<Value>

Examples

import { useContext, shallowEqual } from 'use-selector-context';

const useAppContext = useContext.withContext(AppContext);
// or
const a = useAppContext((state) => {
  b: state.a;
});

// or
const c = useAppContext((state) => {
  c: state.a;
}, shallowEqual);

useGetSnapshot

It is used to get the current snapshot of the provided context.

Parameters

  • defaultValue ZContext

Examples

import { useGetSnapshot } from 'use-selector-context';
//  in Component
const getAppContext = useGetSnapshot(AppContext);

useGetSnapshot.withContext

You can use useGetSnapshot.withContext to specify the context type and to pass in the default parameters for the context.

Parameters

  • defaultValue ZContext

Examples

import { useGetSnapshot } from 'use-selector-context';

const useGetAppSnapshot = useGetSnapshot.withContext(context);

//  in Component
const getAppContext = useGetAppSnapshot();

Examples

The example folder contains working examples. You can run one of them with

pnpm run example

and open http://localhost:5173 in your browser.

You can also try them directly: Online Example