Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

use-referee

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

use-referee

A collection of ref-related hooks.

  • 1.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

use-referee

⚽ A collection of ref-related hooks.

build npm gzipped license

Installation

Skypack
import {
  useConstant,
  useLatest,
  usePrevious,
  useRefs
} from "https://cdn.skypack.dev/use-referee"
Yarn
yarn add use-referee
npm
npm install use-referee

useConstant

useConstant<T>(value: Lazy<T>) => T

Given a (lazy) variable, useConstant will return it as is while never updating or mutating it on subsequent changes.

Usage

Import useConstant.

import { useConstant } from "use-referee"

Declare a constant from an initial (lazy) value.

const id = useConstant(() => uuid())

// id: "123e4567-e89b-12d3-a456-426614174000"

useLatest

useLatest<T>(value: T): MutableRefObject<T>

Given a variable, useLatest will return a ref which reflects its latest value—mutating itself on variable changes to do so.

Usage

Import useLatest.

import { useLatest } from "use-referee"

Pass it a variable and get a mutating ref of its latest value in return.

const [state, setState] = useState(false)
const latest = useLatest(state)

// latest: { current: false }

Being a ref, latest will always reflect the latest state value even when omitted from dependency lists (e.g. []).

setState(true)

useEffect(() => {
  // latest: { current: true }
}, [])

usePrevious

usePrevious<T>(value: T) => T | undefined

Given a variable, usePrevious will return its previous value or undefined before an initial change has happened.

Usage

Import usePrevious.

import { usePrevious } from "use-referee"

Pass it a variable and get its previous value in return.

const [state, setState] = useState(false)
const previous = usePrevious(state)

// previous: undefined

setState(true)

// previous: false

setState(false)

// previous: true

useRefs

useRefs<T>(...refs: Ref<T>[]) => RefCallback<T>

Given any number of refs, useRefs will return a single callback ref that merges them all.

Usage

Import useRefs.

import { useRefs } from "use-referee"

Pass it multiple refs and get a single ref in return.

const refs = useRefs(ref, forwardedRef)

return <div ref={refs} />

// ref: { current: <div /> }
// forwardedRef: { current: <div /> }

Keywords

FAQs

Package last updated on 29 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc