mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
44eafe69ac
* fix(deps): update dependency date-fns to v3 * fix(deps): update usage of date-fns format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
import { Table, Button } from 'antd';
|
|
import { SortOrder } from 'antd/lib/table/interface';
|
|
import { format } from 'date-fns';
|
|
import React, { FC } from 'react';
|
|
import dynamic from 'next/dynamic';
|
|
import { User } from '../../types/chat';
|
|
import { BANNED_IP_REMOVE, fetchData } from '../../utils/apis';
|
|
|
|
// Lazy loaded components
|
|
|
|
const StopTwoTone = dynamic(() => import('@ant-design/icons/StopTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
function formatDisplayDate(date: string | Date) {
|
|
return format(new Date(date), 'MMM d H:mma');
|
|
}
|
|
|
|
async function removeIPAddressBan(ipAddress: String) {
|
|
try {
|
|
await fetchData(BANNED_IP_REMOVE, {
|
|
data: { value: ipAddress },
|
|
method: 'POST',
|
|
auth: true,
|
|
});
|
|
} catch (e) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(e);
|
|
}
|
|
}
|
|
|
|
export type UserTableProps = {
|
|
data: User[];
|
|
};
|
|
|
|
export const BannedIPsTable: FC<UserTableProps> = ({ data }) => {
|
|
const columns = [
|
|
{
|
|
title: 'IP Address',
|
|
dataIndex: 'ipAddress',
|
|
key: 'ipAddress',
|
|
},
|
|
{
|
|
title: 'Reason',
|
|
dataIndex: 'notes',
|
|
key: 'notes',
|
|
},
|
|
{
|
|
title: 'Created',
|
|
dataIndex: 'createdAt',
|
|
key: 'createdAt',
|
|
render: (date: Date) => formatDisplayDate(date),
|
|
sorter: (a: any, b: any) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime(),
|
|
sortDirections: ['descend', 'ascend'] as SortOrder[],
|
|
},
|
|
{
|
|
title: '',
|
|
key: 'block',
|
|
className: 'actions-col',
|
|
render: (_, ip) => (
|
|
<Button
|
|
title="Remove IP Address Ban"
|
|
onClick={() => removeIPAddressBan(ip.ipAddress)}
|
|
icon={<StopTwoTone twoToneColor="#ff4d4f" />}
|
|
className="block-user-button"
|
|
/>
|
|
),
|
|
},
|
|
];
|
|
|
|
return (
|
|
<Table
|
|
pagination={{ hideOnSinglePage: true }}
|
|
className="table-container"
|
|
columns={columns}
|
|
dataSource={data}
|
|
size="large"
|
|
rowKey="ipAddress"
|
|
/>
|
|
);
|
|
};
|