|
|
|
import * as React from 'react';
|
|
|
|
|
|
|
|
export type UploadFileStatus = 'error' | 'success' | 'done' | 'uploading' | 'removed';
|
|
|
|
|
|
|
|
export interface HttpRequestHeader {
|
|
|
|
[key: string]: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RcFile extends File {
|
|
|
|
uid: string;
|
|
|
|
readonly lastModifiedDate: Date;
|
|
|
|
readonly webkitRelativePath: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RcCustomRequestOptions {
|
|
|
|
onProgress: (event: { percent: number }, file: File) => void;
|
|
|
|
onError: (error: Error) => void;
|
|
|
|
onSuccess: (response: object, file: File) => void;
|
|
|
|
data: object;
|
|
|
|
filename: string;
|
|
|
|
file: File;
|
|
|
|
withCredentials: boolean;
|
|
|
|
action: string;
|
|
|
|
headers: object;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UploadFile {
|
|
|
|
uid: string;
|
|
|
|
size: number;
|
|
|
|
name: string;
|
|
|
|
fileName?: string;
|
|
|
|
lastModified?: number;
|
|
|
|
lastModifiedDate?: Date;
|
|
|
|
url?: string;
|
|
|
|
status?: UploadFileStatus;
|
|
|
|
percent?: number;
|
|
|
|
thumbUrl?: string;
|
|
|
|
originFileObj?: File | Blob;
|
|
|
|
response?: any;
|
|
|
|
error?: any;
|
|
|
|
linkProps?: any;
|
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UploadChangeParam<T extends object = UploadFile> {
|
|
|
|
// https://github.com/ant-design/ant-design/issues/14420
|
|
|
|
file: T;
|
|
|
|
fileList: Array<UploadFile>;
|
|
|
|
event?: { percent: number };
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ShowUploadListInterface {
|
|
|
|
showRemoveIcon?: boolean;
|
|
|
|
showPreviewIcon?: boolean;
|
|
|
|
showDownloadIcon?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UploadLocale {
|
|
|
|
uploading?: string;
|
|
|
|
removeFile?: string;
|
|
|
|
downloadFile?: string;
|
|
|
|
uploadError?: string;
|
|
|
|
previewFile?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export type UploadType = 'drag' | 'select';
|
|
|
|
export type UploadListType = 'text' | 'picture' | 'picture-card';
|
|
|
|
|
|
|
|
type PreviewFileHandler = (file: File | Blob) => PromiseLike<string>;
|
|
|
|
type TransformFileHandler = (
|
|
|
|
file: RcFile,
|
|
|
|
) => string | Blob | File | PromiseLike<string | Blob | File>;
|
|
|
|
|
|
|
|
export interface UploadProps {
|
|
|
|
type?: UploadType;
|
|
|
|
name?: string;
|
|
|
|
defaultFileList?: Array<UploadFile>;
|
|
|
|
fileList?: Array<UploadFile>;
|
|
|
|
action?: string | ((file: RcFile) => string) | ((file: RcFile) => PromiseLike<string>);
|
|
|
|
directory?: boolean;
|
|
|
|
data?: object | ((file: UploadFile) => object);
|
|
|
|
headers?: HttpRequestHeader;
|
|
|
|
showUploadList?: boolean | ShowUploadListInterface;
|
|
|
|
multiple?: boolean;
|
|
|
|
accept?: string;
|
|
|
|
beforeUpload?: (file: RcFile, FileList: RcFile[]) => boolean | PromiseLike<void>;
|
|
|
|
onChange?: (info: UploadChangeParam) => void;
|
|
|
|
listType?: UploadListType;
|
|
|
|
className?: string;
|
|
|
|
onPreview?: (file: UploadFile) => void;
|
|
|
|
onDownload?: (file: UploadFile) => void;
|
|
|
|
onRemove?: (file: UploadFile) => void | boolean | Promise<void | boolean>;
|
|
|
|
supportServerRender?: boolean;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
disabled?: boolean;
|
|
|
|
prefixCls?: string;
|
|
|
|
customRequest?: (options: RcCustomRequestOptions) => void;
|
|
|
|
withCredentials?: boolean;
|
|
|
|
openFileDialogOnClick?: boolean;
|
|
|
|
locale?: UploadLocale;
|
|
|
|
id?: string;
|
|
|
|
previewFile?: PreviewFileHandler;
|
|
|
|
transformFile?: TransformFileHandler;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UploadState {
|
|
|
|
fileList: UploadFile[];
|
|
|
|
dragState: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UploadListProps {
|
|
|
|
listType?: UploadListType;
|
|
|
|
onPreview?: (file: UploadFile) => void;
|
|
|
|
onDownload?: (file: UploadFile) => void;
|
|
|
|
onRemove?: (file: UploadFile) => void | boolean;
|
|
|
|
items?: Array<UploadFile>;
|
|
|
|
progressAttr?: Object;
|
|
|
|
prefixCls?: string;
|
|
|
|
showRemoveIcon?: boolean;
|
|
|
|
showDownloadIcon?: boolean;
|
|
|
|
showPreviewIcon?: boolean;
|
|
|
|
locale: UploadLocale;
|
|
|
|
previewFile?: PreviewFileHandler;
|
|
|
|
}
|