Files
klemek 765f3e1f8a
Docker Build / build (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled
feat: title as menu link and updated lists history
2026-07-16 11:47:35 +02:00

26 lines
686 B
TypeScript

import { ref } from "vue";
import { defineStore } from "pinia";
import { getCookie, setCookie } from "@/lib/cookies";
const COOKIE_NAME = "recent-lists";
const MAX_RECENT_LISTS = 32;
export const useListStore = defineStore("lists", () => {
const lists = ref<string[]>([]);
const rawData = getCookie(COOKIE_NAME, "");
if (rawData) {
lists.value = rawData.split(",");
}
function addList(list: string) {
lists.value = [list]
.concat(lists.value)
.filter((v, i, a) => a.indexOf(v) === i)
.slice(0, MAX_RECENT_LISTS);
setCookie(COOKIE_NAME, lists.value.join(","));
}
return { lists, addList };
});