82 lines
2.0 KiB
TypeScript
82 lines
2.0 KiB
TypeScript
import { AutoTooltip, DropdownButtons, icons } from '@gpustack/core-ui';
|
|
import { useIntl } from '@umijs/max';
|
|
import type { ColumnsType } from 'antd/lib/table';
|
|
import dayjs from 'dayjs';
|
|
import { useMemo } from 'react';
|
|
import { ListItem } from '../config/types';
|
|
|
|
const rowActionList = [
|
|
{
|
|
label: 'common.button.edit',
|
|
key: 'edit',
|
|
locale: true,
|
|
icon: icons.EditOutlined
|
|
},
|
|
{
|
|
label: 'common.button.delete',
|
|
key: 'delete',
|
|
locale: true,
|
|
icon: icons.DeleteOutlined,
|
|
props: {
|
|
danger: true
|
|
}
|
|
}
|
|
];
|
|
|
|
interface ColumnsHookProps {
|
|
handleSelect: (val: string, record: ListItem) => void;
|
|
sortOrder: string[];
|
|
}
|
|
|
|
const usePublicKeyColumns = ({
|
|
handleSelect,
|
|
sortOrder
|
|
}: ColumnsHookProps): ColumnsType<ListItem> => {
|
|
const intl = useIntl();
|
|
return useMemo(() => {
|
|
return [
|
|
{
|
|
title: intl.formatMessage({ id: 'common.table.name' }),
|
|
dataIndex: 'name',
|
|
key: 'name',
|
|
sorter: true,
|
|
ellipsis: {
|
|
showTitle: false
|
|
},
|
|
render: (text: string, record: ListItem) => (
|
|
<AutoTooltip ghost style={{ maxWidth: 360 }}>
|
|
<span className="text-primary">{record.displayName || text}</span>
|
|
</AutoTooltip>
|
|
)
|
|
},
|
|
{
|
|
title: intl.formatMessage({ id: 'common.table.createTime' }),
|
|
dataIndex: 'created_at',
|
|
key: 'created_at',
|
|
sorter: false,
|
|
ellipsis: {
|
|
showTitle: false
|
|
},
|
|
render: (text: string) => (
|
|
<AutoTooltip ghost>
|
|
{text ? dayjs(text).format('YYYY-MM-DD HH:mm:ss') : '-'}
|
|
</AutoTooltip>
|
|
)
|
|
},
|
|
{
|
|
title: intl.formatMessage({ id: 'common.table.operation' }),
|
|
key: 'operation',
|
|
dataIndex: 'operation',
|
|
render: (_text, record) => (
|
|
<DropdownButtons
|
|
items={rowActionList}
|
|
onSelect={(val) => handleSelect(val, record)}
|
|
/>
|
|
)
|
|
}
|
|
];
|
|
}, [handleSelect, sortOrder, intl]);
|
|
};
|
|
|
|
export default usePublicKeyColumns;
|