583d5a2bceaf4045e3fe111d230a26e49d4d0a9b.svn-base
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
'use strict';
import CONFIG from './../config.json';
let {
extend
} = angular;
export default (FileDirective) => {
class FileSelect extends FileDirective {
/**
* Creates instance of {FileSelect} object
* @param {Object} options
* @constructor
*/
constructor(options) {
let extendedOptions = extend(options, {
// Map of events
events: {
$destroy: 'destroy',
change: 'onChange'
},
// Name of property inside uploader._directive object
prop: 'select'
});
super(extendedOptions);
if(!this.uploader.isHTML5) {
this.element.removeAttr('multiple');
}
this.element.prop('value', null); // FF fix
}
/**
* Returns options
* @return {Object|undefined}
*/
getOptions() {
}
/**
* Returns filters
* @return {Array<Function>|String|undefined}
*/
getFilters() {
}
/**
* If returns "true" then HTMLInputElement will be cleared
* @returns {Boolean}
*/
isEmptyAfterSelection() {
return !!this.element.attr('multiple');
}
/**
* Event handler
*/
onChange() {
var files = this.uploader.isHTML5 ? this.element[0].files : this.element[0];
var options = this.getOptions();
var filters = this.getFilters();
if(!this.uploader.isHTML5) this.destroy();
this.uploader.addToQueue(files, options, filters);
if(this.isEmptyAfterSelection()) {
this.element.prop('value', null);
this.element.replaceWith(this.element = this.element.clone(true)); // IE fix
}
}
}
return FileSelect;
}
module.exports.$inject = [
'FileDirective'
];