React Use Window.localStorage
Edit page
Home
Hooks
useClearLocalStorageuseLocalStorageBooleanDescriptionUsageSignatureExampleuseLocalStorageItemuseLocalStorageNumberuseLocalStorageObjectuseLocalStorageString
Code of ConductMIT License

useLocalStorageBoolean

Description

This hook gets and sets a boolean in localStorage.

Features synchronization across hooks sharing the same key name.

Usage

import { useLocalStorageBoolean } from 'react-use-window-localstorage';

In your function component:

const [value, setValue] = useLocalStorageBoolean('swordEquipped', true);

The hook takes a key name and an optional default value argument. The default value will be immediately written to localStorage and returned if no value is present already. Uses null when no default value is provided.

Use value and setValue to read and write the value.

Because localStorage accepts strings only, the value is encoded using JSON.stringify() and decoded using JSON.parse().

Additional Features

The hook provides additional features in its return array, should you be interested:

const [value, setValue, loading, available, reset] = useLocalStorageBoolean('swordEquipped', true);
  • A loading value of true indicates that the value is being loaded from localStorage.
  • An available value of true indicates that localStorage is supported and available for use.
  • The reset() function sets the value back to the provided default, or null if none was given.

Signature

useLocalStorageBoolean(keyName: string, defaultValue?: boolean | null) => [boolean | null, (value: boolean | null) => void, boolean, () => void, () => void]

Props

PropTypeDescription
keyNamestringRequired. Key name to use in localStorage.
defaultValueboolean | nullOptional. Provide a default boolean value when the key's value is not found in localStorage. Will be immediately written to localStorage if not present. Use null for no default.

Return

The hook returns an array containing:

IndexNameTypeDescription
0valueboolean | nullThe boolean value from localStorage, when loading is false. Will be the default value (or null if none provided) while loading is true. If null when not loading, the key was not found in localStorage.
1setValue(value: boolean | null) => voidSets the value in localStorage. Provide null to set it back to the default value. Providing null will delete the key from localStorage if the default value is null.
2loadingbooleantrue while the value loads from localStorage, false otherwise.
3availablebooleantrue if localStorage is supported and available for use, false otherwise.
4reset() => voidReset the value to the default.

Example


import * as React from 'react';
import { useLocalStorageBoolean } from 'react-use-window-localstorage';
export function UseLocalStorageBooleanExample() {
const defaultValue = true;
const [value, setValue, loading, available, reset] = useLocalStorageBoolean('boolValue', defaultValue);
const [value2, setValue2, loading2] = useLocalStorageBoolean('boolValue', defaultValue);
return (
<div>
{!loading && (
<div>
<div>
Key "boolValue": <button onClick={() => setValue(!value)}>Toggle</button>
</div>
<div>
<strong>Stored value:</strong> {value + ''}
</div>
</div>
)}
<div>
<button onClick={() => reset()}>Reset "boolValue" to default</button>
</div>
<hr />
{!loading2 && <div>Another "boolValue" hook (different hook, will synchronize): {value2 + ''}</div>}
</div>
);
}