1.0.0 • Published 4 years ago

@scottbamford/usecallbackawaitstatesync v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

useCallbackAwaitStateSync

Returns a callback that will not execute right away when called, but will instead execute next time all the state has been synchronised.

This is useful to invoke when you make a series of state changes that you want to know are applied before calling an existing callback or block of code.

Installation

Install useCallbackAwaitStateSync locally within your project folder, like so:

npm install @scottbamford/useCallbackAwaitStateSync

Or with yarn:

yarn add @scottbamford/useCallbackAwaitStateSync

Basic Usage

You can use this hook as an alternative to useCallback().

Because the callback waits until after state is synchronised before executing it does not require a dependency array.

Typescript

import * as React from 'react';
import { useCallbackAwaitStateSync } from '@scottbamford/usecallbackawaitstatesync';

export const MyComponent = () => {
    const [someStateThatMatters, setSomeStateThatMatters] = React.useState<string>('');

    const myCallback = useCallbackAwaitStateSync(() => {
        console.log(someStateThatMatters);
    });

    React.useEffect() {
        setSomeStateThatMatters('Hello world');
        myCallback();
    }
};

Javascript

import * as React from 'react';
import { useCallbackAwaitStateSync } from '@scottbamford/usecallbackawaitstatesync';

export const MyComponent = () => {
    const [someStateThatMatters, setSomeStateThatMatters] = React.useState('');

    const myCallback = useCallbackAwaitStateSync(() => {
        console.log(someStateThatMatters);
    });

    React.useEffect() {
        setSomeStateThatMatters('Hello world');
        myCallback();
    }
};

Typescript

This package is written in typescript and comes with its own bindings.

License

Licensed under the MIT license.

1.0.0

4 years ago