addon/mixins/file-input-base.js

  1. import { isEmpty } from '@ember/utils';
  2. import Mixin from '@ember/object/mixin';
  3. import Evented from '@ember/object/evented';
  4. import { alias } from '@ember/object/computed';
  5. import { isArray, A } from '@ember/array';
  6.  
  7. import emberUploader from '../utils/ember-uploader';
  8. import { fileObject } from '../utils/file-object';
  9.  
  10.  
  11. /**
  12. file-input-base mixinx
  13.  
  14. @module mixins
  15. @namespace mixins
  16. @class FileInputBase
  17. @extends Ember.Evented
  18. @constructor
  19. */
  20. export default Mixin.create(Evented, {
  21. /**
  22. * file request ajax setting traditional, by default true
  23. * @property {boolean} traditional
  24. *
  25. */
  26. traditional: true,
  27. /**
  28. * file object instance see {{#crossLink " file-object"}}{{/crossLink}}
  29. * @property {Object} fileObject
  30. *
  31. */
  32. fileObject: null,
  33. /**
  34. * style
  35. * @property {String} style
  36. *
  37. */
  38. style: '',
  39. /**
  40. * ember uploader instance see {{#crossLink "utils.EmberUploader"}}{{/crossLink}}
  41. *
  42. * @property {Object} uploader
  43. *
  44. */
  45. uploader: null,
  46. /**
  47. * upload url
  48. *
  49. * @property {String} url
  50. *
  51. */
  52. url: null,
  53. /**
  54. * upload request method
  55. *
  56. * @property {String} method
  57. * @default 'POST'
  58. *
  59. */
  60. method: 'POST',
  61. /**
  62. * extra parameters for upload
  63. *
  64. * @property {Object} extra
  65. * @default null
  66. *
  67. */
  68. extra: null,
  69. /**
  70. * the upload file parameter name
  71. *
  72. * @property {String} paramName
  73. * @default 'file'
  74. *
  75. */
  76. paramName: 'file',
  77. /**
  78. * the upload file is finished
  79. *
  80. * @property {Boolean} isUploaded
  81. * @default false
  82. *
  83. */
  84. isUploaded: false,
  85. /**
  86. * the upload request status
  87. *
  88. * @property {Boolean} isUploading
  89. * @default false
  90. *
  91. */
  92. isUploading: alias('uploader.isUploading'),
  93. /**
  94. * allow autoUpload
  95. *
  96. * @property {Boolean} autoUpload
  97. * @default true
  98. *
  99. */
  100. autoUpload: true,
  101.  
  102. /**
  103. * multiple file or not, by default false
  104. *
  105. * @property {Boolean} multiple
  106. * @default false
  107. *
  108. */
  109. multiple: false,
  110. theme: 'green',
  111. didInsertElement: function() {
  112. let self = this;
  113. this.$('input').change(function(e) {
  114. let input = e.target;
  115. self.trigger('filesDidChange', input.files);
  116. });
  117. },
  118. filesDidChange: function(files) {
  119. if(isArray(files)){
  120. this.send('start', files);
  121. }else if (!isEmpty(files)) {
  122. this.set('fileObject', fileObject.create({
  123. fileToUpload: files[0]
  124. }));
  125. if (this.get('autoUpload')) {
  126. this.send('start');
  127. }
  128. }
  129. },
  130. actions: {
  131. /**
  132. * start upload action
  133. *
  134. * @event start
  135. *
  136. *
  137. */
  138. start: function(files) {
  139. let { uploader, fileObject, extra} = this.getProperties('uploader', 'fileObject', 'extra');
  140. let self = this;
  141. if(files){
  142. let fa = A({content: files});
  143. uploader.upload(files, extra);
  144. this.sendAction('uploadStart', fa);
  145. uploader.on('didUpload', function(data) {
  146. self.set('isUploaded', true);
  147. //empty input file
  148. self.$('input').val("");
  149. self.sendAction('uploadSuccess', fa, data);
  150. });
  151. }else if (fileObject) {
  152. uploader.upload(fileObject.fileToUpload, extra);
  153. this.sendAction('uploadStart', fileObject);
  154. //didupload event
  155. uploader.on('didUpload', function(data) {
  156. self.set('isUploaded', true);
  157. fileObject.set('data', data);
  158. //empty input file
  159. self.$('input').val("");
  160. self.sendAction('uploadSuccess', fileObject, data);
  161. });
  162. }
  163.  
  164. //progress event
  165. uploader.on('progress', function(e) {
  166. self.sendAction('uploadProgress', e);
  167. });
  168.  
  169. },
  170. /**
  171. * abort upload action
  172. *
  173. * @event abort
  174. *
  175. *
  176. */
  177. abort: function() {
  178. this.get('uploader').abort();
  179. this.sendAction('uploadAbort');
  180. //empty input file
  181. this.$('input').val("");
  182. }
  183. },
  184. init: function() {
  185. this._super(...arguments);
  186. let { url, method, paramName} = this.getProperties('url', 'method', 'paramName');
  187. this.set('uploader', emberUploader.create({
  188. url: url,
  189. paramName: paramName,
  190. type: method,
  191. traditional: this.get('traditional')
  192. }));
  193. },
  194. willDestroy(){
  195. this._super(...arguments);
  196. this.set('uploader', null);
  197. }
  198. });
  199.