| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { DeleteOutlined, UploadOutlined } from '@ant-design/icons';
- import SystemConst from '@/utils/const';
- import Token from '@/utils/token';
- import { useEffect, useState } from 'react';
- import { connect } from '@formily/react';
- import { Input, Upload } from 'antd';
- import type { UploadChangeParam } from 'antd/lib/upload/interface';
- import './index.less';
- import { service } from '@/pages/device/Firmware';
- interface Props {
- value: any;
- onChange: (value: any) => void;
- placeholder: string;
- beforeUpload: any;
- }
- const FUpload = connect((props: Props) => {
- const [url, setUrl] = useState<any>(props?.value?.url);
- const handleChange = async (info: UploadChangeParam) => {
- if (info.file.status === 'done') {
- const result = info.file.response?.result;
- const api = await service.querySystemApi(['paths']);
- const f = {
- ...result,
- url: `${api?.result[0]?.properties['base-path']}/file/${result?.id}?accessKey=${result?.others?.accessKey}`,
- };
- setUrl(f.url);
- props.onChange(f);
- }
- };
- useEffect(() => {
- setUrl(props.value?.url);
- }, [props.value]);
- return (
- <Upload
- beforeUpload={props.beforeUpload}
- action={`/${SystemConst.API_BASE}/file/upload`}
- headers={{
- 'X-Access-Token': Token.get(),
- }}
- multiple={false}
- onChange={handleChange}
- progress={{
- format: (percent) => percent && `${parseFloat(percent.toFixed(2))}%`,
- }}
- showUploadList={{
- removeIcon: (
- <DeleteOutlined
- onClick={() => {
- setUrl('');
- props.onChange(undefined);
- }}
- />
- ),
- }}
- >
- <Input
- placeholder={props.placeholder}
- value={url || ''}
- readOnly
- addonAfter={<UploadOutlined />}
- />
- </Upload>
- );
- });
- export default FUpload;
|