feat(pages): 添加文章和商品详情页及API代理配置
- 添加了.dockerignore、.env.example和.gitignore配置文件 - 实现了文件服务器、模块API和服务器API的代理功能 - 创建了动态路由页面用于展示文章列表和详情 - 实现了商品详情页面包括图片展示和价格信息 - 添加了静态页面展示功能支持富文本内容渲染 - 配置了SEO元数据和面包屑导航组件
This commit is contained in:
42
app/utils/token-util.ts
Normal file
42
app/utils/token-util.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
const TOKEN_KEY = 'AccessToken'
|
||||
const TOKEN_EVENT = 'auth-token-changed'
|
||||
|
||||
function notifyTokenChange() {
|
||||
if (!import.meta.client) return
|
||||
try {
|
||||
window.dispatchEvent(new Event(TOKEN_EVENT))
|
||||
} catch {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
export function setToken(token?: string, remember?: boolean) {
|
||||
if (!token || !import.meta.client) return
|
||||
try {
|
||||
const storage = remember ? localStorage : sessionStorage
|
||||
storage.setItem(TOKEN_KEY, token)
|
||||
notifyTokenChange()
|
||||
} catch {
|
||||
// ignore storage errors
|
||||
}
|
||||
}
|
||||
|
||||
export function getToken() {
|
||||
if (!import.meta.client) return ''
|
||||
try {
|
||||
return localStorage.getItem(TOKEN_KEY) || sessionStorage.getItem(TOKEN_KEY) || ''
|
||||
} catch {
|
||||
return ''
|
||||
}
|
||||
}
|
||||
|
||||
export function removeToken() {
|
||||
if (!import.meta.client) return
|
||||
try {
|
||||
localStorage.removeItem(TOKEN_KEY)
|
||||
sessionStorage.removeItem(TOKEN_KEY)
|
||||
notifyTokenChange()
|
||||
} catch {
|
||||
// ignore storage errors
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user