javascript 32 lines · 6 steps

A React hook backed by the URL hash

useHashState mirrors a piece of state into the URL fragment so it survives reloads and stays shareable.

Explained by highlit
1function useHashState(key, defaultValue) {
2 const parse = () => {
3 const params = new URLSearchParams(window.location.hash.slice(1));
4 return params.has(key) ? params.get(key) : defaultValue;
5 };
6 
7 const [value, setValue] = React.useState(parse);
8 
9 React.useEffect(() => {
10 const onHashChange = () => setValue(parse());
11 window.addEventListener('hashchange', onHashChange);
12 return () => window.removeEventListener('hashchange', onHashChange);
13 }, [key]);
14 
15 const update = React.useCallback(
16 (next) => {
17 const params = new URLSearchParams(window.location.hash.slice(1));
18 if (next === defaultValue || next == null || next === '') {
19 params.delete(key);
20 } else {
21 params.set(key, next);
22 }
23 const hash = params.toString();
24 const url = hash ? `#${hash}` : window.location.pathname + window.location.search;
25 window.history.replaceState(null, '', url);
26 setValue(next ?? defaultValue);
27 },
28 [key, defaultValue]
29 );
30 
31 return [value, update];
32}
01 / 01
STEP 01

Walkthrough

Space play step click any line
Three takeaways
  1. 1The URL hash can act as a persistent, shareable store for lightweight UI state.
  2. 2Syncing external state into React means listening for its change events and cleaning the listener up.
  3. 3Removing a key when its value is the default keeps URLs clean rather than littered with defaults.

Related explainers

javascript
const ROLE_PERMISSIONS = {
  admin: ['users:read', 'users:write', 'billing:read', 'billing:write'],
  manager: ['users:read', 'billing:read'],
  member: ['users:read'],

Role-based permissions middleware in Express

authorization middleware rbac
Intermediate 9 steps
javascript
function attachThousandSeparators(input, { locale = 'en-US' } = {}) {
  const formatter = new Intl.NumberFormat(locale);
  const groupSep = formatter.format(11111).replace(/\d/g, '')[0] || ',';
  const decimalSep = formatter.format(1.1).replace(/\d/g, '')[0] || '.';

Live thousand separators without losing the caret

dom intl caret-preservation
Advanced 8 steps
javascript
import { useReducer, useEffect } from "react";
 
const initialState = { status: "idle", data: null, error: null };
 

Building a data-fetching hook in React

custom-hooks usereducer data-fetching
Intermediate 9 steps
javascript
const express = require('express');
const app = express();
 
app.get('/health', (req, res) => res.json({ status: 'ok' }));

Graceful shutdown in an Express server

graceful-shutdown signal-handling connection-tracking
Advanced 9 steps
javascript
import { useState, useEffect, useCallback } from 'react';
 
function getColumnCount(width) {
  if (width < 640) return 1;

A responsive column hook in React

custom-hooks debouncing responsive-design
Intermediate 7 steps
javascript
function initCharacterCounter(textarea, options = {}) {
  const maxLength = options.maxLength ?? 280;
  const warnThreshold = options.warnThreshold ?? 0.9;
 

A live character counter for textareas

dom closures accessibility
Intermediate 7 steps

Share this explainer

Here's the card — post it anywhere.

A React hook backed by the URL hash — share card
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code