GithubHelp home page GithubHelp logo

lambtron / angular-file-upload Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nervgh/angular-file-upload

0.0 3.0 0.0 266 KB

Angular File Upload is a module for the AngularJS framework

License: MIT License

angular-file-upload's Introduction

#Angular File Upload


English documentation

About

Angular File Upload is a module for the AngularJS framework. Supports drag-n-drop upload, upload progress, validation filters and a file upload queue. It supports native HTML5 uploads, but degrades to a legacy iframe upload method for older browsers. Works with any server side platform which supports standard HTML form uploads.

When files are selected or dropped into the component, one or more filters are applied. Files which pass all filters are added to the queue and are ready to be uploaded.

Live demo.

Requires

  • The AngularJS framework
  • ES5 (Array.indexOf, Array.forEach, Array.filter, Array.every, Function.bind, Date.now) A shim is provided for older browsers

Includes

Directives

  • ngFileSelect: Should be applied to <input type="file" />. The selected files are added to the uploaded queue if they have passed the filters.
  • ngFileDrop: Set up a drop area. Usually applied to the entire document. Caught files are added to the uploaded queue if they have passed the filters.
  • ngFileOver: Should be applied to the element which will change class when files are about to be placed on the drop area. By default it adds the class ng-file-over but a different class can be specified with the parameter attribute ng-file-over="className".

Service

  • $fileUploader: Manages the upload queue and the uploading of files

The Uploader API:

Properties

  • scope {Object}: Scope for HTML update, default is $rootScope
  • url {String}: Path on the server to upload files
  • alias {String}: Name of the field which will contain the file, default is file
  • queue {Array}: Items to be uploaded
  • progress {Number}: Upload queue progress percentage
  • headers {Object}: Headers to be sent along with the files
  • formData {Array}: Data to be sent along with the files
  • filters {Array}: Filters to be applied to the files before adding them to the queue. If the filter returns true the file will be added to the queue
  • autoUpload {Boolean}: Automatically upload files after adding them to the queue
  • method {String}: It's a request method. By default POST
  • removeAfterUpload {Boolean}: Remove files from the queue after uploading
  • hasHTML5 {Boolean}: Checks whether browser has HTML5 upload support
  • isUploading {Boolean}: true if an upload is in progress

