xooks
v2.2.6
Published
General purpose react hooks
Downloads
16
Readme
xooks
General purpose react hooks collection
Installation
xooks library has react@>=16.8.0 as peer dependency and nanoid as dependency.
# with npm
npm install --save xooks
# with yarn
yarn add xooks
Included hooks
- use-color-scheme
- use-document-title
- use-clipboard
- use-click-outside
- use-id
- use-list-state
- use-local-storage
- use-form
- use-intermediate-value
use-color-scheme
Returns current user color scheme, value is subscribed to system preferences, defaults to light.
Usage:
import React from 'react';
import { useColorScheme } from 'xooks';
export default function UseColorScheme() {
const scheme = useColorScheme(); // -> light | dark
if (scheme === 'dark') {
return <div>Dark</div>;
}
return <div>Light</div>;
}
use-document-title
Sets document.title
property. Works only on client.
Usage:
import React from 'react';
import { useDocumentTitle } from 'xooks';
export default function UseDocumentTitle() {
useDocumentTitle('Document title');
return <div>AppRoute</div>;
}
use-clipboard
Provides interface to work with navigator.clipboard
. Includes copied state timeout.
Usage:
import React from 'react';
import { useClipboard } from 'xooks';
export default function UseClipboard() {
const {
copied, // indicates that value was recently copied to clipboard
copy, // copy any string to clipboard
reset, // reset copied timeout
error, // error is set when navigator.clipboard.writeText promise caught an error
} = useClipboard({ timeout: 3000 }); // timeout is optional (defaults to 2000) – ms when copied will return to false after copy was called
return (
<button type="button" onClick={() => clipboard.copy('Hello')}>
{clipboard.copied ? 'Copied' : 'Copy Hello'}
</button>
);
}
use-click-outside
Handle outside clicks and touches for provided ref.
Usage:
import React, { useRef } from 'react';
import { useClickOutside } from 'xooks';
export default function UseClickOutside() {
const ref = useRef();
useClickOutside(ref, () => console.log('Clicked outside'));
return <div ref={ref}>Click outside</div>;
}
use-id
Provides unique overridable id that can be used as id for html elements, perfect for connecting labels with inputs.
Usage:
import React from 'react';
import { useId } from 'xooks';
export default function UseId(props) {
const inputId = useId(); // generates id as it was now provided -> xooks-V1StGXR8_Z5jdHi6B-myT
const checkboxId = useId(props.id); // by default will use id from props, if it was not provided, it will generate one
const alwaysTheSameId = useId('my-id'); // will always return my-id
return (
<div>
<label htmlFor={inputId}>Input</label>
<input type="text" id={inputId} />
</div>
<div>
<label htmlFor={checkbox}>Checkbox id</label>
<input type="checkbox" id={checkbox} />
</div>
);
}
use-list-state
Provides convinient interface to work with array state.
Usage:
import React from 'react';
import { useListState } from 'xooks';
export default function UseListState() {
const [values, handlers] = useListState([{ a: 1 }]);
// add one or more items to the end of the list
const append = () => handlers.append({ a: 2 }); // values -> [{ a: 1 }, { a: 2 }]
// add one or more items to the start of the list
const prepend = () => handlers.prepend({ a: 3 }, { a: 4 }); // values -> [{ a: 3 }, { a: 4 }, { a: 1 }, { a: 2 }]
// remove items at given positions
const remove = () => handlers.remove(0, 2); // values -> [{ a: 4 }, { a: 2 }]
// insert one or more items at given position
const insert = () => handlers.insert(1, { a: 5 }); // values -> [{ a: 4 }, { a: 5 }, { a: 2 }]
// apply function to each element of the list
const apply = () => handlers.apply((item, index) => item.a * index); // values -> [0, 5, 4]
// move item from one position to another
const reorder = () => handlers.reorder({ from: 2, to: 0 }); // values -> [4, 0, 5]
// set entirely new state
const setState = () => handlers.setState([{ a: 6 }, { a: 7 }]); // values -> [{ a: 6 }, { a: 7 }]
// set individual item at given position
const setItem = () => handlers.setItem(0, { a: 8 }); // values -> [{ a: 8 }, { a: 7 }]
// set item property at given position
const setItemProp = () => handlers.setItemProp(1, 'a', 'new-prop'); // values -> [{ a: 8 }, { a: 'new-prop' }]
}
use-local-storage
Provides insterface to work with local storage. Automatically calls JSON.stringify
on provided data before saving. Includes delayed updates for perfomance improvements.
Usage:
import React, { useState, useEffect } from 'react';
import { useLocalStorage } from 'xooks';
export default function UseLocalStorage() {
const ls = useLocalStorage({
key: 'data-key', // local storage key that should be used to store data
delay: 1000, // rate in ms by which data can be updated
});
// properties of ls:
// ls.saved – boolean – indicates that values is up to date
// ls.save(values) – saves provided values as string to localStorage
// ls.clean() – removes saved value
// ls.retrieve() – gets value from localStorage
// ls.retrieveAndClean() – get value from localStorage and then removes it
// ls.cancel() – cancel save timeout after component unmount
const [values, setValues] = useState(ls.retrieve() || [{ some: 'values' }]);
useEffect(() => {
ls.save(values); // calls localStorage.setItem('data-key', JSON.stringify(values)) max one time every 1000ms
return ls.cancel;
}, [values]);
return <JsonEditor value={values} onChange={setValues} />;
}
use-form
Provides most basic form state management utilities.
Usage:
import React from 'react';
import { useForm } from 'xooks';
export default function UseForm() {
const form = useForm({
initialValues: { name: '', email: '' },
validationRules: {
name: (value) => value.trim().length > 0,
email: (value) => /@.*?\./.test(value),
},
});
return (
<form onSubmit={form.onSubmit((validValues) => console.log(validValues))}>
<input
type="text"
placeholder={form.errors.name ? 'Name is invalid' : 'Enter name'}
value={form.values.name}
onChange={(event) => form.setField('name', event.target.value)}
onFocus={() => form.invalidateField('name')}
/>
<input
type="text"
placeholder={form.errors.email ? 'Email is invalid' : 'Enter email'}
value={form.values.email}
onChange={(event) => form.setField('email', event.target.value)}
onFocus={() => form.invalidateField('email')}
/>
</form>
);
}
use-intermediate-value
Provides interface to work with free user input that should be validated before applying.
Usage:
// example with number input
// full example – https://github.com/rtivital/omatsuri/blob/master/src/components/NumberInput/NumberInput.jsx
import React, { useState } from 'react';
import { useIntermediateValue } from 'xooks';
export default function UseIntermediateValue() {
const [value, onChange] = useState(0); // actual value is stored separately
const min = 0;
const max = 100;
const { intermediateValue, valid, handleChange, handleSubmit } = useIntermediateValue({
value,
onChange, // onChange will be called only if rule indicates that value is valid
rule: val => !Number.isNaN(val) && val <= max && val >= min, // validation function
format: val => Number(val), // format value before submitting to outer state
});
return (
<Input
{...others}
invalid={!valid}
type="text"
value={intermediateValue}
// value changes as usual until its valid, when value gets invalid intermediateValue is used instead
onChange={event => handleChange(event.target.value)}
// handleSubmit sets intermediateValue to last valid value
onBlur={event => handleSubmit(event.target.value)}
/>
}