mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
1.0 KiB
1.0 KiB
useSearchParam
React sensor hook that tracks browser's location search param.
Usage
import {useSearchParam} from 'react-use';
const Demo = () => {
const edit = useSearchParam('edit');
return (
<div>
<div>edit: {edit || '🤷♂️'}</div>
<div>
<button onClick={() => history.pushState({}, '', location.pathname + '?edit=123')}>Edit post 123 (?edit=123)</button>
</div>
<div>
<button onClick={() => history.pushState({}, '', location.pathname + '?edit=999')}>Edit post 999 (?edit=999)</button>
</div>
<div>
<button onClick={() => history.pushState({}, '', location.pathname)}>Close modal</button>
</div>
</div>
);
};
Caveats/Gotchas
When using a hash router, like react-router's <HashRouter>, this hook won't be able to read the search parameters as they are considered part of the hash of the URL by browsers.