useEffectOnceWhen
Aboutβ
Runs a callback effect atmost one time when a condition becomes true
Installationβ
npm install --save rooks
Importing the hookβ
import { useEffectOnceWhen } from "rooks";
Usageβ
function Demo() {
const hasOpenedPage = true;
useEffectOnceWhen(() => {
console.log("user has opened page");
}, hasOpenedPage);
return null;
}
render(<Demo />);
Codesandbox Examplesβ
Basic Usageβ
Argumentsβ
Arguments | Type | Description | Default value |
---|---|---|---|
callback | function | The callback to be called | undefined |
when | boolean | The condition which needs to be true | true |
Returnβ
No return value.
Join Bhargav's discord serverβ
You can click on the floating discord icon at the bottom right of the screen and talk to us in our server.