- 修复单个删除报错:删除账号前先删除关联的LoginTask(外键约束)
- 新增批量删除接口 DELETE /api/accounts/batch/delete
- 路由顺序:/batch/delete 在 /{account_id} 前注册避免路径冲突
- 前端添加批量删除按钮(带确认弹窗)
- 前端添加 batchDelete API
388 lines
11 KiB
TypeScript
388 lines
11 KiB
TypeScript
import { useEffect, useState, useMemo } from 'react';
|
|
import {
|
|
Table, Button, Modal, Input, Select, message, Popconfirm, Typography, Tag, Space,
|
|
Row, Col, Card, Statistic,
|
|
} from 'antd';
|
|
import { ImportOutlined, DeleteOutlined, TagOutlined, FilterOutlined } from '@ant-design/icons';
|
|
import { accountApi, userApi } from '../api/modules';
|
|
import { getUser, hasPerm } from '../store/auth';
|
|
|
|
const { TextArea } = Input;
|
|
const { Text } = Typography;
|
|
|
|
const TAG_COLORS = [
|
|
'blue', 'green', 'cyan', 'geekblue', 'purple', 'orange', 'magenta', 'volcano',
|
|
];
|
|
|
|
export default function AccountsPage() {
|
|
const [accounts, setAccounts] = useState<any[]>([]);
|
|
const [users, setUsers] = useState<any[]>([]);
|
|
const [tags, setTags] = useState<string[]>([]);
|
|
const [loading, setLoading] = useState(false);
|
|
const [importOpen, setImportOpen] = useState(false);
|
|
const [importText, setImportText] = useState('');
|
|
const [importing, setImporting] = useState(false);
|
|
const [tagFilter, setTagFilter] = useState<string>('');
|
|
const [selectedRowKeys, setSelectedRowKeys] = useState<React.Key[]>([]);
|
|
const [batchTagInput, setBatchTagInput] = useState('');
|
|
const [batchTagVisible, setBatchTagVisible] = useState(false);
|
|
const user = getUser();
|
|
|
|
const canViewAll = hasPerm(user, 'account:view_all');
|
|
const canImport = hasPerm(user, 'account:import');
|
|
const canAssign = hasPerm(user, 'account:assign');
|
|
const canDelete = hasPerm(user, 'account:delete');
|
|
|
|
const loadAccounts = async () => {
|
|
setLoading(true);
|
|
try {
|
|
const params: any = {};
|
|
if (tagFilter) params.tag = tagFilter;
|
|
const data = await accountApi.list(params);
|
|
setAccounts(data);
|
|
} catch (e: any) {
|
|
message.error(e.message);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const loadUsers = async () => {
|
|
try {
|
|
const data = await userApi.list();
|
|
setUsers(data.filter((u: any) => u.role === 'support'));
|
|
} catch {}
|
|
};
|
|
|
|
const loadTags = async () => {
|
|
try {
|
|
const data = await accountApi.listTags();
|
|
setTags(data);
|
|
} catch {}
|
|
};
|
|
|
|
useEffect(() => {
|
|
loadAccounts();
|
|
if (canAssign) loadUsers();
|
|
loadTags();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
loadAccounts();
|
|
}, [tagFilter]);
|
|
|
|
const tagColorMap = useMemo(() => {
|
|
const map: Record<string, string> = {};
|
|
tags.forEach((t, i) => {
|
|
map[t] = TAG_COLORS[i % TAG_COLORS.length];
|
|
});
|
|
return map;
|
|
}, [tags]);
|
|
|
|
const handleImport = async () => {
|
|
if (!importText.trim()) {
|
|
message.warning('请输入账号数据');
|
|
return;
|
|
}
|
|
setImporting(true);
|
|
try {
|
|
const result = await accountApi.import(importText);
|
|
message.success(result.message);
|
|
setImportOpen(false);
|
|
setImportText('');
|
|
loadAccounts();
|
|
loadTags();
|
|
} catch (e: any) {
|
|
message.error(e.message);
|
|
} finally {
|
|
setImporting(false);
|
|
}
|
|
};
|
|
|
|
const handleAssign = async (accountId: number, assignedTo: number | null) => {
|
|
try {
|
|
await accountApi.assign(accountId, assignedTo);
|
|
message.success('已分配');
|
|
loadAccounts();
|
|
} catch (e: any) {
|
|
message.error(e.message);
|
|
}
|
|
};
|
|
|
|
const handleSetTag = async (accountId: number, tag: string) => {
|
|
try {
|
|
await accountApi.setTag(accountId, tag);
|
|
message.success('标签已更新');
|
|
loadAccounts();
|
|
loadTags();
|
|
} catch (e: any) {
|
|
message.error(e.message);
|
|
}
|
|
};
|
|
|
|
const handleBatchTag = async () => {
|
|
if (selectedRowKeys.length === 0) {
|
|
message.warning('请先选择账号');
|
|
return;
|
|
}
|
|
try {
|
|
await accountApi.batchTag(selectedRowKeys as number[], batchTagInput);
|
|
message.success(`已为 ${selectedRowKeys.length} 个账号设置标签`);
|
|
setBatchTagVisible(false);
|
|
setBatchTagInput('');
|
|
setSelectedRowKeys([]);
|
|
loadAccounts();
|
|
loadTags();
|
|
} catch (e: any) {
|
|
message.error(e.message);
|
|
}
|
|
};
|
|
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
await accountApi.delete(id);
|
|
message.success('已删除');
|
|
setSelectedRowKeys((prev) => prev.filter((k) => k !== id));
|
|
loadAccounts();
|
|
loadTags();
|
|
} catch (e: any) {
|
|
message.error(e.message);
|
|
}
|
|
};
|
|
|
|
const handleBatchDelete = async () => {
|
|
if (selectedRowKeys.length === 0) {
|
|
message.warning('请先选择账号');
|
|
return;
|
|
}
|
|
try {
|
|
const result = await accountApi.batchDelete(selectedRowKeys as number[]);
|
|
message.success(result.message);
|
|
setSelectedRowKeys([]);
|
|
loadAccounts();
|
|
loadTags();
|
|
} catch (e: any) {
|
|
message.error(e.message);
|
|
}
|
|
};
|
|
|
|
const columns: any[] = [
|
|
{ title: 'ID', dataIndex: 'id', width: 60 },
|
|
{ title: '用户名', dataIndex: 'username' },
|
|
{
|
|
title: '标签',
|
|
dataIndex: 'tag',
|
|
width: 120,
|
|
render: (tag: string, record: any) => {
|
|
if (!tag) {
|
|
if (canImport) {
|
|
return (
|
|
<Input
|
|
size="small"
|
|
placeholder="输入标签"
|
|
style={{ width: 90 }}
|
|
onPressEnter={(e) => {
|
|
const val = (e.target as HTMLInputElement).value.trim();
|
|
if (val) handleSetTag(record.id, val);
|
|
}}
|
|
onBlur={(e) => {
|
|
const val = e.target.value.trim();
|
|
if (val) handleSetTag(record.id, val);
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
return <Text type="secondary">-</Text>;
|
|
}
|
|
if (canImport) {
|
|
return (
|
|
<Tag
|
|
color={tagColorMap[tag]}
|
|
closable
|
|
onClose={(e) => {
|
|
e.preventDefault();
|
|
handleSetTag(record.id, '');
|
|
}}
|
|
>
|
|
{tag}
|
|
</Tag>
|
|
);
|
|
}
|
|
return <Tag color={tagColorMap[tag]}>{tag}</Tag>;
|
|
},
|
|
},
|
|
];
|
|
|
|
if (canViewAll) {
|
|
columns.push(
|
|
{ title: '密码', dataIndex: 'password', width: 120 },
|
|
{ title: '邮箱', dataIndex: 'email' },
|
|
{ title: '邮箱密码', dataIndex: 'email_password', width: 120 },
|
|
);
|
|
}
|
|
|
|
columns.push({
|
|
title: '分配给',
|
|
dataIndex: 'assigned_username',
|
|
render: (_: any, record: any) => {
|
|
if (canAssign) {
|
|
return (
|
|
<Select
|
|
style={{ width: 140 }}
|
|
allowClear
|
|
placeholder="未分配"
|
|
value={record.assigned_to}
|
|
onChange={(val) => handleAssign(record.id, val ?? null)}
|
|
options={users.map((u: any) => ({ value: u.id, label: u.username }))}
|
|
/>
|
|
);
|
|
}
|
|
return record.assigned_username || <Text type="secondary">未分配</Text>;
|
|
},
|
|
});
|
|
|
|
if (canDelete) {
|
|
columns.push({
|
|
title: '操作',
|
|
width: 80,
|
|
render: (_: any, record: any) => (
|
|
<Popconfirm title="确认删除?" onConfirm={() => handleDelete(record.id)}>
|
|
<Button danger size="small" icon={<DeleteOutlined />}>删除</Button>
|
|
</Popconfirm>
|
|
),
|
|
});
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<div style={{ marginBottom: 16, display: 'flex', justifyContent: 'space-between' }}>
|
|
<h2>账号管理</h2>
|
|
<Space>
|
|
<Select
|
|
allowClear
|
|
placeholder="按标签筛选"
|
|
style={{ width: 150 }}
|
|
value={tagFilter || undefined}
|
|
onChange={(val) => setTagFilter(val || '')}
|
|
options={tags.map((t) => ({ value: t, label: t }))}
|
|
prefix={<FilterOutlined />}
|
|
/>
|
|
{canImport && (
|
|
<>
|
|
<Button
|
|
disabled={selectedRowKeys.length === 0}
|
|
icon={<TagOutlined />}
|
|
onClick={() => {
|
|
setBatchTagInput('');
|
|
setBatchTagVisible(true);
|
|
}}
|
|
>
|
|
批量打标签
|
|
</Button>
|
|
{canDelete && (
|
|
<Popconfirm
|
|
title={`确认删除选中的 ${selectedRowKeys.length} 个账号?`}
|
|
description="将同时删除关联的登录任务"
|
|
onConfirm={handleBatchDelete}
|
|
okText="删除"
|
|
okButtonProps={{ danger: true }}
|
|
cancelText="取消"
|
|
>
|
|
<Button
|
|
danger
|
|
disabled={selectedRowKeys.length === 0}
|
|
icon={<DeleteOutlined />}
|
|
>
|
|
批量删除
|
|
</Button>
|
|
</Popconfirm>
|
|
)}
|
|
<Button type="primary" icon={<ImportOutlined />} onClick={() => setImportOpen(true)}>
|
|
批量导入
|
|
</Button>
|
|
</>
|
|
)}
|
|
</Space>
|
|
</div>
|
|
|
|
<Row gutter={16} style={{ marginBottom: 16 }}>
|
|
<Col span={6}>
|
|
<Card size="small"><Statistic title="账号总数" value={accounts.length} /></Card>
|
|
</Col>
|
|
<Col span={6}>
|
|
<Card size="small"><Statistic title="标签数" value={tags.length} /></Card>
|
|
</Col>
|
|
<Col span={6}>
|
|
<Card size="small">
|
|
<Statistic
|
|
title="已分配"
|
|
value={accounts.filter((a) => a.assigned_to).length}
|
|
/>
|
|
</Card>
|
|
</Col>
|
|
<Col span={6}>
|
|
<Card size="small">
|
|
<Statistic
|
|
title="未分配"
|
|
value={accounts.filter((a) => !a.assigned_to).length}
|
|
/>
|
|
</Card>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Table
|
|
rowSelection={canImport ? {
|
|
selectedRowKeys,
|
|
onChange: (keys) => setSelectedRowKeys(keys),
|
|
} : undefined}
|
|
columns={columns}
|
|
dataSource={accounts}
|
|
rowKey="id"
|
|
loading={loading}
|
|
size="small"
|
|
pagination={{ pageSize: 20 }}
|
|
/>
|
|
|
|
<Modal
|
|
title="批量导入账号"
|
|
open={importOpen}
|
|
onCancel={() => setImportOpen(false)}
|
|
onOk={handleImport}
|
|
confirmLoading={importing}
|
|
okText="导入"
|
|
width={600}
|
|
>
|
|
<Text type="secondary">
|
|
格式:用户名|密码|邮箱|邮箱密码|标签(可选,每行一个)
|
|
</Text>
|
|
<TextArea
|
|
rows={10}
|
|
value={importText}
|
|
onChange={(e) => setImportText(e.target.value)}
|
|
placeholder={`用户名|密码|邮箱|邮箱密码|标签\n用户名|密码|邮箱|邮箱密码|标签`}
|
|
style={{ marginTop: 8 }}
|
|
/>
|
|
</Modal>
|
|
|
|
<Modal
|
|
title="批量设置标签"
|
|
open={batchTagVisible}
|
|
onCancel={() => setBatchTagVisible(false)}
|
|
onOk={handleBatchTag}
|
|
okText="确定"
|
|
width={400}
|
|
>
|
|
<p>为选中的 {selectedRowKeys.length} 个账号设置标签:</p>
|
|
<Select
|
|
mode="tags"
|
|
style={{ width: '100%' }}
|
|
placeholder="输入或选择标签"
|
|
value={batchTagInput ? [batchTagInput] : []}
|
|
onChange={(vals) => setBatchTagInput(vals.length > 0 ? vals[vals.length - 1] : '')}
|
|
options={tags.map((t) => ({ value: t, label: t }))}
|
|
/>
|
|
</Modal>
|
|
</div>
|
|
);
|
|
}
|