作为 OIDC Provider 对接 Gitea;注册支持邮件验证码/验证码;侧栏同步公开仓库;Feed 分页、文章大纲、标签云与站点品牌设置。 Co-authored-by: Cursor <cursoragent@cursor.com>
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { api } from '../api/client';
|
|
import type { ForumLimitsPublic } from '../api/types';
|
|
|
|
const DEFAULT_LIMITS: ForumLimitsPublic = {
|
|
post_title_max: 128,
|
|
post_tags_max: 256,
|
|
post_content_max: 50000,
|
|
comment_max: 5000,
|
|
search_keyword_min: 1,
|
|
search_keyword_max: 50,
|
|
page_size_default: 30,
|
|
password_min_len: 6,
|
|
avatar_max_mb: 2,
|
|
open_posts_in_new_tab: true,
|
|
open_content_links_in_new_tab: true,
|
|
};
|
|
|
|
let cached: ForumLimitsPublic | null = null;
|
|
let inflight: Promise<ForumLimitsPublic> | null = null;
|
|
let cacheEpoch = 0;
|
|
const listeners = new Set<() => void>();
|
|
|
|
function fetchLimits(): Promise<ForumLimitsPublic> {
|
|
if (cached) return Promise.resolve(cached);
|
|
if (inflight) return inflight;
|
|
inflight = api.forumLimits()
|
|
.then(limits => {
|
|
cached = limits;
|
|
return limits;
|
|
})
|
|
.catch(() => cached ?? DEFAULT_LIMITS)
|
|
.finally(() => { inflight = null; });
|
|
return inflight;
|
|
}
|
|
|
|
/** 获取前台可见的论坛限制配置 */
|
|
export function useForumLimits() {
|
|
const [limits, setLimits] = useState<ForumLimitsPublic>(cached ?? DEFAULT_LIMITS);
|
|
const [loading, setLoading] = useState(!cached);
|
|
const [epoch, setEpoch] = useState(cacheEpoch);
|
|
|
|
useEffect(() => {
|
|
const onInvalidate = () => setEpoch(cacheEpoch);
|
|
listeners.add(onInvalidate);
|
|
return () => { listeners.delete(onInvalidate); };
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
let cancelled = false;
|
|
// 无缓存时显示加载中,避免首页用默认 30/300 误拉全量
|
|
if (!cached) setLoading(true);
|
|
fetchLimits()
|
|
.then(next => {
|
|
if (!cancelled) setLimits(next);
|
|
})
|
|
.finally(() => {
|
|
if (!cancelled) setLoading(false);
|
|
});
|
|
return () => { cancelled = true; };
|
|
}, [epoch]);
|
|
|
|
return { limits, loading };
|
|
}
|
|
|
|
/** 清除缓存并通知已挂载的 hook 重新拉取 */
|
|
export function invalidateForumLimitsCache() {
|
|
cached = null;
|
|
cacheEpoch += 1;
|
|
listeners.forEach(fn => fn());
|
|
}
|