Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

102 righe
3.5 KiB

  1. /*
  2. * jQuery File Upload Plugin Angular JS Example
  3. * https://github.com/blueimp/jQuery-File-Upload
  4. *
  5. * Copyright 2013, Sebastian Tschan
  6. * https://blueimp.net
  7. *
  8. * Licensed under the MIT license:
  9. * http://www.opensource.org/licenses/MIT
  10. */
  11. /* jshint nomen:false */
  12. /* global window, angular */
  13. (function () {
  14. 'use strict';
  15. var isOnGitHub = window.location.hostname === 'blueimp.github.io',
  16. url = isOnGitHub ? '//jquery-file-upload.appspot.com/' : 'server/php/';
  17. angular.module('demo', [
  18. 'blueimp.fileupload'
  19. ])
  20. .config([
  21. '$httpProvider', 'fileUploadProvider',
  22. function ($httpProvider, fileUploadProvider) {
  23. delete $httpProvider.defaults.headers.common['X-Requested-With'];
  24. fileUploadProvider.defaults.redirect = window.location.href.replace(
  25. /\/[^\/]*$/,
  26. '/cors/result.html?%s'
  27. );
  28. if (isOnGitHub) {
  29. // Demo settings:
  30. angular.extend(fileUploadProvider.defaults, {
  31. // Enable image resizing, except for Android and Opera,
  32. // which actually support image resizing, but fail to
  33. // send Blob objects via XHR requests:
  34. disableImageResize: /Android(?!.*Chrome)|Opera/
  35. .test(window.navigator.userAgent),
  36. maxFileSize: 999000,
  37. acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i
  38. });
  39. }
  40. }
  41. ])
  42. .controller('DemoFileUploadController', [
  43. '$scope', '$http', '$filter', '$window',
  44. function ($scope, $http) {
  45. $scope.options = {
  46. url: url
  47. };
  48. if (!isOnGitHub) {
  49. $scope.loadingFiles = true;
  50. $http.get(url)
  51. .then(
  52. function (response) {
  53. $scope.loadingFiles = false;
  54. $scope.queue = response.data.files || [];
  55. },
  56. function () {
  57. $scope.loadingFiles = false;
  58. }
  59. );
  60. }
  61. }
  62. ])
  63. .controller('FileDestroyController', [
  64. '$scope', '$http',
  65. function ($scope, $http) {
  66. var file = $scope.file,
  67. state;
  68. if (file.url) {
  69. file.$state = function () {
  70. return state;
  71. };
  72. file.$destroy = function () {
  73. state = 'pending';
  74. return $http({
  75. url: file.deleteUrl,
  76. method: file.deleteType
  77. }).then(
  78. function () {
  79. state = 'resolved';
  80. $scope.clear(file);
  81. },
  82. function () {
  83. state = 'rejected';
  84. }
  85. );
  86. };
  87. } else if (!file.$cancel && !file._index) {
  88. file.$cancel = function () {
  89. $scope.clear(file);
  90. };
  91. }
  92. }
  93. ]);
  94. }());