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

@amirkzm/use-conditional-effect

v1.0.0

Published

A conditional useEffect hook

Downloads

2

Readme

useConditionalEffect

on npm (https://www.npmjs.com/package/@amir253700/use-conditional-effect)

about

This is a small react hook library that extends the capabilities of react useEffect hook. this allows the user to to stop execution of the useEffect under specified condition inside hook's function regardless of the change of dependencies.

table of content

  1. The problem 
  2. Solution
  3. Installation
  4. Usage 
  5. License

Problem

Built-in react useEffect hook accepts two arguments: a callback function and a list of dependencies. each time one of the items inside the dependency list is changed the useEfect runs again and the callback function will be called. but sometimes you may need that under some conditions the useEffect should not run the function again even if the dependency array has changed.

  useEffect(()=>{
        //do some calculation but when the for the first
        //time the firstNumber was bigger than the second
        //Number dont run this useEffect anymore<br>
    },[firstNumber,secondNumber])

Solution

you can simply use this hook to solve this problem. the only thnig that should be noticed is the callback function that must return an object if a condition has met in order to stop execution of useEffect next time otherwise it has to return false.Also it has to be mentioned that dependency argument doesn't need to be an array. it can be an object,a number or anything else.

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's dependencies: npm install --save @amir253700/use-conditional-effect

Usage

here is a brief code sample for solving the mentioned problem above:

useConditionalEffect(()=>{
    if(firstNumber>secondNumber){
      return {finished:true,cleanup:()=>console.log("running clean up function!")}
    }else{
      //in this case the hook acts like a normal useEffect and runs again when dependencies are changed.
      return false
    }
  },[firstNumber,secondNumber])

license

MIT