2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2016-08-01 16:35:01 +08:00
|
|
|
|
2017-03-23 21:15:49 +08:00
|
|
|
export type UploadFileStatus = 'error' | 'success' | 'done' | 'uploading' | 'removed';
|
2016-08-01 16:35:01 +08:00
|
|
|
|
|
|
|
export interface HttpRequestHeader {
|
|
|
|
[key: string]: string;
|
|
|
|
}
|
|
|
|
|
2017-08-12 13:56:57 +08:00
|
|
|
export interface UploadFile {
|
2016-08-01 16:35:01 +08:00
|
|
|
uid: number;
|
|
|
|
size: number;
|
|
|
|
name: string;
|
2017-11-20 16:43:25 +08:00
|
|
|
filename?: string;
|
|
|
|
lastModified?: string;
|
2016-08-01 16:35:01 +08:00
|
|
|
lastModifiedDate?: Date;
|
|
|
|
url?: string;
|
|
|
|
status?: UploadFileStatus;
|
|
|
|
percent?: number;
|
|
|
|
thumbUrl?: string;
|
2018-04-04 17:17:01 +08:00
|
|
|
isNotImage?: boolean;
|
2016-08-01 16:35:01 +08:00
|
|
|
originFileObj?: File;
|
2017-09-07 15:12:13 +08:00
|
|
|
response?: any;
|
2017-02-15 20:58:40 +08:00
|
|
|
error?: any;
|
2017-10-18 00:05:10 +08:00
|
|
|
linkProps?: any;
|
2017-11-20 16:43:25 +08:00
|
|
|
type: string;
|
2016-08-01 16:35:01 +08:00
|
|
|
}
|
|
|
|
|
2016-09-13 15:31:29 +08:00
|
|
|
export interface UploadChangeParam {
|
2017-08-12 13:56:57 +08:00
|
|
|
file: UploadFile;
|
|
|
|
fileList: Array<UploadFile>;
|
2016-08-01 16:35:01 +08:00
|
|
|
event?: { percent: number };
|
|
|
|
}
|
|
|
|
|
2017-01-10 20:15:02 +08:00
|
|
|
export interface ShowUploadListInterface {
|
|
|
|
showRemoveIcon?: boolean;
|
|
|
|
showPreviewIcon?: boolean;
|
|
|
|
}
|
|
|
|
|
2017-02-28 18:43:22 +08:00
|
|
|
export interface UploadLocale {
|
|
|
|
uploading?: string;
|
|
|
|
removeFile?: string;
|
|
|
|
uploadError?: string;
|
|
|
|
previewFile?: string;
|
|
|
|
}
|
|
|
|
|
2018-04-16 10:58:17 +08:00
|
|
|
export type UploadType = 'drag' | 'select';
|
|
|
|
export type UploadListType = 'text' | 'picture' | 'picture-card';
|
|
|
|
|
2016-08-01 16:35:01 +08:00
|
|
|
export interface UploadProps {
|
2018-04-16 10:58:17 +08:00
|
|
|
type?: UploadType;
|
2016-08-01 16:35:01 +08:00
|
|
|
name?: string;
|
2017-08-12 13:56:57 +08:00
|
|
|
defaultFileList?: Array<UploadFile>;
|
|
|
|
fileList?: Array<UploadFile>;
|
2017-07-19 20:28:18 +08:00
|
|
|
action?: string;
|
2017-08-12 13:56:57 +08:00
|
|
|
data?: Object | ((file: UploadFile) => any);
|
2016-08-01 16:35:01 +08:00
|
|
|
headers?: HttpRequestHeader;
|
2017-01-10 20:15:02 +08:00
|
|
|
showUploadList?: boolean | ShowUploadListInterface;
|
2016-08-01 16:35:01 +08:00
|
|
|
multiple?: boolean;
|
|
|
|
accept?: string;
|
2017-08-12 13:56:57 +08:00
|
|
|
beforeUpload?: (file: UploadFile, FileList: UploadFile[]) => boolean | PromiseLike<any>;
|
2016-08-01 16:35:01 +08:00
|
|
|
onChange?: (info: UploadChangeParam) => void;
|
2018-04-16 10:58:17 +08:00
|
|
|
listType?: UploadListType;
|
2016-08-01 16:35:01 +08:00
|
|
|
className?: string;
|
2017-08-12 13:56:57 +08:00
|
|
|
onPreview?: (file: UploadFile) => void;
|
|
|
|
onRemove?: (file: UploadFile) => void | boolean;
|
2016-08-01 16:35:01 +08:00
|
|
|
supportServerRender?: boolean;
|
|
|
|
style?: React.CSSProperties;
|
2016-08-16 18:07:37 +08:00
|
|
|
disabled?: boolean;
|
2016-09-14 16:18:33 +08:00
|
|
|
prefixCls?: string;
|
2017-02-24 16:06:57 +08:00
|
|
|
customRequest?: (option: any) => void;
|
|
|
|
withCredentials?: boolean;
|
2017-02-28 18:43:22 +08:00
|
|
|
locale?: UploadLocale;
|
2016-08-01 16:35:01 +08:00
|
|
|
}
|
|
|
|
|
2017-11-20 16:31:41 +08:00
|
|
|
export interface UploadState {
|
|
|
|
fileList: UploadFile[];
|
|
|
|
dragState: string;
|
|
|
|
}
|
|
|
|
|
2016-08-01 16:35:01 +08:00
|
|
|
export interface UploadListProps {
|
2018-04-16 10:58:17 +08:00
|
|
|
listType?: UploadListType;
|
2017-08-12 13:56:57 +08:00
|
|
|
onPreview?: (file: UploadFile) => void;
|
|
|
|
onRemove?: (file: UploadFile) => void | boolean;
|
|
|
|
items?: Array<UploadFile>;
|
2016-08-01 16:35:01 +08:00
|
|
|
progressAttr?: Object;
|
2016-09-14 16:18:33 +08:00
|
|
|
prefixCls?: string;
|
2017-01-10 20:15:02 +08:00
|
|
|
showRemoveIcon?: boolean;
|
|
|
|
showPreviewIcon?: boolean;
|
2017-02-28 18:43:22 +08:00
|
|
|
locale: UploadLocale;
|
2016-08-01 16:35:01 +08:00
|
|
|
}
|