| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- import { useMemo, type ReactElement } from 'react';
- import { useTranslation } from 'react-i18next';
- import { Popover, Switch, Tag, Tooltip, type TableColumnType } from 'antd';
- import { TeamOutlined } from '@ant-design/icons';
- import { SizeFormatter, IntlUtil, ColorUtils } from '@/utils';
- import { InfinityIcon } from '@/components/ui';
- import { useDatepicker } from '@/hooks/useDatepicker';
- import type { NodeRecord } from '@/api/queries/useNodesQuery';
- import { coerceInboundJsonField } from '@/models/dbinbound';
- import { RowActionsCell } from './RowActions';
- import { SPEED_COLUMN_WIDTH, SPEED_TAG_CLASS_NAME, SPEED_TAG_STYLE } from '@/components/utility/speedTagStyle';
- import { InboundSpeedTag, isActiveSpeed } from './InboundSpeedTag';
- import {
- readStreamHints,
- networkLabel,
- networkL4,
- shadowsocksNetworkLabel,
- tunnelNetworkLabel,
- mixedNetworkLabel,
- } from './helpers';
- import type { ClientCountEntry, DBInboundRecord, InboundSpeedEntry, RowAction } from './types';
- interface UseInboundColumnsParams {
- hasAnyRemark: boolean;
- hasAnySubSortIndex: boolean;
- hasActiveNode: boolean;
- nodesById: Map<number, NodeRecord>;
- clientCount: Record<number, ClientCountEntry>;
- inboundSpeed: Record<number, InboundSpeedEntry>;
- subEnable: boolean;
- expireDiff: number;
- trafficDiff: number;
- onRowAction: (action: { key: RowAction; dbInbound: DBInboundRecord }) => void;
- onSwitchEnable: (dbInbound: DBInboundRecord, next: boolean) => void;
- }
- export function useInboundColumns({
- hasAnyRemark,
- hasAnySubSortIndex,
- hasActiveNode,
- nodesById,
- clientCount,
- inboundSpeed,
- subEnable,
- expireDiff,
- trafficDiff,
- onRowAction,
- onSwitchEnable,
- }: UseInboundColumnsParams): TableColumnType<DBInboundRecord>[] {
- const { t } = useTranslation();
- const { datepicker } = useDatepicker();
- return useMemo(() => {
- const compareText = (a: string | undefined | null, b: string | undefined | null) => (
- (a || '').localeCompare(b || '', undefined, { numeric: true, sensitivity: 'base' })
- );
- const nodeName = (record: DBInboundRecord) => {
- if (record.nodeId == null) return t('pages.inbounds.localPanel');
- return nodesById.get(record.nodeId)?.name || `node #${record.nodeId}`;
- };
- const clientTotal = (record: DBInboundRecord) => (
- (clientCount[record.id] || fallbackClientCount(record))?.clients ?? 0
- );
- const speedTotal = (record: DBInboundRecord) => {
- const speed = inboundSpeed[record.id];
- return speed ? speed.up + speed.down : 0;
- };
- const expirySortValue = (record: DBInboundRecord) => (
- record.expiryTime > 0 ? record.expiryTime : Number.MAX_SAFE_INTEGER
- );
- const fallbackClientCount = (record: DBInboundRecord): ClientCountEntry | null => {
- const settings = coerceInboundJsonField(record.settings) as {
- clients?: { email?: string; enable?: boolean }[];
- };
- const clients = Array.isArray(settings.clients) ? settings.clients : [];
- if (clients.length === 0) return null;
- const active = clients
- .filter((client) => client.email && client.enable !== false)
- .map((client) => client.email!);
- const deactive = clients
- .filter((client) => client.email && client.enable === false)
- .map((client) => client.email!);
- return {
- clients: clients.length,
- active,
- deactive,
- depleted: [],
- expiring: [],
- online: [],
- };
- };
- const cols: TableColumnType<DBInboundRecord>[] = [
- {
- title: 'ID',
- dataIndex: 'id',
- key: 'id',
- align: 'right',
- width: 60,
- sorter: (a, b) => a.id - b.id,
- },
- {
- title: t('pages.inbounds.operate'),
- key: 'action',
- align: 'center',
- width: 70,
- render: (_, record) => (
- <RowActionsCell
- record={record}
- subEnable={subEnable}
- hasClients={(clientCount[record.id]?.clients || 0) > 0}
- onClick={(key) => onRowAction({ key, dbInbound: record })}
- />
- ),
- },
- {
- title: t('pages.inbounds.enable'),
- key: 'enable',
- align: 'center',
- width: 80,
- render: (_, record) => (
- <Switch
- checked={record.enable}
- onChange={(next) => onSwitchEnable(record, next)}
- />
- ),
- },
- ];
- if (hasAnyRemark) {
- cols.push({
- title: t('pages.inbounds.remark'),
- dataIndex: 'remark',
- key: 'remark',
- align: 'center',
- width: 90,
- sorter: (a, b) => compareText(a.remark, b.remark),
- });
- }
- if (hasActiveNode) {
- cols.push({
- title: t('pages.inbounds.node'),
- key: 'node',
- align: 'center',
- width: 130,
- sorter: (a, b) => compareText(nodeName(a), nodeName(b)),
- render: (_, record) => {
- if (record.nodeId == null) {
- return <Tag color="default">{t('pages.inbounds.localPanel')}</Tag>;
- }
- const node = nodesById.get(record.nodeId);
- if (!node) {
- return <Tag color="orange">node #{record.nodeId}</Tag>;
- }
- return (
- <Tag color={node.status === 'online' ? 'blue' : 'red'}>{node.name}</Tag>
- );
- },
- });
- }
- if (hasAnySubSortIndex) {
- cols.push({
- title: (
- <Tooltip title={t('pages.inbounds.form.subSortIndex')}>
- {t('pages.inbounds.subSortIndex')}
- </Tooltip>
- ),
- dataIndex: 'subSortIndex',
- key: 'subSortIndex',
- align: 'right',
- width: 90,
- sorter: (a, b) => (a.subSortIndex ?? 1) - (b.subSortIndex ?? 1),
- });
- }
- cols.push(
- {
- title: t('pages.inbounds.port'),
- dataIndex: 'port',
- key: 'port',
- align: 'center',
- width: 80,
- sorter: (a, b) => a.port - b.port,
- },
- {
- title: t('pages.inbounds.protocol'),
- key: 'protocol',
- align: 'left',
- width: 190,
- sorter: (a, b) => compareText(a.protocol, b.protocol),
- render: (_, record) => {
- const tags: ReactElement[] = [<Tag key="p" color="purple">{record.protocol}</Tag>];
- if (record.isWireguard || record.isHysteria) {
- tags.push(<Tag key="n" color="green">UDP</Tag>);
- } else if (record.isSS) {
- const stream = readStreamHints(record.streamSettings);
- tags.push(<Tag key="n" color="green">{shadowsocksNetworkLabel(record.settings)}</Tag>);
- if (stream.isTls) tags.push(<Tag key="tls" color="blue">TLS</Tag>);
- } else if (record.isTunnel) {
- tags.push(<Tag key="n" color="green">{tunnelNetworkLabel(record.settings)}</Tag>);
- } else if (record.isMixed) {
- tags.push(<Tag key="n" color="green">{mixedNetworkLabel(record.settings)}</Tag>);
- } else if (record.isVMess || record.isVLess || record.isTrojan) {
- const stream = readStreamHints(record.streamSettings);
- tags.push(<Tag key="n" color="green">{networkLabel(stream.network)}</Tag>);
- const l4 = networkL4(stream.network);
- if (l4) tags.push(<Tag key="l4" color="green">{l4}</Tag>);
- if (stream.isTls) tags.push(<Tag key="tls" color="blue">TLS</Tag>);
- if (stream.isReality) tags.push(<Tag key="reality" color="blue">Reality</Tag>);
- }
- return <div className="protocol-tags">{tags}</div>;
- },
- },
- {
- title: t('clients'),
- key: 'clients',
- align: 'left',
- width: 200,
- sorter: (a, b) => clientTotal(a) - clientTotal(b),
- render: (_, record) => {
- const cc = clientCount[record.id] || fallbackClientCount(record);
- if (!cc) return null;
- return (
- <>
- <Tag className="client-count-tag" style={{ margin: 0, marginRight: 4, padding: '0 2px' }}>
- <TeamOutlined /> {cc.clients}
- </Tag>
- {cc.active.length > 0 ? (
- <Popover
- title={t('subscription.active')}
- content={(
- <div className="client-email-list">
- {cc.active.map((e) => <div key={e}>{e}</div>)}
- </div>
- )}
- >
- <Tag color="green" className="client-count-tag" style={{ margin: 0, marginRight: 4, padding: '0 2px' }}>{cc.active.length}</Tag>
- </Popover>
- ) : (
- <Tag color="green" className="client-count-tag" style={{ margin: 0, marginRight: 4, padding: '0 2px' }}>0</Tag>
- )}
- {cc.deactive.length > 0 && (
- <Popover
- title={t('disabled')}
- content={(
- <div className="client-email-list">
- {cc.deactive.map((e) => <div key={e}>{e}</div>)}
- </div>
- )}
- >
- <Tag className="client-count-tag" style={{ margin: 0, marginRight: 4, padding: '0 2px' }}>{cc.deactive.length}</Tag>
- </Popover>
- )}
- {cc.depleted.length > 0 && (
- <Popover
- title={t('depleted')}
- content={(
- <div className="client-email-list">
- {cc.depleted.map((e) => <div key={e}>{e}</div>)}
- </div>
- )}
- >
- <Tag color="red" className="client-count-tag" style={{ margin: 0, marginRight: 4, padding: '0 2px' }}>{cc.depleted.length}</Tag>
- </Popover>
- )}
- {cc.online.length > 0 && (
- <Popover
- title={t('online')}
- content={(
- <div className="client-email-list">
- {cc.online.map((e) => <div key={e}>{e}</div>)}
- </div>
- )}
- >
- <Tag color="blue" className="client-count-tag" style={{ margin: 0, padding: '0 2px' }}>{cc.online.length}</Tag>
- </Popover>
- )}
- </>
- );
- },
- },
- {
- title: t('pages.inbounds.traffic'),
- key: 'traffic',
- align: 'center',
- width: 140,
- sorter: (a, b) => (a.up + a.down) - (b.up + b.down),
- render: (_, record) => (
- <Popover
- content={(
- <table cellPadding={2}>
- <tbody>
- <tr>
- <td>↑ {SizeFormatter.sizeFormat(record.up)}</td>
- <td>↓ {SizeFormatter.sizeFormat(record.down)}</td>
- </tr>
- {record.total > 0 && record.up + record.down < record.total && (
- <tr>
- <td>{t('remained')}</td>
- <td>{SizeFormatter.sizeFormat(record.total - record.up - record.down)}</td>
- </tr>
- )}
- </tbody>
- </table>
- )}
- >
- <Tag color={ColorUtils.usageColor(record.up + record.down, trafficDiff, record.total)}>
- {SizeFormatter.sizeFormat(record.up + record.down)} /
- {' '}
- {record.total > 0 ? SizeFormatter.sizeFormat(record.total) : <InfinityIcon />}
- </Tag>
- </Popover>
- ),
- },
- {
- title: t('pages.inbounds.speed'),
- key: 'speed',
- align: 'center',
- width: SPEED_COLUMN_WIDTH,
- sorter: (a, b) => speedTotal(a) - speedTotal(b),
- render: (_, record) => {
- const speed = inboundSpeed[record.id];
- if (!isActiveSpeed(speed)) {
- return <Tag color="default" className={SPEED_TAG_CLASS_NAME} style={SPEED_TAG_STYLE}>—</Tag>;
- }
- return <InboundSpeedTag speed={speed} withTooltip tableCell />;
- },
- },
- {
- title: t('pages.inbounds.expireDate'),
- key: 'expiryTime',
- align: 'center',
- width: 100,
- sorter: (a, b) => expirySortValue(a) - expirySortValue(b),
- render: (_, record) => {
- if (record.expiryTime > 0) {
- return (
- <Popover content={IntlUtil.formatDate(record.expiryTime, datepicker)}>
- <Tag color={ColorUtils.usageColor(Date.now(), expireDiff, record._expiryTime)} style={{ minWidth: 50 }}>
- {IntlUtil.formatRelativeTime(record.expiryTime)}
- </Tag>
- </Popover>
- );
- }
- return <Tag color="purple"><InfinityIcon /></Tag>;
- },
- },
- );
- return cols;
- }, [t, hasAnyRemark, hasAnySubSortIndex, hasActiveNode, nodesById, clientCount, inboundSpeed, subEnable, expireDiff, trafficDiff, datepicker, onRowAction, onSwitchEnable]);
- }
|