Files
expo-popcore-app/lib/storage.ts
imeepos 24fd3a8847 feat: 完善认证系统
- 修复 Storage 层使用 AsyncStorage
- 统一 Token 存储键名为 bestaibest.better-auth.session_token
- 启用 401 自动跳转登录页并显示 Toast 提示
- 添加全局认证守卫(AuthGuard 组件)
- 修复 x-ownerid header 配置(从环境变量读取商户ID)
- 导出 loomart API 供活动数据使用

主要修改:
- lib/storage.native.ts: 新建,使用 AsyncStorage
- lib/storage.ts: 添加错误处理和注释
- lib/fetch-logger.ts: 统一 Token 键,启用 401 拦截
- lib/auth.ts: 导出 TOKEN_KEY,修复 x-ownerid,导出 loomart
- app/_layout.tsx: 添加 AuthGuard 组件实现路由守卫

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-13 16:00:02 +08:00

37 lines
998 B
TypeScript

/**
* Web平台存储实现 (使用 localStorage)
* Native平台会自动使用 storage.native.ts (使用 AsyncStorage)
*/
declare const window: any;
export const storage = {
async getItem(key: string): Promise<string | null> {
try {
if (typeof window === "undefined") return null;
return window.localStorage.getItem(key);
} catch (error) {
console.error(`[Storage] Error getting item "${key}":`, error);
return null;
}
},
async setItem(key: string, value: string): Promise<void> {
try {
if (typeof window === "undefined") return;
window.localStorage.setItem(key, value);
} catch (error) {
console.error(`[Storage] Error setting item "${key}":`, error);
}
},
async removeItem(key: string): Promise<void> {
try {
if (typeof window === "undefined") return;
window.localStorage.removeItem(key);
} catch (error) {
console.error(`[Storage] Error removing item "${key}":`, error);
}
},
};