🔥 Kerosene-ui
yarn add @kablamo/kerosene-ui
npm install @kablamo/kerosene-ui
Available Components
<ShowWhen />
React Hooks
useInterval(callback, delay)
Custom hook that makes setInterval
work declaritively with hooks. See https://overreacted.io/making-setinterval-declarative-with-react-hooks/ for more details.
useKonamiCode(code, callback)
Custom hook which listens for keydown events for the specified code
and triggers the callback when the code is entered.
Custom hook which creates an element with which to use as a target for ReactDOM.createPortal()
. This hook also keeps tracking of the bounding rect of the element attached to the ref
so that the rect
coordinations may be used to position the portal element.
Returns { open, setOpen, ref, rect, portalEl, scrollX, scrollY }
.
useRafThrottle(callback)
Custom hook which throttles the provided callback with requestAnimationFrame
.
useRect(disable?)
Custom hook which measures the bounding rect of the element attached to ref
. Listens to window resize events and any scroll event on the page.
Returns [ref, rect, { scrollX, scrollY }]
.
Available functions
getSafeAreaInsets()
Injects an element into the DOM to measure the CSS environment variables for the safe area insets for devices with non-rectangular displays (like iPhone X, Pixel 3 XL, Galaxy S10, etc.) and returns the measured values.
getTextWidth(text, font)
Uses 2D Canvas to calculate the width of the provided text
with the provided font
details.
getViewportDimensions()
Calculates the height
and width
of the current viewport. On iOS, PWAs report window.innerHeight
and window.innerWidth
incorrectly. This uses the screen
dimensions instead in that case.
isInViewport(element)
Returns whether or not the provided element
is inside the viewport.
isPwa()
Returns whether or not the current page is being displayed in a Progressive Web App.
mergeRefs(...refs)
Returns a new callback ref that effectively merges all provided refs
.
rafThrottle(callback)
Returns a throttled version of the provided callback
. Uses requestAnimationFrame
to throttle. To cancel any pending async operations, call .cancel()
on the throttled version of the function.
waitForRepaint()
Returns a Promise
that waits for a repaint/reflow to occur. May be cancelled by calling .cancel()
on the returned Promise
.
Useful constants
ADD_EVENT_LISTENER_PASSIVE_OPTIONS
Returns { passive: true }
when passive event listeners are supported, otherwise false
.
REMOVE_EVENT_LISTENER_PASSIVE_OPTIONS
Returns {}
when passive event listeners are supported, otherwise false
.
ADD_EVENT_LISTENER_CAPTURE_PASSIVE_OPTIONS
Returns { capture: true, passive: true }
when capture passive event listeners are supported, otherwise true
.
REMOVE_EVENT_LISTENER_CAPTURE_PASSIVE_OPTIONS
Returns { capture: true }
when capture passive event listeners are supported, otherwise true
.
kablamo.com.au