Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kanety/stimulus-uploader


https://github.com/kanety/stimulus-uploader

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# stimulus-uploader

A stimulus controller for simple file uploader.

## Dependencies

* @hotwired/stimulus 3.0

## Installation

Install from npm:

$ npm install @kanety/stimulus-uploader --save

## Usage

Register controller:

```javascript
import { Application } from '@hotwired/stimulus';
import UploaderController from '@kanety/stimulus-uploader';

const application = Application.start();
application.register('uploader', UploaderController);
```

Import css:

```css
@import '@kanety/stimulus-uploader';
```

Build html as follows:

```html




```

### Optional targets

#### progress

You can specify element to show progress message as follows:

```html





```

### Options

#### params

Set additional query parameters:

```html



```

You can also set global query parameters as follows:

```javascript
import UploaderController from '@kanety/stimulus-uploader';
// set by object
UploaderController.params = { key: 'value' };
// set by function
UploaderController.params = () => {
return { key: "value" };
}
```

#### fetch-options

Set additional fetch options recognized by fetch API:

```html



```

You can also set global options as follows:

```javascript
import UploaderController from '@kanety/stimulus-uploader';
UploaderController.fetchOptions = { key: 'value' };
```

### Callbacks

Run callbacks when files are uploaded or failed:

```javascript
let element = document.querySelector('[data-controller="uploader"]');
element.addEventListener('uploader:before', e => {
console.log(e.detail.files);
});
element.addEventListener('uploader:start', e => {
console.log(e.detail.index + ":" + e.detail.file);
});
element.addEventListener('uploader:done', e => {
console.log(e.detail.index + ":" + e.detail.file);
});
element.addEventListener('uploader:fail', e => {
console.log(e.detail.index + ":" + e.detail.file);
});
element.addEventListener('uploader:end', e => {
console.log(e.detail.index + ":" + e.detail.file);
});
element.addEventListener('uploader:after', e => {
console.log(e.detail.files);
});
```

## License

The library is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).