Files
stats/apps/start/src/hooks/use-cookie-store.tsx
Carl-Gerhard Lindesvärd e505c0ea45 fix: max age on ui cookies
2025-11-12 15:10:12 +01:00

82 lines
2.3 KiB
TypeScript

import { useRouteContext } from '@tanstack/react-router';
import { createServerFn, createServerOnlyFn } from '@tanstack/react-start';
import { getCookies, setCookie } from '@tanstack/react-start/server';
import { pick } from 'ramda';
import { useEffect, useMemo, useRef, useState } from 'react';
import { z } from 'zod';
const VALID_COOKIES = [
'ui-theme',
'chartType',
'range',
'supporter-prompt-closed',
] as const;
const COOKIE_EVENT_NAME = '__cookie-change';
const setCookieFn = createServerFn({ method: 'POST' })
.inputValidator(z.object({ key: z.enum(VALID_COOKIES), value: z.string() }))
.handler(({ data: { key, value } }) => {
if (!VALID_COOKIES.includes(key)) {
return;
}
const maxAge = 60 * 60 * 24 * 365 * 10;
setCookie(key, value, {
maxAge,
path: '/',
expires: new Date(Date.now() + maxAge),
});
});
// Called in __root.tsx beforeLoad hook to get cookies from the server
// And recieved with useRouteContext in the client
export const getCookiesFn = createServerFn({ method: 'GET' }).handler(() =>
pick(VALID_COOKIES, getCookies()),
);
export function useCookieStore<T>(
key: (typeof VALID_COOKIES)[number],
defaultValue: T,
) {
const { cookies } = useRouteContext({ strict: false });
const [value, setValue] = useState<T>((cookies?.[key] ?? defaultValue) as T);
const ref = useRef(Math.random().toString(36).substring(7));
useEffect(() => {
const handleCookieChange = (
event: CustomEvent<{ key: string; value: T; from: string }>,
) => {
if (event.detail.key === key && event.detail.from !== ref.current) {
setValue(event.detail.value);
}
};
window.addEventListener(
COOKIE_EVENT_NAME,
handleCookieChange as EventListener,
);
return () => {
window.removeEventListener(
COOKIE_EVENT_NAME,
handleCookieChange as EventListener,
);
};
}, [key]);
return useMemo(
() =>
[
value,
(newValue: T) => {
setValue(newValue);
setCookieFn({ data: { key, value: String(newValue) } });
window.dispatchEvent(
new CustomEvent(COOKIE_EVENT_NAME, {
detail: { key, value: newValue, from: ref.current },
}),
);
},
] as const,
[value, key],
);
}