Make the room list sidebar resizable

Generalizes useResizableWidth with a left/right anchor option and wires
it into the sidebar the same way the room info panel already uses it,
so both sides of the chat shell can be dragged to a comfortable width.
This commit is contained in:
2026-08-14 20:45:07 -06:00
parent 91589ee647
commit 8e3b6a16bd
3 changed files with 47 additions and 8 deletions
+16 -5
View File
@@ -5,12 +5,22 @@ interface UseResizableWidthOptions {
defaultWidth: number
min: number
max: number
// 'right' (default): panel sits against the viewport's right edge, width
// is measured from the cursor to that edge -- a handle on the panel's
// LEFT edge drags naturally. 'left': panel sits against the left edge,
// width is just the cursor's x position -- a handle on the panel's RIGHT
// edge drags naturally.
anchor?: 'left' | 'right'
}
// Right-anchored resizable panel: width is the distance from the cursor to
// the viewport's right edge, so a handle on the panel's left edge drags
// naturally. Persists to localStorage so it survives a reload.
export function useResizableWidth({ storageKey, defaultWidth, min, max }: UseResizableWidthOptions) {
// Persists to localStorage so it survives a reload.
export function useResizableWidth({
storageKey,
defaultWidth,
min,
max,
anchor = 'right',
}: UseResizableWidthOptions) {
const [width, setWidth] = useState(() => {
const stored = Number(localStorage.getItem(storageKey))
return stored >= min && stored <= max ? stored : defaultWidth
@@ -22,7 +32,8 @@ export function useResizableWidth({ storageKey, defaultWidth, min, max }: UseRes
useEffect(() => {
function handleMove(e: PointerEvent<Window> | globalThis.PointerEvent) {
if (!draggingRef.current) return
const next = Math.min(max, Math.max(min, window.innerWidth - e.clientX))
const raw = anchor === 'left' ? e.clientX : window.innerWidth - e.clientX
const next = Math.min(max, Math.max(min, raw))
setWidth(next)
}
function handleUp() {