Package Exports
- react-images-uploading
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-images-uploading) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-images-uploading
Images uploader
A simple images uploader without UI. Building by yourself.
Install
npm install --save react-images-uploadingUsage
import * as React from "react";
import ImageUploading from "react-images-uploading";
// { ImageUploadingPropsType, ImageListType, ImageType } is type for typescript
const mode = "single";
const maxNumber = 10;
class Example extends React.Component {
onChange = imageList => {
// data for submit
};
render() {
return (
<ImageUploading mode={mode} onChange={onChange} maxNumber={maxNumber}>
{({ imageList, onImageUpload, onImageRemoveAll }) => (
// write your building UI
<div className="upload__image-wrapper">
<button onClick={onImageUpload}>Upload images</button>
<button onClick={onImageRemoveAll}>Remove all images</button>
{imageList.map(image => (
<div key={image.key}>
<img src={image.dataURL} />
<button onClick={image.onUpdate}>Update</button>
<button onClick={image.onRemove}>Remove</button>
</div>
))}
</div>
)}
</ImageUploading>
);
}
}Props
| parameter | type | options | default | description |
|---|---|---|---|---|
| mode | string | single | multiple | Select just one or multiple images |
| maxNumber | number | 100 | Number of images user can select if mode = "multiple" | |
| onChange | function | Called every update | ||
| defaultValue | array | [{dataURL: ... }, ...] | Init data |
Exported options
| parameter | type | description |
|---|---|---|
| imageList | array | List of images for render. Each item in imageList has some options below. |
| imageList[index].key | string | Generate filename |
| imageList[index].dataURL | string | Url image or base64 |
| imageList[index].onUpdate | function | Call function for replace a new image on current position |
| imageList[index].onRemove | function | Call function for remove current image |
| onImageUpload | function | Call for upload new image(s) |
| onImageRemoveAll | function | Call for remove all image(s) |