144 lines
4.3 KiB
TypeScript
144 lines
4.3 KiB
TypeScript
import DropdownButtons from '@/components/drop-down-buttons';
|
|
import RowChildren from '@/components/seal-table/components/row-children';
|
|
import StatusTag from '@/components/status-tag';
|
|
import {
|
|
DeleteOutlined,
|
|
FieldTimeOutlined,
|
|
InfoCircleOutlined
|
|
} from '@ant-design/icons';
|
|
import { useIntl } from '@umijs/max';
|
|
import { Col, Row, Space, Tooltip } from 'antd';
|
|
import dayjs from 'dayjs';
|
|
import _ from 'lodash';
|
|
import React, { useCallback } from 'react';
|
|
import { InstanceStatusMap, InstanceStatusMapValue, status } from '../config';
|
|
import { ModelInstanceListItem } from '../config/types';
|
|
|
|
interface InstanceItemProps {
|
|
list: ModelInstanceListItem[];
|
|
handleChildSelect: (
|
|
val: string,
|
|
item: ModelInstanceListItem,
|
|
list: ModelInstanceListItem[]
|
|
) => void;
|
|
}
|
|
|
|
const InstanceItem: React.FC<InstanceItemProps> = ({
|
|
list,
|
|
handleChildSelect
|
|
}) => {
|
|
console.log('instance item====');
|
|
|
|
const intl = useIntl();
|
|
|
|
const childActionList = [
|
|
{
|
|
label: 'common.button.viewlog',
|
|
key: 'viewlog',
|
|
status: [
|
|
InstanceStatusMap.Running,
|
|
InstanceStatusMap.Error,
|
|
InstanceStatusMap.Downloading
|
|
],
|
|
icon: <FieldTimeOutlined />
|
|
},
|
|
{
|
|
label: 'common.button.delete',
|
|
key: 'delete',
|
|
props: {
|
|
danger: true
|
|
},
|
|
icon: <DeleteOutlined />
|
|
}
|
|
];
|
|
|
|
const setChildActionList = useCallback((item: ModelInstanceListItem) => {
|
|
return _.filter(childActionList, (action: any) => {
|
|
if (action.key === 'viewlog') {
|
|
return action.status.includes(item.state);
|
|
}
|
|
return true;
|
|
});
|
|
}, []);
|
|
|
|
const renderWorkerInfo = (item: ModelInstanceListItem) => {
|
|
let workerIp = '-';
|
|
if (item.worker_ip) {
|
|
workerIp = item.port ? `${item.worker_ip}:${item.port}` : item.worker_ip;
|
|
}
|
|
return (
|
|
<div>
|
|
<div>{item.worker_name}</div>
|
|
<div>{workerIp}</div>
|
|
</div>
|
|
);
|
|
};
|
|
return (
|
|
<Space size={16} direction="vertical" style={{ width: '100%' }}>
|
|
{_.map(list, (item: ModelInstanceListItem, index: number) => {
|
|
return (
|
|
<div
|
|
className="_2Q2Yw"
|
|
key={`${item.id}`}
|
|
style={{ borderRadius: 'var(--ant-table-header-border-radius)' }}
|
|
>
|
|
<RowChildren key={`${item.id}_row`}>
|
|
<Row style={{ width: '100%' }} align="middle">
|
|
<Col
|
|
span={5}
|
|
style={{
|
|
paddingInline: 'var(--ant-table-cell-padding-inline)'
|
|
}}
|
|
>
|
|
<Tooltip title={renderWorkerInfo(item)}>
|
|
<span className="m-r-5">{item.name}</span>
|
|
<InfoCircleOutlined />
|
|
</Tooltip>
|
|
</Col>
|
|
<Col span={6}></Col>
|
|
<Col span={4}>
|
|
<span
|
|
style={{ paddingLeft: '68px' }}
|
|
className="flex justify-center"
|
|
>
|
|
{item.state && (
|
|
<StatusTag
|
|
download={
|
|
item.state === InstanceStatusMap.Downloading
|
|
? { percent: item.download_progress }
|
|
: undefined
|
|
}
|
|
statusValue={{
|
|
status: status[item.state] as any,
|
|
text: InstanceStatusMapValue[item.state],
|
|
message: item.state_message
|
|
}}
|
|
></StatusTag>
|
|
)}
|
|
</span>
|
|
</Col>
|
|
<Col span={5}>
|
|
<span style={{ paddingLeft: 45 }} className="flex">
|
|
{dayjs(item.created_at).format('YYYY-MM-DD HH:mm:ss')}
|
|
</span>
|
|
</Col>
|
|
<Col span={4}>
|
|
<div style={{ paddingLeft: 39 }}>
|
|
<DropdownButtons
|
|
items={setChildActionList(item)}
|
|
onSelect={(val: string) =>
|
|
handleChildSelect(val, item, list)
|
|
}
|
|
></DropdownButtons>
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
</RowChildren>
|
|
</div>
|
|
);
|
|
})}
|
|
</Space>
|
|
);
|
|
};
|
|
export default React.memo(InstanceItem);
|