mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
25 lines
500 B
JavaScript
25 lines
500 B
JavaScript
"use client";
|
|
import { create } from "zustand";
|
|
import { persist, createJSONStorage } from "zustand/middleware";
|
|
|
|
function saveSettings(dict) {
|
|
localStorage.setItem("settings", JSON.stringify(dict));
|
|
}
|
|
|
|
function loadSettings() {
|
|
return JSON.parse(localStorage.getItem("settings"));
|
|
}
|
|
|
|
export const useSettingsStore = create(
|
|
persist(
|
|
(set, get) => ({
|
|
saveToHistory: true,
|
|
setSettings: (dict) => {
|
|
set(dict);
|
|
},
|
|
}),
|
|
{
|
|
name: "settings",
|
|
},
|
|
),
|
|
);
|