# react-smartui-fileupload

> React fileupload component for smartui project

Latest version **0.6.0** (published 2017-10-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-smartui-fileupload
pnpm add react-smartui-fileupload
yarn add react-smartui-fileupload
bun add react-smartui-fileupload
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.6.0 |
| Published | 2017-10-03 |
| First published | 2017-09-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Mondit Thumniramon |
| Maintainers | orangeike |
| Keywords | react, smartui, fileupload |

## Links

- npm: https://www.npmjs.com/package/react-smartui-fileupload
- Repository: https://github.com/GA-MO/react-component-npm-package-boilerplate
- Issues: https://github.com/GA-MO/react-component-npm-package-boilerplate/issues
- npm.io page: https://npm.io/package/react-smartui-fileupload

## Dependencies (1)

- [react-dropzone](https://npm.io/package/react-dropzone.md) ^4.1.2

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.6.0 (latest) — 2017-10-03
- 0.5.0 — 2017-10-03
- 0.4.0 — 2017-10-03
- 0.3.0 — 2017-09-28
- 0.2.0 — 2017-09-19
- 0.1.0 — 2017-09-19

## README

# React FileUpload Component
Asynchronous FileUpload Component for SmartUI Project

## Special Thanks GA-MO
### This Repository created by ***React Component Boilerplate***
React Component boilerplate for creating new Reac Compoment and everything you need to get started.

<https://github.com/GA-MO/react-component-npm-package-boilerplate/>

### Prerequisite
Please import font-awesome to your project
- https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css

### Getting Started
```
$ npm install react-smartui-fileupload
```

### Quick Usage
Copy following code to your react component

```js
import FileUploadInput from 'react-smartui-fileupload'
import 'react-smartui-fileupload/css/style.css'
.
.
.
onUpload = (name, file) => {
  return new Promise((resolve, reject) => {
    // promise to upload file
    setTimeout(() => {
      resolve(true)
    }, 500)
  })
}

onDelete = (name, file) => {
  return new Promise((resolve, reject) => {
    // promise to delete file
    setTimeout(() => {
      resolve(true)
    }, 500)
  })
}

render() {
  return (
    <FileUploadInput
      name={'file'}
      label={'File'}
      fileName={''}
      onUpload={this.onUpload}
      onDelete={this.onDelete}
    />
  )
}
```

### Error Handling
This component can handle error in case property ***onUpload*** or ***onDelete*** is rejected and it will grab error.message (new Error('Something error')) to show instead of 'กรุณาเลือกไฟล์'

```js
onDelete = (name, file) => {
  return new Promise((resolve, ir) => {
    // promise to delete file
    setTimeout(() => {
      reject(new Error('Cannot upload file'))
    }, 500)
  })
}
```

### Props

Property  | Description | Type | Default
------------- | ------------- | ------------- | -------------
name  | name of component for identify each component | String | 'File'
label  | UI text label of component | String | ''
required  | Flag to render * with red  | Boolean | false
fileName  | File's name | String | ''
async  | Flag to using asynchronous feature | Boolean | true
accept  | Mime types of accept files | String | '*'
onDrop  | Event handler after file is chosen | function(name, file) | null
onUpload  | Event handler after file need to upload| function(name, file) | null
onDelete  | Event handler after button delete is clicked | function(name, file) | null

If you have any suggestions, feel free to contact me mondit.thum@gmail.com
Thank you !!

---
_Source: https://npm.io/package/react-smartui-fileupload · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
