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

react-dom-hooks

v1.2.2

Published

A collection of React Hooks carrying complex JavaScript queries for handling awesome DOM events. Package written in TypeScript to support all the modern needs.

Downloads

23

Readme

React DOM Hooks

react-dom-hooks banner image

Npm GitHub Npm

A collection of React Hooks carrying complex JavaScript queries for handling awesome DOM events. The package is written in TypeScript to support all modern needs.

 

About

React DOM Hooks provides a set of UI functionalities that makes it a UI supporting library. APIs provided by each hook can be connected to any UI element. This makes achieving complex UI functionalities easier without restricting the idea to a particular design making it totally unopinionated.

 

Attention

React DOM Hooks manipulates the DOM. Hooks provided in this package work on HTML IDs and classes more than React refs. If you are facing major performance issues after using any of the provided hooks from this package, we would recommend you to switch to a different library or package. But in most cases, this does not impact the performance at all. All the hooks available in this package got tested on multiple applications of different sizes and proficiency levels.

 

Getting started

npm install react-dom-hooks

 

List of Hooks

useHorizontalScroll

import {useHorizontalScroll} from "react-dom-hooks"

useHorizontalScroll Props

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | containerId | string | Unique ID of the container |

useHorizontalScroll Handlers and Options

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | handleScroll | function | Takes scroll direction as "left" or "right" |

Demo for useHorizontalScroll

 


 

useVerticalScroll

import {useVerticalScroll} from "react-dom-hooks"

useVerticalScroll Props

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | containerId | string | Unique ID of the container |

useVerticalScroll Handlers and Options

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | handleScroll | function | Takes scroll direction as "up" or "down" |

Demo for useVerticalScroll

 


 

useHorizontalAutoLoopScroll

import {useHorizontalAutoLoopScroll} from "react-dom-hooks"

useHorizontalAutoLoopScroll Props

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | containerId | string | Unique ID of the parent container | | childClass | string | Class assigned to all the children | | loopSpeed | number (optional) | Unique ID of the container |

useHorizontalAutoLoopScroll Handlers and Options

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | pauseLoop | function | Pauses the loop | | resumeLoop | function | Resumes the loop |

Demo for useHorizontalAutoLoopScroll

 


 

useCarousel

import {useCarousel} from "react-dom-hooks"

useCarousel Props

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | containerRef | React.RefObject < HTMLDivElement > | ref to the parent container | | loop | boolean (optional) | Loop slides on reaching the end |

useCarousel Handlers and Options

| Name | Type | Description |
|:----------|:-------------|:-------------------------| | totalSlides | number | Total number of slides | | activeSlide | number | Indexed to 1 | | changeSlide | function | Takes direction as "prev" or "next" |

Demo for useCarousel

 


 

useHorizontalAutoSnapScroll

import {useHorizontalAutoSnapScroll} from "react-dom-hooks"

useHorizontalAutoSnapScroll Props

| Name | Type | Description | | :----------- | :----- | :--------------------------------------------------------- | | scrollLeftBy | number | Should match (approximately) with the child width | | snapDelay | number | (in ms), i.e. 2000 = 2 seconds. Controls auto-scroll delay |

useHorizontalAutoSnapScroll Handlers and Options

| Name | Type | Description | | :----------- | :--------------------------------------------- | :-------------------------------------------- | | containerRef | React.MutableRefObject<HTMLDivElement | null> | ref to be applied on the scrollable container |

Demo for useHorizontalAutoSnapScroll