Files
new-api/web/src/components/ChannelsTable.js

868 lines
23 KiB
JavaScript
Raw Normal View History

2024-03-15 16:05:33 +08:00
import React, { useEffect, useState } from 'react';
2024-03-23 21:24:39 +08:00
import {
API,
isMobile,
shouldShowPrompt,
showError,
showInfo,
showSuccess,
timestamp2string,
} from '../helpers';
2024-03-15 16:05:33 +08:00
import { CHANNEL_OPTIONS, ITEMS_PER_PAGE } from '../constants';
2023-12-05 18:15:40 +08:00
import {
2024-03-23 21:24:39 +08:00
renderGroup,
renderNumberWithPoint,
renderQuota,
} from '../helpers/render';
import {
Button,
Dropdown,
Form,
InputNumber,
Popconfirm,
Space,
SplitButtonGroup,
Switch,
Table,
Tag,
Tooltip,
Typography,
2024-03-15 16:05:33 +08:00
} from '@douyinfe/semi-ui';
import EditChannel from '../pages/Channel/EditChannel';
import { IconTreeTriangleDown } from '@douyinfe/semi-icons';
2023-04-22 21:41:16 +08:00
2023-04-23 15:42:23 +08:00
function renderTimestamp(timestamp) {
2024-03-23 21:24:39 +08:00
return <>{timestamp2string(timestamp)}</>;
2023-04-23 15:42:23 +08:00
}
let type2label = undefined;
function renderType(type) {
2024-03-15 16:05:33 +08:00
if (!type2label) {
type2label = new Map();
for (let i = 0; i < CHANNEL_OPTIONS.length; i++) {
type2label[CHANNEL_OPTIONS[i].value] = CHANNEL_OPTIONS[i];
2023-04-23 15:42:23 +08:00
}
2024-03-15 16:05:33 +08:00
type2label[0] = { value: 0, text: '未知类型', color: 'grey' };
}
2024-03-23 21:24:39 +08:00
return (
<Tag size='large' color={type2label[type]?.color}>
{type2label[type]?.text}
</Tag>
);
2023-04-22 21:41:16 +08:00
}
const ChannelsTable = () => {
2024-03-15 16:05:33 +08:00
const columns = [
// {
// title: '',
// dataIndex: 'checkbox',
// className: 'checkbox',
// },
{
title: 'ID',
2024-03-23 21:24:39 +08:00
dataIndex: 'id',
2024-03-15 16:05:33 +08:00
},
{
title: '名称',
2024-03-23 21:24:39 +08:00
dataIndex: 'name',
2024-03-15 16:05:33 +08:00
},
{
title: '分组',
dataIndex: 'group',
render: (text, record, index) => {
return (
<div>
<Space spacing={2}>
2024-03-23 21:24:39 +08:00
{text.split(',').map((item, index) => {
return renderGroup(item);
})}
2024-03-15 16:05:33 +08:00
</Space>
</div>
);
2024-03-23 21:24:39 +08:00
},
2024-03-15 16:05:33 +08:00
},
{
title: '类型',
dataIndex: 'type',
render: (text, record, index) => {
2024-03-23 21:24:39 +08:00
return <div>{renderType(text)}</div>;
},
2024-03-15 16:05:33 +08:00
},
{
title: '状态',
dataIndex: 'status',
render: (text, record, index) => {
2024-03-23 21:24:39 +08:00
return <div>{renderStatus(text)}</div>;
},
2024-03-15 16:05:33 +08:00
},
{
title: '响应时间',
dataIndex: 'response_time',
render: (text, record, index) => {
2024-03-23 21:24:39 +08:00
return <div>{renderResponseTime(text)}</div>;
},
2024-03-15 16:05:33 +08:00
},
{
title: '已用/剩余',
dataIndex: 'expired_time',
render: (text, record, index) => {
return (
<div>
<Space spacing={1}>
<Tooltip content={'已用额度'}>
2024-03-23 21:24:39 +08:00
<Tag color='white' type='ghost' size='large'>
{renderQuota(record.used_quota)}
</Tag>
2024-03-15 16:05:33 +08:00
</Tooltip>
<Tooltip content={'剩余额度' + record.balance + ',点击更新'}>
2024-03-23 21:24:39 +08:00
<Tag
color='white'
type='ghost'
size='large'
onClick={() => {
updateChannelBalance(record);
}}
>
${renderNumberWithPoint(record.balance)}
</Tag>
2024-03-15 16:05:33 +08:00
</Tooltip>
</Space>
</div>
);
2024-03-23 21:24:39 +08:00
},
2024-03-15 16:05:33 +08:00
},
{
title: '优先级',
dataIndex: 'priority',
render: (text, record, index) => {
return (
<div>
<InputNumber
style={{ width: 70 }}
2024-03-23 21:24:39 +08:00
name='priority'
onBlur={(e) => {
2024-03-15 16:05:33 +08:00
manageChannel(record.id, 'priority', record, e.target.value);
}}
keepFocus={true}
innerButtons
defaultValue={record.priority}
min={-999}
/>
</div>
);
2024-03-23 21:24:39 +08:00
},
2024-03-15 16:05:33 +08:00
},
{
title: '权重',
dataIndex: 'weight',
render: (text, record, index) => {
return (
<div>
<InputNumber
style={{ width: 70 }}
2024-03-23 21:24:39 +08:00
name='weight'
onBlur={(e) => {
2024-03-15 16:05:33 +08:00
manageChannel(record.id, 'weight', record, e.target.value);
}}
keepFocus={true}
innerButtons
defaultValue={record.weight}
min={0}
/>
</div>
);
2024-03-23 21:24:39 +08:00
},
2024-03-15 16:05:33 +08:00
},
{
title: '',
dataIndex: 'operate',
render: (text, record, index) => (
<div>
2024-03-23 21:24:39 +08:00
<SplitButtonGroup
style={{ marginRight: 1 }}
aria-label='测试操作项目组'
>
<Button
theme='light'
onClick={() => {
testChannel(record, '');
}}
2024-03-15 16:05:33 +08:00
>
2024-03-23 21:24:39 +08:00
测试
</Button>
<Dropdown
trigger='click'
position='bottomRight'
menu={record.test_models}
>
<Button
style={{ padding: '8px 4px' }}
type='primary'
icon={<IconTreeTriangleDown />}
></Button>
2024-03-15 16:05:33 +08:00
</Dropdown>
</SplitButtonGroup>
{/*<Button theme='light' type='primary' style={{marginRight: 1}} onClick={()=>testChannel(record)}>测试</Button>*/}
<Popconfirm
2024-03-23 21:24:39 +08:00
title='确定是否要删除此渠道?'
content='此修改将不可逆'
2024-03-15 16:05:33 +08:00
okType={'danger'}
position={'left'}
onConfirm={() => {
2024-03-23 21:24:39 +08:00
manageChannel(record.id, 'delete', record).then(() => {
removeRecord(record.id);
});
2024-03-15 16:05:33 +08:00
}}
>
2024-03-23 21:24:39 +08:00
<Button theme='light' type='danger' style={{ marginRight: 1 }}>
删除
</Button>
2024-03-15 16:05:33 +08:00
</Popconfirm>
2024-03-23 21:24:39 +08:00
{record.status === 1 ? (
<Button
theme='light'
type='warning'
style={{ marginRight: 1 }}
onClick={async () => {
manageChannel(record.id, 'disable', record);
}}
>
禁用
</Button>
) : (
<Button
theme='light'
type='secondary'
style={{ marginRight: 1 }}
onClick={async () => {
manageChannel(record.id, 'enable', record);
}}
>
启用
</Button>
)}
<Button
theme='light'
type='tertiary'
style={{ marginRight: 1 }}
onClick={() => {
2024-03-15 16:05:33 +08:00
setEditingChannel(record);
setShowEdit(true);
2024-03-23 21:24:39 +08:00
}}
>
编辑
</Button>
2024-03-15 16:05:33 +08:00
</div>
2024-03-23 21:24:39 +08:00
),
},
2024-03-15 16:05:33 +08:00
];
const [channels, setChannels] = useState([]);
const [loading, setLoading] = useState(true);
const [activePage, setActivePage] = useState(1);
const [idSort, setIdSort] = useState(false);
const [searchKeyword, setSearchKeyword] = useState('');
const [searchGroup, setSearchGroup] = useState('');
const [searchModel, setSearchModel] = useState('');
const [searching, setSearching] = useState(false);
const [updatingBalance, setUpdatingBalance] = useState(false);
const [pageSize, setPageSize] = useState(ITEMS_PER_PAGE);
2024-03-23 21:24:39 +08:00
const [showPrompt, setShowPrompt] = useState(
shouldShowPrompt('channel-test'),
);
2024-03-15 16:05:33 +08:00
const [channelCount, setChannelCount] = useState(pageSize);
const [groupOptions, setGroupOptions] = useState([]);
const [showEdit, setShowEdit] = useState(false);
const [enableBatchDelete, setEnableBatchDelete] = useState(false);
const [editingChannel, setEditingChannel] = useState({
2024-03-23 21:24:39 +08:00
id: undefined,
2024-03-15 16:05:33 +08:00
});
const [selectedChannels, setSelectedChannels] = useState([]);
2024-03-23 21:24:39 +08:00
const removeRecord = (id) => {
2024-03-15 16:05:33 +08:00
let newDataSource = [...channels];
if (id != null) {
2024-03-23 21:24:39 +08:00
let idx = newDataSource.findIndex((data) => data.id === id);
2024-03-15 16:05:33 +08:00
if (idx > -1) {
newDataSource.splice(idx, 1);
setChannels(newDataSource);
}
}
};
const setChannelFormat = (channels) => {
for (let i = 0; i < channels.length; i++) {
channels[i].key = '' + channels[i].id;
let test_models = [];
channels[i].models.split(',').forEach((item, index) => {
test_models.push({
node: 'item',
name: item,
onClick: () => {
testChannel(channels[i], item);
2024-03-23 21:24:39 +08:00
},
2024-03-15 16:05:33 +08:00
});
});
channels[i].test_models = test_models;
}
// data.key = '' + data.id
setChannels(channels);
if (channels.length >= pageSize) {
setChannelCount(channels.length + pageSize);
} else {
setChannelCount(channels.length);
}
};
const loadChannels = async (startIdx, pageSize, idSort) => {
setLoading(true);
2024-03-23 21:24:39 +08:00
const res = await API.get(
`/api/channel/?p=${startIdx}&page_size=${pageSize}&id_sort=${idSort}`,
);
if (res === undefined) {
return;
}
2024-03-15 16:05:33 +08:00
const { success, message, data } = res.data;
if (success) {
if (startIdx === 0) {
setChannelFormat(data);
} else {
let newChannels = [...channels];
newChannels.splice(startIdx * pageSize, data.length, ...data);
setChannelFormat(newChannels);
}
} else {
showError(message);
}
setLoading(false);
};
const refresh = async () => {
await loadChannels(activePage - 1, pageSize, idSort);
};
useEffect(() => {
// console.log('default effect')
const localIdSort = localStorage.getItem('id-sort') === 'true';
2024-03-23 21:24:39 +08:00
const localPageSize =
parseInt(localStorage.getItem('page-size')) || ITEMS_PER_PAGE;
2024-03-15 16:05:33 +08:00
setIdSort(localIdSort);
setPageSize(localPageSize);
loadChannels(0, localPageSize, localIdSort)
.then()
.catch((reason) => {
showError(reason);
});
fetchGroups().then();
}, []);
const manageChannel = async (id, action, record, value) => {
let data = { id };
let res;
switch (action) {
case 'delete':
res = await API.delete(`/api/channel/${id}/`);
break;
case 'enable':
data.status = 1;
res = await API.put('/api/channel/', data);
break;
case 'disable':
data.status = 2;
res = await API.put('/api/channel/', data);
break;
case 'priority':
if (value === '') {
return;
2023-12-05 18:15:40 +08:00
}
2024-03-15 16:05:33 +08:00
data.priority = parseInt(value);
res = await API.put('/api/channel/', data);
break;
case 'weight':
if (value === '') {
return;
2023-12-14 16:35:03 +08:00
}
2024-03-15 16:05:33 +08:00
data.weight = parseInt(value);
if (data.weight < 0) {
data.weight = 0;
2023-12-14 16:35:03 +08:00
}
2024-03-15 16:05:33 +08:00
res = await API.put('/api/channel/', data);
break;
2023-12-14 16:35:03 +08:00
}
2024-03-15 16:05:33 +08:00
const { success, message } = res.data;
if (success) {
showSuccess('操作成功完成!');
let channel = res.data.data;
let newChannels = [...channels];
if (action === 'delete') {
} else {
record.status = channel.status;
}
setChannels(newChannels);
} else {
showError(message);
}
};
const renderStatus = (status) => {
switch (status) {
case 1:
2024-03-23 21:24:39 +08:00
return (
<Tag size='large' color='green'>
已启用
</Tag>
);
2024-03-15 16:05:33 +08:00
case 2:
return (
2024-03-23 21:24:39 +08:00
<Tag size='large' color='yellow'>
2024-03-15 16:05:33 +08:00
已禁用
</Tag>
);
case 3:
return (
2024-03-23 21:24:39 +08:00
<Tag size='large' color='yellow'>
2024-03-15 16:05:33 +08:00
自动禁用
</Tag>
);
default:
return (
2024-03-23 21:24:39 +08:00
<Tag size='large' color='grey'>
2024-03-15 16:05:33 +08:00
未知状态
</Tag>
);
}
};
const renderResponseTime = (responseTime) => {
let time = responseTime / 1000;
time = time.toFixed(2) + ' 秒';
if (responseTime === 0) {
2024-03-23 21:24:39 +08:00
return (
<Tag size='large' color='grey'>
未测试
</Tag>
);
2024-03-15 16:05:33 +08:00
} else if (responseTime <= 1000) {
2024-03-23 21:24:39 +08:00
return (
<Tag size='large' color='green'>
{time}
</Tag>
);
2024-03-15 16:05:33 +08:00
} else if (responseTime <= 3000) {
2024-03-23 21:24:39 +08:00
return (
<Tag size='large' color='lime'>
{time}
</Tag>
);
2024-03-15 16:05:33 +08:00
} else if (responseTime <= 5000) {
2024-03-23 21:24:39 +08:00
return (
<Tag size='large' color='yellow'>
{time}
</Tag>
);
2024-03-15 16:05:33 +08:00
} else {
2024-03-23 21:24:39 +08:00
return (
<Tag size='large' color='red'>
{time}
</Tag>
);
2024-03-15 16:05:33 +08:00
}
};
const searchChannels = async (searchKeyword, searchGroup, searchModel) => {
if (searchKeyword === '' && searchGroup === '' && searchModel === '') {
// if keyword is blank, load files instead.
await loadChannels(0, pageSize, idSort);
setActivePage(1);
return;
}
setSearching(true);
2024-03-23 21:24:39 +08:00
const res = await API.get(
`/api/channel/search?keyword=${searchKeyword}&group=${searchGroup}&model=${searchModel}`,
);
2024-03-15 16:05:33 +08:00
const { success, message, data } = res.data;
if (success) {
setChannels(data);
setActivePage(1);
} else {
showError(message);
2024-01-10 13:23:43 +08:00
}
2024-03-15 16:05:33 +08:00
setSearching(false);
};
const testChannel = async (record, model) => {
const res = await API.get(`/api/channel/test/${record.id}?model=${model}`);
const { success, message, time } = res.data;
if (success) {
record.response_time = time * 1000;
record.test_time = Date.now() / 1000;
showInfo(`通道 ${record.name} 测试成功,耗时 ${time.toFixed(2)} 秒。`);
} else {
showError(message);
}
};
const testAllChannels = async () => {
const res = await API.get(`/api/channel/test`);
const { success, message } = res.data;
if (success) {
showInfo('已成功开始测试所有通道,请刷新页面查看结果。');
} else {
showError(message);
}
};
const deleteAllDisabledChannels = async () => {
const res = await API.delete(`/api/channel/disabled`);
const { success, message, data } = res.data;
if (success) {
showSuccess(`已删除所有禁用渠道,共计 ${data}`);
await refresh();
} else {
showError(message);
}
};
const updateChannelBalance = async (record) => {
const res = await API.get(`/api/channel/update_balance/${record.id}/`);
const { success, message, balance } = res.data;
if (success) {
record.balance = balance;
record.balance_updated_time = Date.now() / 1000;
showInfo(`通道 ${record.name} 余额更新成功!`);
} else {
showError(message);
}
};
const updateAllChannelsBalance = async () => {
setUpdatingBalance(true);
const res = await API.get(`/api/channel/update_balance`);
const { success, message } = res.data;
if (success) {
showInfo('已更新完毕所有已启用通道余额!');
} else {
showError(message);
}
setUpdatingBalance(false);
};
2024-01-10 13:23:43 +08:00
2024-03-15 16:05:33 +08:00
const batchDeleteChannels = async () => {
if (selectedChannels.length === 0) {
showError('请先选择要删除的通道!');
return;
}
setLoading(true);
let ids = [];
selectedChannels.forEach((channel) => {
ids.push(channel.id);
});
const res = await API.post(`/api/channel/batch`, { ids: ids });
const { success, message, data } = res.data;
if (success) {
showSuccess(`已删除 ${data} 个通道!`);
await refresh();
} else {
showError(message);
}
setLoading(false);
};
const fixChannelsAbilities = async () => {
const res = await API.post(`/api/channel/fix`);
const { success, message, data } = res.data;
if (success) {
showSuccess(`已修复 ${data} 个通道!`);
await refresh();
} else {
showError(message);
}
};
2023-12-05 18:15:40 +08:00
2024-03-23 21:24:39 +08:00
let pageData = channels.slice(
(activePage - 1) * pageSize,
activePage * pageSize,
);
2023-12-05 18:15:40 +08:00
2024-03-23 21:24:39 +08:00
const handlePageChange = (page) => {
2024-03-15 16:05:33 +08:00
setActivePage(page);
if (page === Math.ceil(channels.length / pageSize) + 1) {
// In this case we have to load more data and then append them.
2024-03-23 21:24:39 +08:00
loadChannels(page - 1, pageSize, idSort).then((r) => {});
2023-12-05 18:15:40 +08:00
}
2024-03-15 16:05:33 +08:00
};
const handlePageSizeChange = async (size) => {
localStorage.setItem('page-size', size + '');
setPageSize(size);
setActivePage(1);
loadChannels(0, size, idSort)
.then()
.catch((reason) => {
showError(reason);
});
};
const fetchGroups = async () => {
try {
let res = await API.get(`/api/group/`);
// add 'all' option
// res.data.data.unshift('all');
if (res === undefined) {
return;
}
2024-03-23 21:24:39 +08:00
setGroupOptions(
res.data.data.map((group) => ({
label: group,
value: group,
})),
);
2024-03-15 16:05:33 +08:00
} catch (error) {
showError(error.message);
}
};
const closeEdit = () => {
setShowEdit(false);
};
2023-12-05 18:15:40 +08:00
2024-03-15 16:05:33 +08:00
const handleRow = (record, index) => {
if (record.status !== 1) {
return {
style: {
2024-03-23 21:24:39 +08:00
background: 'var(--semi-color-disabled-border)',
},
2024-03-15 16:05:33 +08:00
};
} else {
return {};
}
};
return (
<>
2024-03-23 21:24:39 +08:00
<EditChannel
refresh={refresh}
visible={showEdit}
handleClose={closeEdit}
editingChannel={editingChannel}
/>
<Form
onSubmit={() => {
searchChannels(searchKeyword, searchGroup, searchModel);
}}
labelPosition='left'
>
2024-03-15 16:05:33 +08:00
<div style={{ display: 'flex' }}>
<Space>
<Form.Input
2024-03-23 21:24:39 +08:00
field='search_keyword'
label='搜索渠道关键词'
placeholder='ID名称和密钥 ...'
2024-03-15 16:05:33 +08:00
value={searchKeyword}
loading={searching}
onChange={(v) => {
setSearchKeyword(v.trim());
}}
/>
<Form.Input
2024-03-23 21:24:39 +08:00
field='search_model'
label='模型'
placeholder='模型关键字'
2024-03-15 16:05:33 +08:00
value={searchModel}
loading={searching}
onChange={(v) => {
setSearchModel(v.trim());
}}
/>
2024-03-23 21:24:39 +08:00
<Form.Select
field='group'
label='分组'
optionList={groupOptions}
onChange={(v) => {
setSearchGroup(v);
searchChannels(searchKeyword, v, searchModel);
}}
/>
<Button
label='查询'
type='primary'
htmlType='submit'
className='btn-margin-right'
style={{ marginRight: 8 }}
>
查询
</Button>
2024-03-15 16:05:33 +08:00
</Space>
</div>
</Form>
<div style={{ marginTop: 10, display: 'flex' }}>
<Space>
<Space>
<Typography.Text strong>使用ID排序</Typography.Text>
2024-03-23 21:24:39 +08:00
<Switch
checked={idSort}
label='使用ID排序'
uncheckedText='关'
aria-label='是否用ID排序'
onChange={(v) => {
localStorage.setItem('id-sort', v + '');
setIdSort(v);
loadChannels(0, pageSize, v)
.then()
.catch((reason) => {
showError(reason);
});
}}
></Switch>
2024-03-15 16:05:33 +08:00
</Space>
</Space>
</div>
2024-03-23 21:24:39 +08:00
<Table
className={'channel-table'}
style={{ marginTop: 15 }}
columns={columns}
dataSource={pageData}
pagination={{
currentPage: activePage,
pageSize: pageSize,
total: channelCount,
pageSizeOpts: [10, 20, 50, 100],
showSizeChanger: true,
formatPageText: (page) => '',
onPageSizeChange: (size) => {
handlePageSizeChange(size).then();
},
onPageChange: handlePageChange,
}}
loading={loading}
onRow={handleRow}
rowSelection={
enableBatchDelete
? {
onChange: (selectedRowKeys, selectedRows) => {
// console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
setSelectedChannels(selectedRows);
},
}
: null
}
/>
<div
style={{
display: isMobile() ? '' : 'flex',
marginTop: isMobile() ? 0 : -45,
zIndex: 999,
position: 'relative',
pointerEvents: 'none',
}}
>
<Space
style={{ pointerEvents: 'auto', marginTop: isMobile() ? 0 : 45 }}
>
<Button
theme='light'
type='primary'
style={{ marginRight: 8 }}
onClick={() => {
2024-03-15 16:05:33 +08:00
setEditingChannel({
2024-03-23 21:24:39 +08:00
id: undefined,
2024-03-15 16:05:33 +08:00
});
setShowEdit(true);
2024-03-23 21:24:39 +08:00
}}
>
添加渠道
</Button>
2024-03-15 16:05:33 +08:00
<Popconfirm
2024-03-23 21:24:39 +08:00
title='确定?'
2024-03-15 16:05:33 +08:00
okType={'warning'}
onConfirm={testAllChannels}
position={isMobile() ? 'top' : 'top'}
>
2024-03-23 21:24:39 +08:00
<Button theme='light' type='warning' style={{ marginRight: 8 }}>
测试所有通道
</Button>
2024-03-15 16:05:33 +08:00
</Popconfirm>
<Popconfirm
2024-03-23 21:24:39 +08:00
title='确定?'
2024-03-15 16:05:33 +08:00
okType={'secondary'}
onConfirm={updateAllChannelsBalance}
>
2024-03-23 21:24:39 +08:00
<Button theme='light' type='secondary' style={{ marginRight: 8 }}>
更新所有已启用通道余额
</Button>
2024-03-15 16:05:33 +08:00
</Popconfirm>
<Popconfirm
2024-03-23 21:24:39 +08:00
title='确定是否要删除禁用通道?'
content='此修改将不可逆'
2024-03-15 16:05:33 +08:00
okType={'danger'}
onConfirm={deleteAllDisabledChannels}
>
2024-03-23 21:24:39 +08:00
<Button theme='light' type='danger' style={{ marginRight: 8 }}>
删除禁用通道
</Button>
2024-03-15 16:05:33 +08:00
</Popconfirm>
2024-03-23 21:24:39 +08:00
<Button
theme='light'
type='primary'
style={{ marginRight: 8 }}
onClick={refresh}
>
刷新
</Button>
2024-03-15 16:05:33 +08:00
</Space>
{/*<div style={{width: '100%', pointerEvents: 'none', position: 'absolute'}}>*/}
{/*</div>*/}
</div>
<div style={{ marginTop: 20 }}>
<Space>
<Typography.Text strong>开启批量删除</Typography.Text>
2024-03-23 21:24:39 +08:00
<Switch
label='开启批量删除'
uncheckedText='关'
aria-label='是否开启批量删除'
onChange={(v) => {
setEnableBatchDelete(v);
}}
></Switch>
2024-03-15 16:05:33 +08:00
<Popconfirm
2024-03-23 21:24:39 +08:00
title='确定是否要删除所选通道?'
content='此修改将不可逆'
2024-03-15 16:05:33 +08:00
okType={'danger'}
onConfirm={batchDeleteChannels}
disabled={!enableBatchDelete}
position={'top'}
>
2024-03-23 21:24:39 +08:00
<Button
disabled={!enableBatchDelete}
theme='light'
type='danger'
style={{ marginRight: 8 }}
>
删除所选通道
</Button>
2024-03-15 16:05:33 +08:00
</Popconfirm>
<Popconfirm
2024-03-23 21:24:39 +08:00
title='确定是否要修复数据库一致性?'
content='进行该操作时,可能导致渠道访问错误,请仅在数据库出现问题时使用'
2024-03-15 16:05:33 +08:00
okType={'warning'}
onConfirm={fixChannelsAbilities}
position={'top'}
>
2024-03-23 21:24:39 +08:00
<Button theme='light' type='secondary' style={{ marginRight: 8 }}>
修复数据库一致性
</Button>
2024-03-15 16:05:33 +08:00
</Popconfirm>
</Space>
</div>
</>
);
2023-04-22 21:41:16 +08:00
};
export default ChannelsTable;