第一次提交

This commit is contained in:
xiaoxiao
2025-05-09 15:47:54 +08:00
parent 25e596b591
commit f9d7986df0
357 changed files with 26943 additions and 0 deletions
+73
View File
@@ -0,0 +1,73 @@
import { preferences } from '@kit.ArkData'
import { router } from '@kit.ArkUI'
import { Data } from '../models/LoginInfoModel'
export interface HdUser {
id: string
username: string
avatar: string
token: string
refreshToken: string
nickName?: string
totalTime?: number
clockinNumbers?: number
}
export const AUTH_STORE_KEY = 'authStore'
class AuthStore {
store: preferences.Preferences | null = null
getStore() {
if (!this.store) {
this.store = preferences.getPreferencesSync(getContext(), { name: AUTH_STORE_KEY })
}
return this.store
}
async setUser(user: Data) {
AppStorage.setOrCreate('user', user)
await this.getStore().put(AUTH_STORE_KEY, JSON.stringify(user))
await this.getStore().flush()
}
async delUser() {
AppStorage.setOrCreate('user', {})
await this.getStore().put(AUTH_STORE_KEY, '{}')
await this.getStore().flush()
}
initUser() {
const json = this.getStore().getSync(AUTH_STORE_KEY, '{}') as string
AppStorage.setOrCreate('user', JSON.parse(json))
}
getUser() {
return AppStorage.get<Data>('user') || {} as Data
}
checkAuth(options: router.RouterOptions | Function) {
// if (this.getUser().token) {
// if (typeof options === 'function') {
// options()
// } else {
// router.pushUrl(options)
// }
// } else {
// if (typeof options === 'function') {
// router.pushUrl({
// url: 'pages/LoginPage',
// })
// } else {
// const params = options.params as Record<string, string> || {}
// params.return_path = options.url
// router.pushUrl({
// url: 'pages/LoginPage',
// params: params
// })
// }
// }
}
}
export const authStore = new AuthStore()