use-effect-except-mount
v1.0.0
Published
A custom React hook that modifies useEffect hook to skip the effect on mount (first render) and only run when dependency is changed
Downloads
10
Maintainers
Readme
useEffect Except Mount
Customised React useEffect hook that does not run on mount. See demo here.
The problem
useEffect hook allows you to perform side effects with function components. It runs the specified effect whenever its depenencies change.
useEffect(() => {
// Side effect
}, [...dependencies]);
But it also runs whenever the component mounts. Sometimes that is not desirable. A universal solution to avoid running effect on mount is to use refs. That is exactly what this hook does.
Usage
- Installation
- Using it in your code
Installation
Hook has a peer dependency on React 17.01
. If you use React 16.x
, it might be a good idea to upgrade to 17.x
. This version has no breaking changes. It also makes your application ready for future major versions.
npm i react use-effect-except-mount
Using it in your code
The hook has exactly same signature as the useEffect
hook.
import useEffectExceptMount from "use-effect-except-mount";
const Component: React.FC = () => {
useEffectExceptMount(() => {
// Side effect
}, [...dependencies]);
// Other rendering logic
};
Source code structure
This section is for developers who wish to work upon the existing source code. The structure is pretty straightforward. Code is written mainly in TypeScript. You can start by cloning the repository and running
npm i react # Getting peerDependency
npm i # Getting all devDependencies
There are three components to the source code:
1. The hook logic
This code resides in src/index.ts
. It simply exports a function with same signature as useEffect
. Built version resides in lib/index.js
.
2. The test cases
This code resides in __test__/index.tsx
. Code is with written using Jest.
3. The demo
This is a bundled web application powered by parcel. Source code resides in example
folder . Built code resides in docs
and is deployed on GitHub pages. Before building the demo, change the *main field of package.json to docs/index.html
.
Following are the supported commands:
- npm test: Run the test cases
- npm run build : Build the hook logic
- npm run parcel-build: Build the demo
- npm run parcel-start: Run the demo is development mode.