@paprika/helpers
TypeScript icon, indicating that this package has built-in type declarations

2.4.2 • Public • Published

@paprika/helpers


Description

JavaScript and React helper utilities.


Installation

yarn add @paprika/helpers

or with npm:

npm install @paprika/helpers

Usage

Import the helper function you want to use by name from the Paprika helpers package:

import { helperFunction } from "@paprika/helpers";

Polyfills must be imported directly from their source in the lib folder. For example:

import "@paprika/helpers/lib/polyfills/elementClosest";

Contents


callAll(functions[])

Returns a function that will call all functions passed as arguments.

extractChildren(children, types[])

Get a hash table of components from chilren argument where the displayName property of child matches an item provided in the types argument with the keys of the return object matching the items in types.

extractChildrenProps(children, target)

Get the props object from the target argument component type if it exists in children argument.

isDevEnv()

Returns true if NODE_ENV is undefined or "development".


Custom PropTypes

A variety of custom React prop types including:

  • ShirtSizes
  • AlignTypes
  • deprecated
  • InputValidTypes
  • FocusPropTypes
  • RefOf

DOM Functions

getActiveElement()

Returns the element that is currently focussed, even when that element is found within an open web component.

isElementContainsFocus(element)

Returns true if the element that is currently focussed is the element argument, or any descendent of element.


Components

<LockBodyScroll>

Sets body overlow to hidden.

<Portal>

Wrapper for ReactDOM.createPortal.


Hooks

useDebounce(value, delay)

Provides a value after a specified delay.

useForwardDomRef(ref, parentRef)

Set parentRef to ref.

useMountedRef()

Provides a ref with a current value of true if component is (still) mounted.

usePrevious(value)

Provides the previous value of the value argument.


Polyfills

elementClosest

IE polyfill for Element.closest().

elementScroll

IE polyfill for Element.scroll(), Element.scrollTo(), Element.scrollBy().


Links

Readme

Keywords

none

Package Sidebar

Install

npm i @paprika/helpers

Weekly Downloads

3,917

Version

2.4.2

License

MIT

Unpacked Size

134 kB

Total Files

117

Last publish

Collaborators

  • vkhimich
  • mikrotron
  • jamiek-galvanize
  • allison_cc