Giter Club home page Giter Club logo

ui-uploader's Introduction

ui-uploader Build Status npm version Bower version Join the chat at https://gitter.im/angular-ui/ui-uploader

ui-uploader is a single/multiple and high customizable file uploader and the most important is very easy to implement.

  • Upload multiple or single files
  • Cancel or remove upload when you want.
  • Allows concurrent Upload
  • Totally cutomizable

You can use with html5, jquery or every library or framework:

The main objective of ui-uploader is to have a user control, clean, simple, customizable, and above all very easy to implement.

Try the demo.

Compatibility

Because this project uses FormData, it does not work on IE9 or earlier.

Requirements

  • AngularJS

Usage

You can get it from Bower

bower install angular-ui-uploader

Load the script files in your application:

<script type="text/javascript" src="bower_components/angular/angular.js"></script>
<script type="text/javascript" src="bower_components/angular-ui-uploader/dist/uploader.js"></script>

Add the specific module to your dependencies:

angular.module('myApp', ['ui.uploader', ...])

Now you can use the ui-uploader methods.

$uiUploader.addFiles(files);
$uiUploader.remove(file);
$uiUploader.removeAll();

Configure ui-uploader callbacks and start!

$uiUploader.startUpload({
                url: 'http://my_domain.com',
                concurrency: 2,
                onProgress: function(file) {
                    // file contains a File object
                    console.log(file);
                },
                onUploadSuccess: function(file) {
                    // file contains a File object
                    console.log(file);
                },
                onCompleted: function(file, responseText, status) {
                    // file contains a File object
                    console.log(file);
                    // responseText contains the server response as text
                    console.log(responseText);
                    // status contains the status of the response
                    console.log(status);
                },
                onCompletedAll: function(files) {
                	// files is an array of File objects
                	console.log(files);
                }
            });

Perform CORS AJAX requests by setting the options.withCredentials flag to true!

$uiUploader.startUpload({
                url: 'http://my_domain.com/path/to/api-endpoint',
                options: {
                	withCredentials: true
                },
                onProgress: function(file) {
                    // do stuff
                },
                onUploadSuccess: function(file) {
                    // do stuff
                },
                onCompleted: function(file, responseText, status) {
                    // do stuff
                },
                onCompletedAll: function(files) {
                	// do stuff
                }
            });

Configure custom request headers by options.headers field

$uiUploader.startUpload({
                url: 'http://my_domain.com',
                concurrency: 2,
                headers: {
                    'Accept': 'application/json'
                },
                onCompletedAll: function(files) {
                	// files is an array of File objects
                	console.log(files);
                }
            });

Development

We use Karma and jshint to ensure the quality of the code. The easiest way to run these checks is to use grunt:

npm install -g gulp-cli
npm install && bower install
gulp

The karma task will try to open Firefox and Chrome as browser in which to run the tests. Make sure this is available or change the configuration in karma.conf.js

Gulp watch

gulp watch will automatically test your code and build a release whenever source files change.

How to release

Use gulp to bump version, build and create a tag. Then push to GitHub:

gulp release [--patch|--minor|--major]
git push --tags origin master # push everything to GitHub

Travis will take care of testing and publishing to npm's registry (bower will pick up the change automatically). Finally create a release on GitHub from the tag created by Travis.

ui-uploader's People

Contributors

0x-r4bbit avatar aidanhs avatar ajoslin avatar asadighi avatar caiotoon avatar dandoyon avatar dhilt avatar doogd avatar douglasduteil avatar edwardhotchkiss avatar jimallanson avatar joshkurz avatar just-boris avatar meghan-mcqueeney avatar mfeingold avatar nateredding avatar petebacondarwin avatar peterdavehello avatar pkozlowski-opensource avatar pocesar avatar powerkiki avatar proloser avatar realtica avatar shaungrady avatar solidspark avatar teamon avatar thetrevdev avatar toddbranch avatar vinniefranco avatar ziv avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ui-uploader's Issues

Add stop upload functionality

Currently there is no option to stop the ajax upload request, after its started.

function ajaxUpload(...){
      xhr.onabort = function () {
        self.activeUploads--;
        startUpload(self.options);
      };
}

function startUpload(options) {
...
self.files[i].xhr = ajaxUpload(...);
}


    function stopUpload(file) {
      if (file.xhr)
        file.xhr.abort();

      removeFile(file);
    }

Files not uploading on Firefox Android

Hello,

Great work with this! However, files aren't uploading on Firefox on Android, including the demo.

Browser - Firefox 54.0.1
OS - Android 7.0

Please advise. Thank you.

onCompleted no longer returns response from server

As part of the changes for PR #22, callbacks to onCompleted no longer return the response from the server since the callback is now triggered when the byte upload is complete, not when the server has responded. We need to see the server response (both the response code and body content) from the upload.

I suspect it was a non-intentional side effect of the pull request - perhaps there should now be an additional callback of onCompletedUpload to handle the new case and the original onCompleted can be restored to its original function.

withCredentials not working correctly in options

When specifying options.withCredentials in the startUpload options object as below, it isn't respected correctly.

$uiUploader.startUpload({
    url: 'http://my_domain.com',
    concurrency: 2,
    options: {
        withCredentials: true
    }
})

Looks like the uploader code is looking at the data key instead of the options key. Changing it to be data instead of options sets the XHR withCredentials property correctly, but this also makes the withCredentials value be added as a form field in the POST request.

uiUploader config - URL?

In your Configure ui-uploader callbacks, you have URL option.

What's the URL file expected function should be doing and data structure?

I am using API .Net and AngularJS. I can not figure out what API call should i use.

Using ui-uploader in ng-repeated directives

Hi,

We have a isolated-scope directive, which is dynamically created using ng-repeat.
In this directive we have upload functionality.
If the directive is repeated for 10 times, we will have 10 upload buttons.
Problem is since, since, ui-uploader is singleton service, when we upload a files using one of the upload button, the same file is being shown in all the 10 directive templates.
Is there a way for each of these directives can independently hold files?

Thanks

Setting key in ajaxUpload

On line 68 I see:

var xhr, formData, prop, key = '' || 'file';

What is the point of '' || 'file'

Doesn't it always evaluate to 'file'?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.