File size: 709 Bytes
73a8db9
 
 
 
 
 
 
 
 
 
 
 
9b4caaa
 
73a8db9
 
 
 
 
 
 
9b4caaa
 
 
73a8db9
 
 
 
9b4caaa
73a8db9
 
9b4caaa
73a8db9
 
 
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
import { safeParse } from "$lib/utils/json.js";
import typia from "typia";

const key = "hf_token";

class Token {
	#value = $state("");
	writeToLocalStorage = $state(true);
	showModal = $state(false);

	constructor() {
		const storedHfToken = localStorage.getItem(key);
		const parsed = safeParse(storedHfToken ?? "");
		this.value = typia.is<string>(parsed) ? parsed : "";
	}

	get value() {
		return this.#value;
	}

	set value(token: string) {
		if (this.writeToLocalStorage) {
			localStorage.setItem(key, JSON.stringify(token));
		}
		this.#value = token;
		this.showModal = !token.length;
	}

	reset = () => {
		this.value = "";
		localStorage.removeItem(key);
	};
}

export const token = new Token();