Files
cstb-next/src/app/(main)/preference/general/page.tsx
2025-03-23 23:29:15 +08:00

36 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client"
import { useAppStore } from "@/store/app"
import { Switch } from "@heroui/react"
import { enable, isEnabled, disable } from "@tauri-apps/plugin-autostart"
import { useEffect, useState } from "react"
export default function Page() {
const app = useAppStore()
const [autoStartEnabled, setAutoStartEnabled] = useState(false)
useEffect(() => {
void isEnabled().then(setAutoStartEnabled)
}, [])
return (
<div className="flex flex-col items-start gap-3 pt-2 pb-1">
<p>{app.state.version}</p>
<p>{app.state.hasUpdate ? "有" : "无"}</p>
<p>使{app.state.useMirror ? "是" : "否"}</p>
<Switch
checked={autoStartEnabled}
size="sm"
onChange={(e) => {
if (e.target.checked) {
void enable().then(() => setAutoStartEnabled(true))
} else {
void disable().then(() => setAutoStartEnabled(false))
}
}}
>
</Switch>
</div>
)
}