mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	* refactor: move/rename BanUserButton file * refactor: move/rename Chart file * refactor: update generic component filenames to PascalCase * refactor: update config component filenames to PascalCase * refactor: update AdminLayout component filename to PascalCase * refactor: update/move VideoJS component * chore(eslint): disable bad react/require-default-props rule * refactor: normalize ActionButton component * refactor: normalize ActionButtonRow component * refactor: normalize FollowButton component * refactor: normalize NotifyButton component * refactor: normalize ChatActionMessage component * refactor: normalize ChatContainer component * refactor: normalize ChatJoinMessage component * refactor: normalize ChatModerationActionMenu component * refactor: normalize ChatModerationDetailsModal component * refactor: normalize ChatModeratorNotification component * refactor: normalize ChatSocialMessage component * refactor: normalize ChatSystemMessage component * refactor: normalize ChatTextField component * refactor: normalize ChatUserBadge component * refactor: normalize ChatUserMessage component * refactor: normalize ContentHeader component * refactor: normalize OwncastLogo component * refactor: normalize UserDropdown component * chore(eslint): modify react/function-component-definition rule * refactor: normalize CodecSelector component * refactor: update a bunch of functional components using eslint * refactor: update a bunch of functional components using eslint, pt2 * refactor: update a bunch of functional components using eslint, pt3 * refactor: replace all component->component default imports with named imports * refactor: replace all component-stories->component default imports with named imports * refactor: remove default exports from most components * chore(eslint): add eslint config files for the components and pages dirs * fix: use-before-define error in ChatContainer * Fix ChatContainer import * Only process .tsx files in Next builds Co-authored-by: Gabe Kangas <gabek@real-ity.com>
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Table, Button } from 'antd';
 | 
						|
import format from 'date-fns/format';
 | 
						|
import { SortOrder } from 'antd/lib/table/interface';
 | 
						|
import React, { FC } from 'react';
 | 
						|
import { StopTwoTone } from '@ant-design/icons';
 | 
						|
import { User } from '../types/chat';
 | 
						|
import { BANNED_IP_REMOVE, fetchData } from '../utils/apis';
 | 
						|
 | 
						|
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"
 | 
						|
    />
 | 
						|
  );
 | 
						|
};
 |