mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-14 09:38:13 +08:00
📦 fix(ck): cookie 用 store 来存
This commit is contained in:
@@ -140,6 +140,7 @@
|
|||||||
// vue
|
// vue
|
||||||
import { onMounted, ref } from "vue";
|
import { onMounted, ref } from "vue";
|
||||||
import { getBuildTime } from "../utils/TGBuild";
|
import { getBuildTime } from "../utils/TGBuild";
|
||||||
|
|
||||||
import TLoading from "../components/t-loading.vue";
|
import TLoading from "../components/t-loading.vue";
|
||||||
import TConfirm from "../components/t-confirm.vue";
|
import TConfirm from "../components/t-confirm.vue";
|
||||||
// tauri
|
// tauri
|
||||||
@@ -147,6 +148,7 @@ import { dialog, fs, app, os, tauri } from "@tauri-apps/api";
|
|||||||
// store
|
// store
|
||||||
import { useAppStore } from "../store/modules/app";
|
import { useAppStore } from "../store/modules/app";
|
||||||
import { useHomeStore } from "../store/modules/home";
|
import { useHomeStore } from "../store/modules/home";
|
||||||
|
import { useHk4eStore } from "../store/modules/hk4e";
|
||||||
import { useAchievementsStore } from "../store/modules/achievements";
|
import { useAchievementsStore } from "../store/modules/achievements";
|
||||||
// utils
|
// utils
|
||||||
import { WriteTGData } from "../utils/TGIndex";
|
import { WriteTGData } from "../utils/TGIndex";
|
||||||
@@ -172,6 +174,7 @@ const loading = ref(true as boolean);
|
|||||||
|
|
||||||
// data
|
// data
|
||||||
const showHome = ref(homeStore.getShowValue() as string[]);
|
const showHome = ref(homeStore.getShowValue() as string[]);
|
||||||
|
const hk4eStore = useHk4eStore();
|
||||||
|
|
||||||
// snackbar
|
// snackbar
|
||||||
const snackbar = ref(false as boolean);
|
const snackbar = ref(false as boolean);
|
||||||
@@ -329,9 +332,10 @@ function submitHome () {
|
|||||||
|
|
||||||
// 获取 Cookie
|
// 获取 Cookie
|
||||||
async function readCookie () {
|
async function readCookie () {
|
||||||
|
const cookie = hk4eStore.getCookie();
|
||||||
// todo 验证 cookie 是否有效
|
// todo 验证 cookie 是否有效
|
||||||
const cookie = await tauri.invoke("read_cookie") as string || document.cookie;
|
const tryReadCookie = await tauri.invoke("read_cookie") as string || cookie;
|
||||||
if (cookie === null || cookie === "") {
|
if (cookie === null || tryReadCookie === "") {
|
||||||
snackbarText.value = "Cookie 为空!";
|
snackbarText.value = "Cookie 为空!";
|
||||||
snackbarColor.value = "error";
|
snackbarColor.value = "error";
|
||||||
snackbar.value = true;
|
snackbar.value = true;
|
||||||
@@ -339,10 +343,9 @@ async function readCookie () {
|
|||||||
snackbarText.value = "Cookie 获取成功!";
|
snackbarText.value = "Cookie 获取成功!";
|
||||||
snackbarColor.value = "success";
|
snackbarColor.value = "success";
|
||||||
snackbar.value = true;
|
snackbar.value = true;
|
||||||
alert(cookie);
|
hk4eStore.setCookie(tryReadCookie);
|
||||||
|
alert(`Cookie 获取成功!\n\n${tryReadCookie}`);
|
||||||
}
|
}
|
||||||
// 将 cookie 保存到本地
|
|
||||||
document.cookie = cookie;
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
54
src/store/modules/hk4e.ts
Normal file
54
src/store/modules/hk4e.ts
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
/**
|
||||||
|
* @file store modules hk4e.ts
|
||||||
|
* @description store modules hk4e.ts
|
||||||
|
* @author BTMuli<outlook.com>
|
||||||
|
* @since Alpha v0.1.2
|
||||||
|
*/
|
||||||
|
|
||||||
|
// vue
|
||||||
|
import { ref } from "vue";
|
||||||
|
// pinia
|
||||||
|
import { defineStore } from "pinia";
|
||||||
|
|
||||||
|
export const useHk4eStore = defineStore(
|
||||||
|
"hk4e",
|
||||||
|
() => {
|
||||||
|
// cookie
|
||||||
|
const cookie = ref("");
|
||||||
|
// 解析后的 cookie
|
||||||
|
const cookieParsed = ref<Record<string, string>>({});
|
||||||
|
|
||||||
|
// getCookie
|
||||||
|
function getCookie (): string {
|
||||||
|
return cookie.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取具体的 cookie
|
||||||
|
function getCookieItem (key: string): string {
|
||||||
|
return cookieParsed.value[key];
|
||||||
|
}
|
||||||
|
|
||||||
|
// setCookie
|
||||||
|
function setCookie (value: string): void {
|
||||||
|
cookie.value = value;
|
||||||
|
// 解析 cookie
|
||||||
|
const cookieObj: Record<string, string> = {};
|
||||||
|
value.split(";").forEach((item) => {
|
||||||
|
const [key, value] = item.split("=");
|
||||||
|
cookieObj[key.trim()] = value;
|
||||||
|
});
|
||||||
|
// 保存 cookie
|
||||||
|
localStorage.setItem("hk4eCookie", JSON.stringify(cookieObj));
|
||||||
|
cookieParsed.value = cookieObj;
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
getCookie,
|
||||||
|
setCookie,
|
||||||
|
getCookieItem,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
{
|
||||||
|
persist: true,
|
||||||
|
},
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user