Methods

  • bind function( event, handler ) {: Registers an event handler
  • trigger function( event[, params ]) {: Executes all handlers bound to this event
  • addToQueue function( items, options ) {: Add items to the queue, where items is a FileList, File or Input, and options is an Object
  • removeFromQueue function( value ) {: Remove an item from the queue, where value is a queue element Item or index
  • clearQueue function() {: Removes all elements from the queue
  • getIndexOfItem function( Item ) { return [Number]; }: Returns the index of the Item queue element
  • getReadyItems function() { return [Array]; }: Return items are ready to upload
  • getNotUploadedItems function() { return [Array]; }: Return an array of all pending items on the queue
  • uploadItem function( value ) {: Uploads an item, where value is a queue element Item or index
  • uploadAll function() {: Upload all pending items on the queue

The Item API:

Properties

  • url {String}: Path on the server in which this file will be uploaded
  • alias {String}: Name of the field which will contain the file, default is file
  • headers {Object}: Headers to be sent along with this file
  • formData {Array}: Data to be sent along with this file
  • method {String}: It's a request method. By default POST
  • removeAfterUpload {Boolean}: Remove this file from the queue after uploading
  • index {Number} - A sequence number upload
  • progress {Number}: File upload progress percentage
  • isReady {Boolean} - File is ready to upload
  • isUploading {Boolean}: true if the file is being uploaded
  • isUploaded {Boolean}: true if the file was uploaded
  • isSuccess {Boolean}: true if the file was uploaded successfully
  • isError {Boolean} - true if occurred error while file uploading
  • uploader {Object}: Reference to the parent Uploader object for this file

Methods

  • remove function() {: Remove this file from the queue
  • upload function() {: Upload this file

Filters

Register a filter

var uploader = $fileUploader.create({
    filters: [
        function( item ) {                    // A user-defined filter
            console.log( 'filter1' );
            return true;
        }
    ]
});

// Another user-defined filter
uploader.filters.push(function( item ) {
    console.log( 'filter2' );
    return true;
});

The default filter

The queue already has registered a default filter that looks like this:

function( item ) { 
	return angular.isElement( item ) ? true : !!item.size;
}

Events

Supported events

  • afteraddingfile function( event, item ) {: Fires after adding a single file to the queue
  • afteraddingall function( event, items ) {: Fires after adding all the dragged or selected files to the queue
  • beforeupload function( event, item ) {: Fires before uploading an item
  • changedqueue function( event, [item|items] ) {: When the queue has changed as a result of adding or removing elements
  • progress function( event, item, progress ) {: On file upload progress
  • success function( event, xhr, item, response ) {: On file successfully uploaded
  • error function( event, xhr, item[, response ]) {: On upload error
  • complete function( event, xhr, item, response ) {: On file upload complete (independently of the sucess of the operation)
  • progressall function( event, progress ) {: On upload queue progress
  • completeall function( event, items ) {: On all loaded when uploading an entire queue, or on file loaded when uploading a single independent file

Registering event handlers

var uploader = $fileUploader.create();

uploader.bind( 'progress', function( event, item, progress ) {
    console.log( 'Progress: ' + progress );
});

FAQ

  1. How to add the previously uploaded files in the queue?
// Add a item to the queue
uploader.queue.push({
    example: {},      // your data here
    isUploaded: true
});

Русская документация

О модуле

Angular File Upload - модуль загрузки файлов (html5 + iframe) для фреймворка AngularJS. Поддерживает drag-n-drop загрузку, индикацию прогресса загрузки, очередь. В старых браузерах деградирует до iframe загрузчика.
В общих чертах работа модуля выглядит так: директивы "ловят" файлы и добавляют их в очередь, если те прошли фильтры, после чего "загрузчик файлов" может ими (элементами очереди) манипулировать.

Live demo.

Требует

  • AngularJS фреймворк
  • ES5 (Array.indexOf, Array.forEach, Array.filter, Array.every, Function.bind, Date.now)

Включает

Директивы

  • ngFileSelect - применяется к<input type="file" />. Выбранные файлы добавляются в очередь загрузки, если они прошли фильтры.
  • ngFileDrop - задает область сброса файлов / элемент, который будет ловить файлы. Как правило, применяется ко всему документу. Пойманные файлы добавляются в очередь загрузки, если они прошли фильтры.
  • ngFileOver - применяется к элементу, который будет реагировать (менять класс), когда файлы находятся над областью сброса. По умолчанию добавляется класс ng-file-over. Другой класс можно задать в параметре атрибута ng-file-over="className".

Сервис

  • $fileUploader - управляет очередью и загрузкой файлов

Загрузчик API:

Свойства

  • scope {Object} - ссылка на scope для обновления html. Если параметр опущен, используется $rootScope
  • url {String} - путь на сервере, по которому будут загружаться файлы
  • alias {String} - псевдоним файла
  • queue {Array}- очередь загрузки
  • progress {Number}- прогресс загрузки очереди
  • headers {Object} - заголовки, которые будут переданы вместе с файлами
  • formData {Array} - данные, отправляемые вместе с файлами
  • filters {Array} - фильтры, применяемые к [файлу|элементу] перед добавлением его в очередь. Если фильтр возвращает true, [файл|элемент] будет добавлен в очередь
  • autoUpload {Boolean} - загружать автоматически после добавления элемента в очередь
  • method {String}: - метод запроса. По умолчанию POST
  • removeAfterUpload {Boolean} - удалить файлы после загрузки
  • hasHTML5 {Boolean} - проверяет, поддерживает ли браузер html5 загрузку
  • isUploading {Boolean} - загрузчик в процессе загрузки

Методы

  • bind function( event, handler ) { - регистрирует обработчик события
  • trigger function( event[, params ]) { - выполняет все обработчики, связанные с данным событием
  • addToQueue function( items, options ) { - где items [FileList|File|Input], options [Object]
  • removeFromQueue function( value ) { - где value элемент очереди или его индекс [Item|Index]
  • clearQueue function() { - удаляет все элементы из очереди
  • getIndexOfItem function( item ) { return [Number]; } - где item элемент очереди
  • getReadyItems function() { return [Array]; }- Возвращает элементы готовые к загрузке
  • getNotUploadedItems function() { return [Array]; } - возвращает массив не загруженных элементов
  • uploadItem function( value ) { - где value элемент очереди или его индекс [Item|Index]
  • uploadAll function() { - загружает все незагруженные элементы

Элемент очереди API:

Свойства

  • url {String} - путь на сервере, по которому будет загружен файл
  • alias {String} - псевдоним файла
  • headers {Object} - заголовки, которые будут переданы вместе с файлом
  • formData {Array} - данные, отправляемые вместе с файлом
  • method {String}: - метод запроса. По умолчанию POST
  • removeAfterUpload {Boolean} - удалить файл после загрузки
  • index {Number} - индекс / порядковый номер загрузки
  • progress {Number} - прогресс загрузки файла
  • isReady {Boolean} - файл готов к загрузке
  • isUploading {Boolean} - файл в процессе загрузки
  • isUploaded {Boolean} - файл загружен
  • isSuccess {Boolean} - файл успешно загружен
  • isError {Boolean} - при загрузке файла произошла ошибка
  • uploader {Object} - ссылка на загрузчик

Методы

  • remove function() { - удаляет элемент
  • upload function() { - загружает элемент

Фильтры

Добавить фильтр

var uploader = $fileUploader.create({
    filters: [
        function( item ) {                    // first user filter
            console.log( 'filter1' );
            return true;
        }
    ]
});

// second user filter
uploader.filters.push(function( item ) {
    console.log( 'filter2' );
    return true;
});

Стандартный фильтр

По умолчанию в массиве фильтров уже присутствует один фильтр, который имеет вид:

function( item ) { 
	return angular.isElement( item ) ? true : !!item.size;
}

События

Список событий

  • afteraddingfile function( event, item ) { - после добавления файла в очередь
  • afteraddingall function( event, items ) { - после добавления всех файлов в очередь
  • beforeupload function( event, item ) { - перед загрузкой файла
  • changedqueue function( event, [item|items] ) { - очередь изменена
  • progress function( event, item, progress ) { - прогресс загрузки файла
  • success function( event, xhr, item, response ) { - файл успешно загружен
  • error function( event, xhr, item[, response ]) { - ошибка при загрузке
  • complete function( event, xhr, item, response ) { - файл загружен
  • progressall function( event, progress ) { - прогресс загрузки очереди
  • completeall function( event, items ) { - "очередь загружена", если была инициирована загрузка всей очереди; иначе "файл загружен", если была инициирована загрузка файла

Подписка на событие

var uploader = $fileUploader.create();

uploader.bind( 'progress', function( event, item, progress ) {
    console.log( 'Progress: ' + progress );
});

FAQ / Вопросы и ответы

  1. Как добавить ранее загруженные файлы в очередь?
// Add a item to the queue
uploader.queue.push({
    example: {},      // your data here
    isUploaded: true
});

angular-file-upload's People

Contributors

alexcrack avatar brocksamson avatar danita avatar egobrain avatar esvit avatar nervgh avatar sjorobekov avatar

Watchers

 avatar  avatar  avatar

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.