mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 10:55:57 +08:00
* Added changes for fix 4044 * Fixed spacing issue --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com>
151 lines
4.1 KiB
TypeScript
151 lines
4.1 KiB
TypeScript
import React, { useState, useEffect, useContext, ReactElement } from 'react';
|
|
import { Tabs } from 'antd';
|
|
import { useTranslation } from 'next-export-i18n';
|
|
import Link from 'antd/lib/typography/Link';
|
|
import Text from 'antd/lib/typography/Text';
|
|
import { ServerStatusContext } from '../../../utils/server-status-context';
|
|
import {
|
|
CONNECTED_CLIENTS,
|
|
fetchData,
|
|
DISABLED_USERS,
|
|
MODERATORS,
|
|
BANNED_IPS,
|
|
} from '../../../utils/apis';
|
|
import { UserTable } from '../../../components/admin/UserTable';
|
|
import { ClientTable } from '../../../components/admin/ClientTable';
|
|
import { BannedIPsTable } from '../../../components/admin/BannedIPsTable';
|
|
|
|
import { AdminLayout } from '../../../components/layouts/AdminLayout';
|
|
|
|
export const FETCH_INTERVAL = 10 * 1000; // 10 sec
|
|
|
|
export default function ChatUsers() {
|
|
const context = useContext(ServerStatusContext);
|
|
const { online } = context || {};
|
|
|
|
const [disabledUsers, setDisabledUsers] = useState([]);
|
|
const [ipBans, setIPBans] = useState([]);
|
|
const [clients, setClients] = useState([]);
|
|
const [moderators, setModerators] = useState([]);
|
|
const { t } = useTranslation();
|
|
|
|
const getInfo = async () => {
|
|
try {
|
|
const result = await fetchData(DISABLED_USERS);
|
|
setDisabledUsers(result);
|
|
} catch (error) {
|
|
console.log('==== error', error);
|
|
}
|
|
|
|
try {
|
|
const result = await fetchData(CONNECTED_CLIENTS);
|
|
setClients(result);
|
|
} catch (error) {
|
|
console.log('==== error', error);
|
|
}
|
|
|
|
try {
|
|
const result = await fetchData(MODERATORS);
|
|
setModerators(result);
|
|
} catch (error) {
|
|
console.error('error fetching moderators', error);
|
|
}
|
|
|
|
try {
|
|
const result = await fetchData(BANNED_IPS);
|
|
setIPBans(result);
|
|
} catch (error) {
|
|
console.error('error fetching banned ips', error);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
let getStatusIntervalId = null;
|
|
|
|
getInfo();
|
|
|
|
getStatusIntervalId = setInterval(getInfo, FETCH_INTERVAL);
|
|
// returned function will be called on component unmount
|
|
return () => {
|
|
clearInterval(getStatusIntervalId);
|
|
};
|
|
}, [online]);
|
|
|
|
const connectedUsers = online ? (
|
|
<>
|
|
<ClientTable data={clients} />
|
|
<p className="description">
|
|
{t('Visit the')}{' '}
|
|
<a
|
|
href="https://owncast.online/docs/viewers/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('documentation')}
|
|
</a>{' '}
|
|
{t('to configure additional details about your viewers.')}
|
|
</p>
|
|
</>
|
|
) : (
|
|
<p className="description">
|
|
{t(
|
|
'When a stream is active and chat is enabled, connected chat clients will be displayed here.',
|
|
)}
|
|
</p>
|
|
);
|
|
|
|
const connectedUserTabTitle = (
|
|
<span>
|
|
{t('Connected')} ({online ? clients.length : t('offline')})
|
|
</span>
|
|
);
|
|
|
|
const bannedUsersTabTitle = (
|
|
<span>
|
|
{t('Banned Users')} ({disabledUsers.length})
|
|
</span>
|
|
);
|
|
const bannedUsersTable = <UserTable data={disabledUsers} />;
|
|
|
|
const bannedIPTabTitle = (
|
|
<span>
|
|
{t('IP Bans')} ({ipBans.length})
|
|
</span>
|
|
);
|
|
const bannedIpTable = <BannedIPsTable data={ipBans} />;
|
|
|
|
const moderatorUsersTabTitle = (
|
|
<span>
|
|
{t('Moderators')} ({moderators.length})
|
|
</span>
|
|
);
|
|
const moderatorTable = (
|
|
<>
|
|
<p>
|
|
<Text type="secondary"> {t('Bring in moderators to help keep your chat in order.')} </Text>
|
|
<Link
|
|
href="https://owncast.online/docs/chat/moderation/"
|
|
rel="noopener noreferrer"
|
|
target="_blank"
|
|
>
|
|
{t('Learn more about chat moderation here.')}
|
|
</Link>
|
|
</p>
|
|
<UserTable data={moderators} />
|
|
</>
|
|
);
|
|
|
|
const items = [
|
|
{ label: connectedUserTabTitle, key: '1', children: connectedUsers },
|
|
{ label: bannedUsersTabTitle, key: '2', children: bannedUsersTable },
|
|
{ label: bannedIPTabTitle, key: '3', children: bannedIpTable },
|
|
{ label: moderatorUsersTabTitle, key: '4', children: moderatorTable },
|
|
];
|
|
|
|
return <Tabs defaultActiveKey="1" items={items} />;
|
|
}
|
|
|
|
ChatUsers.getLayout = function getLayout(page: ReactElement) {
|
|
return <AdminLayout page={page} />;
|
|
};
|