Git Product home page Git Product logo

web's Introduction

@react-hookz/web

NPM Version NPM Downloads NPM Dependents Build Coverage Types Tree Shaking

× DOCS × DISCORD × CHANGELOG ×


@react-hookz/web is a library of general-purpose React hooks built with care and SSR compatibility in mind.

Install

This one is pretty simple, everyone knows what to do:

npm i @react-hookz/web
# or
yarn add @react-hookz/web

As hooks was introduced to the world in React 16.8, @react-hookz/web requires - you guessed it - react and react-dom 16.8+. Also, as React does not support IE, @react-hookz/web does not do so either. You'll have to transpile your node-modules in order to run in IE.

Usage

This package provides three levels of compilation:

  1. Main, the /cjs folder — CommonJS modules, with ES5 lang level.
  2. ESM, the /esm folder — it is ES modules (browser compatible), with ES5 lang level.
  3. ESNext, the /esnext folder — it is ES modules (browser compatible), with ESNext lang level.

So, if you need the useMountEffect hook, depending on your needs, you can import in three ways (there are actually more, but these are the three most common):

// in case you need cjs modules
import { useMountEffect } from '@react-hookz/web';
// in case you need esm modules
import { useMountEffect } from '@react-hookz/web/esm';
// in case you want all the recent ES features
import { useMountEffect } from '@react-hookz/web/esnext';

Migrating from react-use

@react-hookz/web was built as a spiritual successor of react-use by one of its former maintainers.

Coming from react-use? Check out our migration guide.

Hooks list

  • Callback

  • Lifecycle

  • State

    • useControlledRerenderState — Like React.useState, but its state setter accepts extra argument, that allows to cancel rerender.
    • useCounter — Tracks a numeric value and offers functions for manipulating it.
    • useDebouncedState — Like useSafeState but its state setter is debounced.
    • useFunctionalState — Like useState but instead of raw state, state getter returned.
    • useList — Tracks a list and offers functions for manipulating it.
    • useMap — Tracks the state of a Map.
    • useMediatedState — Like useState, but every value set is passed through a mediator function.
    • usePrevious — Returns the value passed to the hook on previous render.
    • usePreviousDistinct — Returns the most recent distinct value passed to the hook on previous render.
    • useRafState — Like React.useState, but state is only updated within animation frame.
    • useSafeState — Like useState, but its state setter is guarded against sets on unmounted component.
    • useSet — Tracks the state of a Set.
    • useToggle — Like useState, but can only become true or false.
    • useThrottledState — Like useSafeState but its state setter is throttled.
    • useValidator — Performs validation when any of provided dependencies has changed.
  • Navigator

  • Miscellaneous

    • useSyncedRef — Like useRef, but it returns immutable ref that contains actual value.
    • useCustomCompareMemo — Like useMemo but uses provided comparator function to validate dependency changes.
    • useDeepCompareMemo — Like useMemo but uses @react-hookz/deep-equal comparator function to validate deep dependency changes.
    • useHookableRef — Like useRef but it is possible to define get and set handlers.
  • Side-effect

  • Sensor

    • useIntersectionObserver — Observe changes in the intersection of a target element with an ancestor element or with a top-level document's viewport.
    • useMeasure — Uses ResizeObserver to track element dimensions and re-render component when they change.
    • useMediaQuery — Tracks the state of CSS media query.
    • useResizeObserver — Invokes a callback whenever ResizeObserver detects a change to target's size.
    • useScreenOrientation — Checks if screen is in portrait or landscape orientation and automatically re-renders on orientation change.
  • Dom

    • useClickOutside — Triggers callback when user clicks outside the target element.
    • useEventListener — Subscribes an event listener to the target, and automatically unsubscribes it on unmount.
    • useKeyboardEvent — Executes callback when keyboard event occurred on target.
    • useWindowSize — Tracks window inner dimensions.

Contributors

xobotyi
Anton Zinovyev
JoeDuncko
Joe Duncko
ArttuOll
Arttu Olli
kylemh
Kyle Holmberg
AndreasNel
Andreas Nel
Rey-Wang
Rey Wang
axelboc
Axel Bocciarelli
lensbart
Bart Lens
birant
Birant İyigün
punkle
Brian Fletcher
wesgro
Jake Ketcheson
JoshuaStewartEntelect
Joshua Stewart
KonradLinkowski
Konrad Linkowski
MichalTarasiuk
Michał Tarasiuk
fengkx
Fengkx

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.