| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- import { PageContainer } from '@ant-design/pro-layout';
- import type { ActionType, ProColumns } from '@jetlinks/pro-table';
- import ProTable from '@jetlinks/pro-table';
- import { message, Popconfirm, Tooltip } from 'antd';
- import { useRef, useState } from 'react';
- import { useIntl } from '@@/plugin-locale/localeExports';
- import {
- ControlOutlined,
- DeleteOutlined,
- EyeOutlined,
- PlusOutlined,
- StopOutlined,
- } from '@ant-design/icons';
- import { useHistory, useLocation } from 'umi';
- import { model } from '@formily/reactive';
- import { observer } from '@formily/react';
- import type { FirmwareItem } from '@/pages/device/Firmware/typings';
- import Save from './Save';
- import { onlyMessage } from '@/utils/util';
- import { PermissionButton, AIcon } from '@/components';
- import useDomFullHeight from '@/hooks/document/useDomFullHeight';
- import usePermissions from '@/hooks/permission';
- import SearchComponent from '@/components/SearchComponent';
- import { getMenuPathByParams, MENUS_CODE } from '@/utils/menu';
- import { service } from '@/pages/device/Firmware';
- const UpgradeBtn = (props: { data: any; actions: any }) => {
- const { data, actions } = props;
- if (data.waiting > 0 && data?.state?.value === 'processing') {
- return (
- <a>
- <Tooltip title={'停止'}>
- <StopOutlined
- onClick={async () => {
- const resp = await service.stopTask(data.id);
- if (resp.status === 200) {
- message.success('操作成功!');
- actions?.reload();
- }
- }}
- />
- </Tooltip>
- </a>
- );
- } else if (data?.state?.value === 'canceled') {
- return (
- <a>
- <Tooltip title={'继续升级'}>
- <ControlOutlined
- onClick={async () => {
- const resp = await service.startTask(data.id, ['canceled']);
- if (resp.status === 200) {
- message.success('操作成功!');
- actions?.reload();
- }
- }}
- />
- </Tooltip>
- </a>
- );
- }
- return null;
- };
- export const state = model<{
- current?: FirmwareItem;
- visible: boolean;
- }>({
- visible: false,
- });
- const Task = observer(() => {
- const actionRef = useRef<ActionType>();
- const intl = useIntl();
- const { minHeight } = useDomFullHeight(`.firmware-task`, 24);
- const { permission } = usePermissions('device/Firmware');
- const [param, setParam] = useState({});
- const history = useHistory<Record<string, string>>();
- const location = useLocation<{ id: string }>();
- const id = (location as any).query?.id || localStorage.getItem('TaskId');
- const productId = (location as any).query?.productId || localStorage.getItem('TaskProductId');
- const columns: ProColumns<any>[] = [
- {
- title: '任务名称',
- ellipsis: true,
- dataIndex: 'name',
- },
- {
- title: '推送方式',
- ellipsis: true,
- dataIndex: 'mode',
- render: (text: any, record: any) => record?.mode?.text || '',
- valueType: 'select',
- valueEnum: {
- pull: {
- text: '设备拉取',
- status: 'pull',
- },
- push: {
- text: '平台推送',
- status: 'push',
- },
- },
- },
- {
- title: intl.formatMessage({
- id: 'pages.table.description',
- defaultMessage: '说明',
- }),
- ellipsis: true,
- dataIndex: 'description',
- },
- {
- title: '完成比例',
- ellipsis: true,
- hideInSearch: true,
- dataIndex: 'progress',
- renderText: (text) => <>{text}%</>,
- // valueType: 'digit',
- },
- {
- title: intl.formatMessage({
- id: 'pages.data.option',
- defaultMessage: '操作',
- }),
- valueType: 'option',
- width: 200,
- fixed: 'right',
- render: (text, record) => [
- <PermissionButton
- key={'api'}
- type={'link'}
- style={{ padding: 0 }}
- isPermission={true}
- tooltip={{
- title: '详情',
- }}
- onClick={() => {
- const url = getMenuPathByParams(MENUS_CODE['device/Firmware/Task/Detail'], record?.id);
- history.push(url);
- }}
- >
- <AIcon type={'icon-details'} />
- </PermissionButton>,
- <a
- onClick={() => {
- state.visible = true;
- state.current = record;
- }}
- key="link"
- >
- <Tooltip title="查看" key={'detail'}>
- <EyeOutlined />
- </Tooltip>
- </a>,
- <UpgradeBtn data={record} actions={actionRef.current} key="btn" />,
- <a key="delete">
- <Popconfirm
- title={
- record.waiting > 0 || record.processing > 0
- ? '删除将导致正在进行的任务终止,确定要删除吗?'
- : intl.formatMessage({
- id: 'pages.data.option.remove.tips',
- defaultMessage: '确认删除?',
- })
- }
- onConfirm={async () => {
- const resp = await service.deleteTask(record.id);
- if (resp.status === 200) {
- onlyMessage(
- intl.formatMessage({
- id: 'pages.data.option.success',
- defaultMessage: '操作成功!',
- }),
- );
- actionRef.current?.reload();
- } else {
- message.error(resp?.message || '删除失败!');
- }
- }}
- >
- <Tooltip
- title={intl.formatMessage({
- id: 'pages.data.option.remove',
- defaultMessage: '删除',
- })}
- >
- <DeleteOutlined />
- </Tooltip>
- </Popconfirm>
- </a>,
- ],
- },
- ];
- return (
- <PageContainer>
- <SearchComponent<FirmwareItem>
- field={columns}
- target="firmware-task"
- onSearch={(data) => {
- // 重置分页数据
- actionRef.current?.reset?.();
- setParam(data);
- }}
- defaultParam={[{ column: 'firmwareId', value: id }]}
- />
- <ProTable<FirmwareItem>
- scroll={{ x: 1366 }}
- tableClassName={'firmware-task'}
- tableStyle={{ minHeight }}
- search={false}
- params={param}
- rowKey="id"
- columnEmptyText={''}
- headerTitle={
- <div>
- <PermissionButton
- onClick={() => {
- state.visible = true;
- state.current = undefined;
- }}
- isPermission={permission.add}
- key="button"
- icon={<PlusOutlined />}
- type="primary"
- >
- {intl.formatMessage({
- id: 'pages.data.option.add',
- defaultMessage: '新增',
- })}
- </PermissionButton>
- </div>
- }
- request={async (params) =>
- service.task({
- ...params,
- sorts: [{ name: 'createTime', order: 'desc' }],
- })
- }
- columns={columns}
- actionRef={actionRef}
- />
- {state.visible && (
- <Save
- data={state.current}
- ids={{ id: id, productId: productId }}
- save={() => {
- state.visible = false;
- actionRef.current?.reload?.();
- }}
- close={() => {
- state.visible = false;
- }}
- />
- )}
- </PageContainer>
- );
- });
- export default Task;
|