New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

file-button

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

file-button

Turn a DOM element into a file input

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

Example

javascript
var filebutton = require('file-button');
var request = require('superagent');

filebutton
  .create()
  .on('fileinput', function(fileinput){
  
    var req = request.post('/upload/')
    var files = fileinput.files;
    var file;
    
    for(var i = 0, len = files.length; i < len; ++i){
      var file = files[i];
      req.attach('ajaxfile-' + i, file, file.name);
    }
    
    req
      .on('progress', function(e){
      
        if (e.lengthComputable) {
        
        	// handle progress bar here
        }
      })
      .end(function(err, res) {
      
        if (res.ok) {
        
           // handle successful result here
        }
      });
    
  })
  .mount(document.getElementById('button'));

html
<a id="button" >Upload</a>

or

<div id = "button">Upload</div>

or

<button id="button">Upload</button> // IE8 won't work

Test

$ npm test

Basic

var filebutton = require('file-button');

filebutton
  .create() // create the instance
  .on('fileinput', listener) // listen to the event `fileinput`
  .mount(el); // mount the view on the button

API

FileButton.create([options])

A file-button can be initiated by invoking the .create() method. For example.

var filebutton = require('file-button');

filebutton.create();

The file-button instance is also an Event-Emitter using component-emitter.

options : {Object}

  • multiple: {Boolean}, default to true
  • accept: {String}, default to null
  • fieldName: {String}, default to 'ajaxfile'

Event: 'fileinput'

Emitted each time the file input value is changed. The fileinput element will be removed from the DOM Tree and emitted to the listener.

Event: 'destroyed'

Emitted after the instance is destroyed.

filebutton.mount({HtmlElement})

Mount the view on an element. For example, a bootstrap button

<a class="btn btn-lg btn-primary">Upload</a>

filebutton.enable()

Enable the file input button.

filebutton.disable()

Disable the file input button.

filebutton.destroy()

Destroy the file input button. A destroyed event will be emitted.

Keywords

FAQs

Package last updated on 24 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc