fix active users not appear

This commit is contained in:
Ilham Syahid S
2022-03-27 11:02:18 +07:00
committed by GitHub
parent 2b4ddb5388
commit 4a484286db
2 changed files with 8 additions and 4 deletions

View File

@@ -9,14 +9,18 @@ import styles from './ActiveUsers.module.css';
export default function ActiveUsers({ websiteId, className, value, interval = 60000 }) {
const shareToken = useShareToken();
const url = value !== undefined && websiteId ? `/website/${websiteId}/active` : null;
const url = websiteId ? `/website/${websiteId}/active` : null;
const { data } = useFetch(url, {
interval,
headers: { [TOKEN_HEADER]: shareToken?.token },
});
const count = useMemo(() => {
return value || data?.[0]?.x || 0;
}, [data, value]);
if (websiteId) {
return data?.[0]?.x || 0
}
return value !== undefined ? value : 0;
}, [data, value, websiteId]);
if (count === 0) {
return null;