InfoLens / client /src /shared /cross /onlineCountDisplay.ts
dqy08's picture
增加「当前在线人数」估计
3c2da0a
Raw
History Blame Contribute Delete
514 Bytes
/**
* 页头在线人数(由 client-activity 响应更新 #online_count_value)
*/
const VALUE_ID = 'online_count_value';
export function initOnlineCountDisplay(): void {
const el = document.getElementById(VALUE_ID);
if (el && !el.textContent?.trim()) el.textContent = '—';
}
export function applyOnlineCount(n: unknown): void {
const el = document.getElementById(VALUE_ID);
if (!el) return;
el.textContent =
typeof n === 'number' && Number.isFinite(n) ? String(n) : '—';
}