Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 3x 3x 3x 5x 3x 3x 3x 3x 3x 2x 2x 2x 2x | import { create } from 'zustand';
import { type Nick } from '../../domain/model/Nick';
const STORAGE_KEY = 'nick-history';
function loadHistory(): Nick[] {
try {
return JSON.parse(localStorage.getItem(STORAGE_KEY) || '[]');
} catch {
return [];
}
}
function saveHistory(history: Nick[]) {
localStorage.setItem(STORAGE_KEY, JSON.stringify(history));
}
interface NickHistoryState {
history: Nick[];
addNick: (nick: Nick) => void;
removeNick: (nick: Nick) => void;
}
export const useNickHistoryStore = create<NickHistoryState>((set) => ({
history: loadHistory(),
addNick: (nick: Nick) =>
set(state => {
const updated = [nick, ...state.history].slice(0, 20);
saveHistory(updated);
return { history: updated };
}),
removeNick: (nick: Nick) => {
set(state => {
const updated = state.history.filter(n => n.id !== nick.id);
saveHistory(updated);
return { history: updated };
});
}
}));
|