mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-13 14:50:59 +00:00
93eda06878
Persistent client groups
- New ClientGroup model + client_groups table that holds empty
(placeholder) groups so a user can define a label before any client
references it. ListGroups merges these with the distinct group_name
values already stored on clients and reports {name, clientCount}.
- ClientRecord gains group_name column; the model.Client wire shape
gains a matching `group` JSON field that survives the
inbound.settings → SyncInbound round-trip.
- Rename/Delete on a group mutates client_groups (rename row / delete
row) AND propagates to all matching clients in ClientRecord and in
every owning inbound's settings JSON, all in one transaction.
Bulk operations
- AssignGroup(emails, group) updates clients.group_name + patches each
affected inbound's settings JSON in one read-modify-write per inbound.
Empty group clears the label. Auto-creates the client_groups row when
the user assigns to a brand-new name.
- BulkResetTraffic(emails) loops the existing single-reset path so the
caller can zero traffic across a whole selection or a whole group.
- EmailsByGroup(name) returns just the email list (used by the groups
page to fan a single bulk action over every member).
Endpoints (all under /panel/api/clients)
- GET /groups — summaries with counts
- GET /groups/:name/emails — emails in a group
- POST /groups/create — empty placeholder group
- POST /groups/rename — rename (table + clients + JSON)
- POST /groups/delete — drop label everywhere (clients survive)
- POST /bulkAssignGroup — assign N selected clients
- POST /bulkResetTraffic — reset traffic on a list
Clients page UX
- New Group column (Actions → Client → Group → Inbounds → …) with a
click-to-filter chip.
- FilterDrawer gains a multi-select Group filter whose options come
from the new ClientPageResponse.groups field (sourced from ListGroups
so empty/placeholder groups are pickable too).
- Single-client and bulk-add forms gain a Group AutoComplete pre-loaded
with all known group names.
- New toolbar buttons when selection > 0: "Group ({n})" opens
BulkAssignGroupModal, "Sub links ({n})" opens SubLinksModal.
Sub-links export modal (new SubLinksModal.tsx)
- Table of selected clients with their subscription URL (and JSON URL
when subJsonEnable is on), per-row copy, Copy all, and Download as
sub-links-<timestamp>.txt. Warns when subscription is disabled or
none of the selected clients have a subId.
Dedicated Groups page (new pages/groups/GroupsPage.tsx)
- /groups route + sidebar entry (TagsOutlined icon) + page title key.
- Card-based layout matching Clients/Inbounds/Nodes — summary card with
Total/Grouped/Empty stats, main card with Add Group button + table.
- Per-row More dropdown (icon-first column on the left): Sub links,
Adjust (days+traffic), Reset traffic, Rename, Delete clients in
group, Delete group (keep clients). Empty groups disable the
client-targeted actions.
- Reuses SubLinksModal and ClientBulkAdjustModal — emails for the
group are fetched on demand from GET /groups/:name/emails.
Other polish
- /groups + groups-page selectors added to page-shell.css and
page-cards.css so the new page inherits the same background, padding,
card borders, hover shadow, and summary-card padding.
- .card-toolbar gains a small vertical padding so the larger toolbar
buttons (now default size, matching Inbounds) don't crowd the top of
the card-head on Clients and Groups pages.
194 lines
5.3 KiB
TypeScript
194 lines
5.3 KiB
TypeScript
import { useMemo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Alert, Button, Modal, Table, Tooltip, Typography, message } from 'antd';
|
|
import type { TableColumnType } from 'antd';
|
|
import { CopyOutlined, DownloadOutlined } from '@ant-design/icons';
|
|
|
|
import type { ClientRecord } from '@/hooks/useClients';
|
|
|
|
interface SubSettings {
|
|
enable: boolean;
|
|
subURI: string;
|
|
subJsonURI: string;
|
|
subJsonEnable: boolean;
|
|
}
|
|
|
|
interface SubLinksModalProps {
|
|
open: boolean;
|
|
emails: string[];
|
|
clients: ClientRecord[];
|
|
subSettings?: SubSettings;
|
|
onOpenChange: (open: boolean) => void;
|
|
}
|
|
|
|
interface Row {
|
|
key: string;
|
|
email: string;
|
|
subId: string;
|
|
link: string;
|
|
jsonLink: string;
|
|
}
|
|
|
|
export default function SubLinksModal({
|
|
open,
|
|
emails,
|
|
clients,
|
|
subSettings,
|
|
onOpenChange,
|
|
}: SubLinksModalProps) {
|
|
const { t } = useTranslation();
|
|
const [messageApi, messageContextHolder] = message.useMessage();
|
|
|
|
const enabled = !!subSettings?.enable && !!subSettings?.subURI;
|
|
const jsonEnabled = !!subSettings?.subJsonEnable && !!subSettings?.subJsonURI;
|
|
|
|
const rows = useMemo<Row[]>(() => {
|
|
if (!enabled) return [];
|
|
const byEmail = new Map(clients.map((c) => [c.email, c]));
|
|
const out: Row[] = [];
|
|
for (const email of emails) {
|
|
const c = byEmail.get(email);
|
|
if (!c?.subId) continue;
|
|
out.push({
|
|
key: email,
|
|
email,
|
|
subId: c.subId,
|
|
link: subSettings!.subURI + c.subId,
|
|
jsonLink: jsonEnabled ? subSettings!.subJsonURI + c.subId : '',
|
|
});
|
|
}
|
|
return out;
|
|
}, [emails, clients, enabled, jsonEnabled, subSettings]);
|
|
|
|
const allText = useMemo(
|
|
() => rows.map((r) => (jsonEnabled ? `${r.email}\t${r.link}\t${r.jsonLink}` : `${r.email}\t${r.link}`)).join('\n'),
|
|
[rows, jsonEnabled],
|
|
);
|
|
|
|
async function copy(text: string, label?: string) {
|
|
try {
|
|
await navigator.clipboard.writeText(text);
|
|
messageApi.success(label || t('copied'));
|
|
} catch {
|
|
messageApi.error(t('somethingWentWrong'));
|
|
}
|
|
}
|
|
|
|
function download() {
|
|
const blob = new Blob([allText], { type: 'text/plain;charset=utf-8' });
|
|
const url = URL.createObjectURL(blob);
|
|
const a = document.createElement('a');
|
|
const stamp = new Date().toISOString().replace(/[:.]/g, '-').slice(0, 19);
|
|
a.href = url;
|
|
a.download = `sub-links-${stamp}.txt`;
|
|
document.body.appendChild(a);
|
|
a.click();
|
|
a.remove();
|
|
URL.revokeObjectURL(url);
|
|
}
|
|
|
|
const columns: TableColumnType<Row>[] = [
|
|
{
|
|
title: t('pages.clients.client'),
|
|
dataIndex: 'email',
|
|
key: 'email',
|
|
width: 180,
|
|
ellipsis: true,
|
|
},
|
|
{
|
|
title: t('pages.clients.subLinkColumn'),
|
|
dataIndex: 'link',
|
|
key: 'link',
|
|
ellipsis: true,
|
|
render: (link: string) => (
|
|
<Tooltip title={link} placement="topLeft">
|
|
<Typography.Text copyable={false} ellipsis>{link}</Typography.Text>
|
|
</Tooltip>
|
|
),
|
|
},
|
|
{
|
|
title: '',
|
|
key: 'actions',
|
|
width: 64,
|
|
render: (_v, row) => (
|
|
<Button size="small" type="text" icon={<CopyOutlined />} onClick={() => copy(row.link, t('copied'))} />
|
|
),
|
|
},
|
|
];
|
|
|
|
if (jsonEnabled) {
|
|
columns.splice(2, 0, {
|
|
title: t('pages.clients.subJsonLinkColumn'),
|
|
dataIndex: 'jsonLink',
|
|
key: 'jsonLink',
|
|
ellipsis: true,
|
|
render: (link: string) => (
|
|
<Tooltip title={link} placement="topLeft">
|
|
<Typography.Text copyable={false} ellipsis>{link}</Typography.Text>
|
|
</Tooltip>
|
|
),
|
|
});
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{messageContextHolder}
|
|
<Modal
|
|
open={open}
|
|
title={t('pages.clients.subLinksTitle', { count: rows.length })}
|
|
width={780}
|
|
footer={
|
|
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
|
|
<Button onClick={() => onOpenChange(false)}>{t('close')}</Button>
|
|
<div style={{ display: 'flex', gap: 8 }}>
|
|
<Button
|
|
icon={<CopyOutlined />}
|
|
disabled={rows.length === 0}
|
|
onClick={() => copy(allText, t('pages.clients.subLinksCopiedAll', { count: rows.length }))}
|
|
>
|
|
{t('pages.clients.subLinksCopyAll')}
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
icon={<DownloadOutlined />}
|
|
disabled={rows.length === 0}
|
|
onClick={download}
|
|
>
|
|
{t('download')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
}
|
|
onCancel={() => onOpenChange(false)}
|
|
>
|
|
{!enabled && (
|
|
<Alert
|
|
type="warning"
|
|
showIcon
|
|
message={t('pages.clients.subLinksDisabled')}
|
|
description={t('pages.clients.subLinksDisabledHint')}
|
|
style={{ marginBottom: 12 }}
|
|
/>
|
|
)}
|
|
{enabled && rows.length === 0 && (
|
|
<Alert
|
|
type="info"
|
|
showIcon
|
|
message={t('pages.clients.subLinksEmpty')}
|
|
style={{ marginBottom: 12 }}
|
|
/>
|
|
)}
|
|
{rows.length > 0 && (
|
|
<Table<Row>
|
|
dataSource={rows}
|
|
columns={columns}
|
|
size="small"
|
|
pagination={false}
|
|
scroll={{ y: 360 }}
|
|
/>
|
|
)}
|
|
</Modal>
|
|
</>
|
|
);
|
|
}
|