815b3758a7
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 47s
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Successful in 5m25s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 2m37s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 2m25s
CI/CD Pipeline / Unit Tests (push) Successful in 9m11s
CI/CD Pipeline / Integration Tests (push) Successful in 2m40s
CI/CD Pipeline / Frontend Lint (push) Has been skipped
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 3m7s
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 15m16s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 3m2s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 7m58s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / CI Gate (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been cancelled
CI/CD Pipeline / Staging API Integration Tests (push) Has been cancelled
CI/CD Pipeline / ACR Image Cleanup (push) Has been cancelled
CI/CD Pipeline / Canary Release to Production (push) Has been cancelled
129 lines
3.6 KiB
TypeScript
Executable File
129 lines
3.6 KiB
TypeScript
Executable File
import { Tag, Button, Popconfirm, Tooltip } from "antd"
|
|
import { RedoOutlined, InfoCircleOutlined } from "@ant-design/icons"
|
|
import type { ColumnsType } from "antd/es/table"
|
|
import type { TaskItem, TaskStatus } from "@/api/tasks"
|
|
import { STATUS_CONFIG, TYPE_LABELS } from "../../constants"
|
|
import { formatDuration, formatTime } from "../../utils"
|
|
|
|
interface UseTaskTableColumnsOptions {
|
|
retryLoading: boolean
|
|
onRetry: (id: string) => void
|
|
onViewDetail: (record: TaskItem) => void
|
|
}
|
|
|
|
export function useTaskTableColumns({
|
|
retryLoading,
|
|
onRetry,
|
|
onViewDetail,
|
|
}: UseTaskTableColumnsOptions): ColumnsType<TaskItem> {
|
|
return [
|
|
{
|
|
title: "任务ID",
|
|
dataIndex: "id",
|
|
key: "id",
|
|
width: 120,
|
|
ellipsis: true,
|
|
render: (id: string) => (
|
|
<Tooltip title={id}>
|
|
<span className="task-id">{id.slice(0, 8)}...</span>
|
|
</Tooltip>
|
|
),
|
|
},
|
|
{
|
|
title: "类型",
|
|
dataIndex: "task_type",
|
|
key: "task_type",
|
|
width: 100,
|
|
render: (type: string) => {
|
|
const config = TYPE_LABELS[type] || { label: type, color: "default" }
|
|
return <Tag color={config.color}>{config.label}</Tag>
|
|
},
|
|
},
|
|
{
|
|
title: "状态",
|
|
dataIndex: "status",
|
|
key: "status",
|
|
width: 120,
|
|
render: (status: TaskStatus, record: TaskItem) => {
|
|
const config = STATUS_CONFIG[status] || {
|
|
label: status,
|
|
color: "default",
|
|
icon: null,
|
|
}
|
|
return (
|
|
<Tag color={config.color} icon={config.icon} className="task-status-tag">
|
|
{config.label}
|
|
{status === "running" && record.progress > 0 && (
|
|
<span className="task-progress"> {record.progress}%</span>
|
|
)}
|
|
</Tag>
|
|
)
|
|
},
|
|
},
|
|
{
|
|
title: "当前步骤",
|
|
dataIndex: "current_step",
|
|
key: "current_step",
|
|
width: 150,
|
|
ellipsis: true,
|
|
render: (step: string) => <span className="task-step">{step || "-"}</span>,
|
|
},
|
|
{
|
|
title: "耗时",
|
|
dataIndex: "duration_seconds",
|
|
key: "duration_seconds",
|
|
width: 100,
|
|
render: (seconds: number) => <span className="task-duration">{formatDuration(seconds)}</span>,
|
|
},
|
|
{
|
|
title: "创建时间",
|
|
dataIndex: "created_at",
|
|
key: "created_at",
|
|
width: 120,
|
|
render: (time: string) => <span className="task-time">{formatTime(time)}</span>,
|
|
},
|
|
{
|
|
title: "操作",
|
|
key: "action",
|
|
width: 100,
|
|
fixed: "right",
|
|
render: (_: unknown, record: TaskItem) => {
|
|
if (record.status === "failed" && record.retryable) {
|
|
return (
|
|
<Popconfirm
|
|
title="确认重试"
|
|
description="确定要重试这个失败的任务吗?"
|
|
onConfirm={() => onRetry(record.id)}
|
|
okText="确定"
|
|
cancelText="取消"
|
|
>
|
|
<Button
|
|
type="link"
|
|
size="small"
|
|
icon={<RedoOutlined />}
|
|
loading={retryLoading}
|
|
className="task-retry-btn"
|
|
>
|
|
重试
|
|
</Button>
|
|
</Popconfirm>
|
|
)
|
|
}
|
|
if (record.status === "failed") {
|
|
return (
|
|
<Button
|
|
type="link"
|
|
size="small"
|
|
icon={<InfoCircleOutlined />}
|
|
onClick={() => onViewDetail(record)}
|
|
>
|
|
详情
|
|
</Button>
|
|
)
|
|
}
|
|
return <span className="task-action-placeholder">-</span>
|
|
},
|
|
},
|
|
]
|
|
}
|