fileinput.js 174 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840
  1. /*!
  2. * bootstrap-fileinput v4.4.0
  3. * http://plugins.krajee.com/file-input
  4. *
  5. * Author: Kartik Visweswaran
  6. * Copyright: 2014 - 2017, Kartik Visweswaran, Krajee.com
  7. *
  8. * Licensed under the BSD 3-Clause
  9. * https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
  10. */
  11. (function (factory) {
  12. "use strict";
  13. //noinspection JSUnresolvedVariable
  14. if (typeof define === 'function' && define.amd) { // jshint ignore:line
  15. // AMD. Register as an anonymous module.
  16. define(['jquery'], factory); // jshint ignore:line
  17. } else { // noinspection JSUnresolvedVariable
  18. if (typeof module === 'object' && module.exports) { // jshint ignore:line
  19. // Node/CommonJS
  20. // noinspection JSUnresolvedVariable
  21. module.exports = factory(require('jquery')); // jshint ignore:line
  22. } else {
  23. // Browser globals
  24. factory(window.jQuery);
  25. }
  26. }
  27. }(function ($) {
  28. "use strict";
  29. $.fn.fileinputLocales = {};
  30. $.fn.fileinputThemes = {};
  31. String.prototype.setTokens = function (replacePairs) {
  32. var str = this.toString(), key, re;
  33. for (key in replacePairs) {
  34. if (replacePairs.hasOwnProperty(key)) {
  35. re = new RegExp("\{" + key + "\}", "g");
  36. str = str.replace(re, replacePairs[key]);
  37. }
  38. }
  39. return str;
  40. };
  41. var $h, FileInput;
  42. // fileinput helper object for all global variables and internal helper methods
  43. //noinspection JSUnresolvedVariable
  44. $h = {
  45. FRAMES: '.kv-preview-thumb',
  46. SORT_CSS: 'file-sortable',
  47. STYLE_SETTING: 'style="width:{width};height:{height};"',
  48. OBJECT_PARAMS: '<param name="controller" value="true" />\n' +
  49. '<param name="allowFullScreen" value="true" />\n' +
  50. '<param name="allowScriptAccess" value="always" />\n' +
  51. '<param name="autoPlay" value="false" />\n' +
  52. '<param name="autoStart" value="false" />\n' +
  53. '<param name="quality" value="high" />\n',
  54. DEFAULT_PREVIEW: '<div class="file-preview-other">\n' +
  55. '<span class="{previewFileIconClass}">{previewFileIcon}</span>\n' +
  56. '</div>',
  57. MODAL_ID: 'kvFileinputModal',
  58. MODAL_EVENTS: ['show', 'shown', 'hide', 'hidden', 'loaded'],
  59. objUrl: window.URL || window.webkitURL,
  60. compare: function (input, str, exact) {
  61. return input !== undefined && (exact ? input === str : input.match(str));
  62. },
  63. isIE: function (ver) {
  64. // check for IE versions < 11
  65. if (navigator.appName !== 'Microsoft Internet Explorer') {
  66. return false;
  67. }
  68. if (ver === 10) {
  69. return new RegExp('msie\\s' + ver, 'i').test(navigator.userAgent);
  70. }
  71. var div = document.createElement("div"), status;
  72. div.innerHTML = "<!--[if IE " + ver + "]> <i></i> <![endif]-->";
  73. status = div.getElementsByTagName("i").length;
  74. document.body.appendChild(div);
  75. div.parentNode.removeChild(div);
  76. return status;
  77. },
  78. initModal: function ($modal) {
  79. var $body = $('body');
  80. if ($body.length) {
  81. $modal.appendTo($body);
  82. }
  83. },
  84. isEmpty: function (value, trim) {
  85. return value === undefined || value === null || value.length === 0 || (trim && $.trim(value) === '');
  86. },
  87. isArray: function (a) {
  88. return Array.isArray(a) || Object.prototype.toString.call(a) === '[object Array]';
  89. },
  90. ifSet: function (needle, haystack, def) {
  91. def = def || '';
  92. return (haystack && typeof haystack === 'object' && needle in haystack) ? haystack[needle] : def;
  93. },
  94. cleanArray: function (arr) {
  95. if (!(arr instanceof Array)) {
  96. arr = [];
  97. }
  98. return arr.filter(function (e) {
  99. return (e !== undefined && e !== null);
  100. });
  101. },
  102. spliceArray: function (arr, index) {
  103. var i, j = 0, out = [];
  104. if (!(arr instanceof Array)) {
  105. return [];
  106. }
  107. for (i = 0; i < arr.length; i++) {
  108. if (i !== index) {
  109. out[j] = arr[i];
  110. j++;
  111. }
  112. }
  113. return out;
  114. },
  115. getNum: function (num, def) {
  116. def = def || 0;
  117. if (typeof num === "number") {
  118. return num;
  119. }
  120. if (typeof num === "string") {
  121. num = parseFloat(num);
  122. }
  123. return isNaN(num) ? def : num;
  124. },
  125. hasFileAPISupport: function () {
  126. return !!(window.File && window.FileReader);
  127. },
  128. hasDragDropSupport: function () {
  129. var div = document.createElement('div');
  130. /** @namespace div.draggable */
  131. /** @namespace div.ondragstart */
  132. /** @namespace div.ondrop */
  133. return !$h.isIE(9) &&
  134. (div.draggable !== undefined || (div.ondragstart !== undefined && div.ondrop !== undefined));
  135. },
  136. hasFileUploadSupport: function () {
  137. return $h.hasFileAPISupport() && window.FormData;
  138. },
  139. addCss: function ($el, css) {
  140. $el.removeClass(css).addClass(css);
  141. },
  142. getElement: function (options, param, value) {
  143. return ($h.isEmpty(options) || $h.isEmpty(options[param])) ? value : $(options[param]);
  144. },
  145. uniqId: function () {
  146. return Math.round(new Date().getTime() + (Math.random() * 100));
  147. },
  148. htmlEncode: function (str) {
  149. return str.replace(/&/g, '&amp;')
  150. .replace(/</g, '&lt;')
  151. .replace(/>/g, '&gt;')
  152. .replace(/"/g, '&quot;')
  153. .replace(/'/g, '&apos;');
  154. },
  155. replaceTags: function (str, tags) {
  156. var out = str;
  157. if (!tags) {
  158. return out;
  159. }
  160. $.each(tags, function (key, value) {
  161. if (typeof value === "function") {
  162. value = value();
  163. }
  164. out = out.split(key).join(value);
  165. });
  166. return out;
  167. },
  168. cleanMemory: function ($thumb) {
  169. var data = $thumb.is('img') ? $thumb.attr('src') : $thumb.find('source').attr('src');
  170. /** @namespace $h.objUrl.revokeObjectURL */
  171. $h.objUrl.revokeObjectURL(data);
  172. },
  173. findFileName: function (filePath) {
  174. var sepIndex = filePath.lastIndexOf('/');
  175. if (sepIndex === -1) {
  176. sepIndex = filePath.lastIndexOf('\\');
  177. }
  178. return filePath.split(filePath.substring(sepIndex, sepIndex + 1)).pop();
  179. },
  180. checkFullScreen: function () {
  181. //noinspection JSUnresolvedVariable
  182. return document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement ||
  183. document.msFullscreenElement;
  184. },
  185. toggleFullScreen: function (maximize) {
  186. var doc = document, de = doc.documentElement;
  187. if (de && maximize && !$h.checkFullScreen()) {
  188. /** @namespace document.requestFullscreen */
  189. /** @namespace document.msRequestFullscreen */
  190. /** @namespace document.mozRequestFullScreen */
  191. /** @namespace document.webkitRequestFullscreen */
  192. /** @namespace Element.ALLOW_KEYBOARD_INPUT */
  193. if (de.requestFullscreen) {
  194. de.requestFullscreen();
  195. } else if (de.msRequestFullscreen) {
  196. de.msRequestFullscreen();
  197. } else if (de.mozRequestFullScreen) {
  198. de.mozRequestFullScreen();
  199. } else if (de.webkitRequestFullscreen) {
  200. de.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
  201. }
  202. } else {
  203. /** @namespace document.exitFullscreen */
  204. /** @namespace document.msExitFullscreen */
  205. /** @namespace document.mozCancelFullScreen */
  206. /** @namespace document.webkitExitFullscreen */
  207. if (doc.exitFullscreen) {
  208. doc.exitFullscreen();
  209. } else if (doc.msExitFullscreen) {
  210. doc.msExitFullscreen();
  211. } else if (doc.mozCancelFullScreen) {
  212. doc.mozCancelFullScreen();
  213. } else if (doc.webkitExitFullscreen) {
  214. doc.webkitExitFullscreen();
  215. }
  216. }
  217. },
  218. moveArray: function (arr, oldIndex, newIndex) {
  219. if (newIndex >= arr.length) {
  220. var k = newIndex - arr.length;
  221. while ((k--) + 1) {
  222. arr.push(undefined);
  223. }
  224. }
  225. arr.splice(newIndex, 0, arr.splice(oldIndex, 1)[0]);
  226. return arr;
  227. },
  228. cleanZoomCache: function ($el) {
  229. var $cache = $el.closest('.kv-zoom-cache-theme');
  230. if (!$cache.length) {
  231. $cache = $el.closest('.kv-zoom-cache');
  232. }
  233. $cache.remove();
  234. },
  235. setOrientation: function (buffer, callback) {
  236. var scanner = new DataView(buffer), idx = 0, value = 1, // Non-rotated is the default
  237. maxBytes, uInt16, exifLength;
  238. if (scanner.getUint16(idx) !== 0xFFD8 || buffer.length < 2) {
  239. return; // not a proper JPEG
  240. }
  241. idx += 2;
  242. maxBytes = scanner.byteLength;
  243. while (idx < maxBytes - 2) {
  244. uInt16 = scanner.getUint16(idx);
  245. idx += 2;
  246. switch (uInt16) {
  247. case 0xFFE1: // Start of EXIF
  248. exifLength = scanner.getUint16(idx);
  249. maxBytes = exifLength - idx;
  250. idx += 2;
  251. break;
  252. case 0x0112: // Orientation tag
  253. value = scanner.getUint16(idx + 6, false);
  254. maxBytes = 0; // Stop scanning
  255. break;
  256. }
  257. }
  258. if (callback) {
  259. callback(value);
  260. }
  261. },
  262. validateOrientation: function (file, callback) {
  263. if (!window.FileReader || !window.DataView) {
  264. return; // skip orientation if pre-requisite libraries not supported by browser
  265. }
  266. var reader = new FileReader(), buffer;
  267. reader.onloadend = function () {
  268. buffer = reader.result;
  269. $h.setOrientation(buffer, callback);
  270. };
  271. reader.readAsArrayBuffer(file);
  272. },
  273. adjustOrientedImage: function ($img, isZoom) {
  274. var offsetContTop, offsetTop, newTop;
  275. if (!$img.hasClass('is-portrait-gt4')) {
  276. return;
  277. }
  278. if (isZoom) {
  279. $img.css({width: $img.parent().height()});
  280. return;
  281. } else {
  282. $img.css({height: 'auto', width: $img.height()});
  283. }
  284. offsetContTop = $img.parent().offset().top;
  285. offsetTop = $img.offset().top;
  286. newTop = offsetContTop - offsetTop;
  287. $img.css('margin-top', newTop);
  288. }
  289. };
  290. FileInput = function (element, options) {
  291. var self = this;
  292. self.$element = $(element);
  293. if (!self._validate()) {
  294. return;
  295. }
  296. self.isPreviewable = $h.hasFileAPISupport();
  297. self.isIE9 = $h.isIE(9);
  298. self.isIE10 = $h.isIE(10);
  299. if (self.isPreviewable || self.isIE9) {
  300. self._init(options);
  301. self._listen();
  302. } else {
  303. self.$element.removeClass('file-loading');
  304. }
  305. };
  306. FileInput.prototype = {
  307. constructor: FileInput,
  308. _cleanup: function() {
  309. var self = this;
  310. self.reader = null;
  311. self.formdata = {};
  312. self.uploadCount = 0;
  313. self.uploadStatus = {};
  314. self.uploadLog = [];
  315. self.uploadAsyncCount = 0;
  316. self.loadedImages = [];
  317. self.totalImagesCount = 0;
  318. self.ajaxRequests = [];
  319. self.clearStack();
  320. self.fileInputCleared = false;
  321. self.fileBatchCompleted = true;
  322. if (!self.isPreviewable) {
  323. self.showPreview = false;
  324. }
  325. self.isError = false;
  326. self.ajaxAborted = false;
  327. self.cancelling = false;
  328. },
  329. _init: function (options) {
  330. var self = this, $el = self.$element, $cont, t;
  331. self.options = options;
  332. $.each(options, function (key, value) {
  333. switch (key) {
  334. case 'minFileCount':
  335. case 'maxFileCount':
  336. case 'minFileSize':
  337. case 'maxFileSize':
  338. case 'maxFilePreviewSize':
  339. case 'resizeImageQuality':
  340. case 'resizeIfSizeMoreThan':
  341. case 'progressUploadThreshold':
  342. case 'initialPreviewCount':
  343. case 'zoomModalHeight':
  344. case 'minImageHeight':
  345. case 'maxImageHeight':
  346. case 'minImageWidth':
  347. case 'maxImageWidth':
  348. self[key] = $h.getNum(value);
  349. break;
  350. default:
  351. self[key] = value;
  352. break;
  353. }
  354. });
  355. self._cleanup();
  356. self.$form = $el.closest('form');
  357. self._initTemplateDefaults();
  358. self.uploadFileAttr = !$h.isEmpty($el.attr('name')) ? $el.attr('name') : 'file_data';
  359. t = self._getLayoutTemplate('progress');
  360. self.progressTemplate = t.replace('{class}', self.progressClass);
  361. self.progressCompleteTemplate = t.replace('{class}', self.progressCompleteClass);
  362. self.progressErrorTemplate = t.replace('{class}', self.progressErrorClass);
  363. self.dropZoneEnabled = $h.hasDragDropSupport() && self.dropZoneEnabled;
  364. self.isDisabled = $el.attr('disabled') || $el.attr('readonly');
  365. if (self.isDisabled) {
  366. $el.attr('disabled', true);
  367. }
  368. self.isUploadable = $h.hasFileUploadSupport() && !$h.isEmpty(self.uploadUrl);
  369. self.isClickable = self.browseOnZoneClick && self.showPreview &&
  370. (self.isUploadable && self.dropZoneEnabled || !$h.isEmpty(self.defaultPreviewContent));
  371. self.slug = typeof options.slugCallback === "function" ? options.slugCallback : self._slugDefault;
  372. self.mainTemplate = self.showCaption ? self._getLayoutTemplate('main1') : self._getLayoutTemplate('main2');
  373. self.captionTemplate = self._getLayoutTemplate('caption');
  374. self.previewGenericTemplate = self._getPreviewTemplate('generic');
  375. if (self.resizeImage && (self.maxImageWidth || self.maxImageHeight)) {
  376. self.imageCanvas = document.createElement('canvas');
  377. self.imageCanvasContext = self.imageCanvas.getContext('2d');
  378. }
  379. if ($h.isEmpty($el.attr('id'))) {
  380. $el.attr('id', $h.uniqId());
  381. }
  382. self.namespace = '.fileinput_' + $el.attr('id').replace(/-/g, '_');
  383. if (self.$container === undefined) {
  384. self.$container = self._createContainer();
  385. } else {
  386. self._refreshContainer();
  387. }
  388. $cont = self.$container;
  389. self.$dropZone = $cont.find('.file-drop-zone');
  390. self.$progress = $cont.find('.kv-upload-progress');
  391. self.$btnUpload = $cont.find('.fileinput-upload');
  392. self.$captionContainer = $h.getElement(options, 'elCaptionContainer', $cont.find('.file-caption'));
  393. self.$caption = $h.getElement(options, 'elCaptionText', $cont.find('.file-caption-name'));
  394. self.$previewContainer = $h.getElement(options, 'elPreviewContainer', $cont.find('.file-preview'));
  395. self.$preview = $h.getElement(options, 'elPreviewImage', $cont.find('.file-preview-thumbnails'));
  396. self.$previewStatus = $h.getElement(options, 'elPreviewStatus', $cont.find('.file-preview-status'));
  397. self.$errorContainer = $h.getElement(options, 'elErrorContainer',
  398. self.$previewContainer.find('.kv-fileinput-error'));
  399. if (!$h.isEmpty(self.msgErrorClass)) {
  400. $h.addCss(self.$errorContainer, self.msgErrorClass);
  401. }
  402. self.$errorContainer.hide();
  403. self.previewInitId = "preview-" + $h.uniqId();
  404. self._initPreviewCache();
  405. self._initPreview(true);
  406. self._initPreviewActions();
  407. self._setFileDropZoneTitle();
  408. $el.removeClass('file-loading');
  409. if ($el.attr('disabled')) {
  410. self.disable();
  411. }
  412. self._initZoom();
  413. },
  414. _initTemplateDefaults: function () {
  415. var self = this, tMain1, tMain2, tPreview, tFileIcon, tClose, tCaption, tBtnDefault, tBtnLink, tBtnBrowse,
  416. tModalMain, tModal, tProgress, tSize, tFooter, tActions, tActionDelete, tActionUpload, tActionZoom,
  417. tActionDrag, tIndicator, tTagBef, tTagBef1, tTagBef2, tTagAft, tGeneric, tHtml, tImage, tText, tVideo,
  418. tAudio, tFlash, tObject, tPdf, tOther, tZoomCache, vDefaultDim;
  419. tMain1 = '{preview}\n' +
  420. '<div class="kv-upload-progress hide"></div>\n' +
  421. '<div class="input-group {class}">\n' +
  422. ' {caption}\n' +
  423. ' <div class="input-group-btn">\n' +
  424. ' {remove}\n' +
  425. ' {cancel}\n' +
  426. ' {upload}\n' +
  427. ' {browse}\n' +
  428. ' </div>\n' +
  429. '</div>';
  430. tMain2 = '{preview}\n<div class="kv-upload-progress hide"></div>\n{remove}\n{cancel}\n{upload}\n{browse}\n';
  431. tPreview = '<div class="file-preview {class}">\n' +
  432. ' {close}' +
  433. ' <div class="{dropClass}">\n' +
  434. ' <div class="file-preview-thumbnails">\n' +
  435. ' </div>\n' +
  436. ' <div class="clearfix"></div>' +
  437. ' <div class="file-preview-status text-center text-success"></div>\n' +
  438. ' <div class="kv-fileinput-error"></div>\n' +
  439. ' </div>\n' +
  440. '</div>';
  441. tClose = '<div class="close fileinput-remove">&times;</div>\n';
  442. tFileIcon = '<i class="glyphicon glyphicon-file kv-caption-icon"></i>';
  443. tCaption = '<div tabindex="500" class="form-control file-caption {class}">\n' +
  444. ' <div class="file-caption-name"></div>\n' +
  445. '</div>\n';
  446. //noinspection HtmlUnknownAttribute
  447. tBtnDefault = '<button type="{type}" tabindex="500" title="{title}" class="{css}" ' +
  448. '{status}>{icon} {label}</button>';
  449. //noinspection HtmlUnknownAttribute
  450. tBtnLink = '<a href="{href}" tabindex="500" title="{title}" class="{css}" {status}>{icon} {label}</a>';
  451. //noinspection HtmlUnknownAttribute
  452. tBtnBrowse = '<div tabindex="500" class="{css}" {status}>{icon} {label}</div>';
  453. tModalMain = '<div id="' + $h.MODAL_ID + '" class="file-zoom-dialog modal fade" ' +
  454. 'tabindex="-1" aria-labelledby="' + $h.MODAL_ID + 'Label"></div>';
  455. tModal = '<div class="modal-dialog modal-lg" role="document">\n' +
  456. ' <div class="modal-content">\n' +
  457. ' <div class="modal-header">\n' +
  458. ' <div class="kv-zoom-actions pull-right">{toggleheader}{fullscreen}{borderless}{close}</div>\n' +
  459. ' <h3 class="modal-title">{heading} <small><span class="kv-zoom-title"></span></small></h3>\n' +
  460. ' </div>\n' +
  461. ' <div class="modal-body">\n' +
  462. ' <div class="floating-buttons"></div>\n' +
  463. ' <div class="kv-zoom-body file-zoom-content {zoomFrameClass}"></div>\n' + '{prev} {next}\n' +
  464. ' </div>\n' +
  465. ' </div>\n' +
  466. '</div>\n';
  467. tProgress = '<div class="progress">\n' +
  468. ' <div class="{class}" role="progressbar"' +
  469. ' aria-valuenow="{percent}" aria-valuemin="0" aria-valuemax="100" style="width:{percent}%;">\n' +
  470. ' {status}\n' +
  471. ' </div>\n' +
  472. '</div>';
  473. tSize = ' <samp>({sizeText})</samp>';
  474. tFooter = '<div class="file-thumbnail-footer">\n' +
  475. ' <div class="file-footer-caption" title="{caption}">{caption}<br>{size}</div>\n' +
  476. ' {progress} {indicator} {actions}\n' +
  477. '</div>';
  478. tActions = '{drag}\n' +
  479. '<div class="file-actions">\n' +
  480. ' <div class="file-footer-buttons">\n' +
  481. ' {upload} {delete} {zoom} {other}' +
  482. ' </div>\n' +
  483. ' <div class="clearfix"></div>\n' +
  484. '</div>';
  485. //noinspection HtmlUnknownAttribute
  486. tActionDelete = '<button type="button" class="kv-file-remove {removeClass}" ' +
  487. 'title="{removeTitle}" {dataUrl}{dataKey}>{removeIcon}</button>\n';
  488. tActionUpload = '<button type="button" class="kv-file-upload {uploadClass}" title="{uploadTitle}">' +
  489. '{uploadIcon}</button>';
  490. tActionZoom = '<button type="button" class="kv-file-zoom {zoomClass}" ' +
  491. 'title="{zoomTitle}">{zoomIcon}</button>';
  492. tActionDrag = '<span class="file-drag-handle {dragClass}" title="{dragTitle}">{dragIcon}</span>';
  493. tIndicator = '<div class="file-upload-indicator" title="{indicatorTitle}">{indicator}</div>';
  494. tTagBef = '<div class="file-preview-frame {frameClass}" id="{previewId}" data-fileindex="{fileindex}"' +
  495. ' data-template="{template}"';
  496. tTagBef1 = tTagBef + '><div class="kv-file-content">\n';
  497. tTagBef2 = tTagBef + ' title="{caption}"><div class="kv-file-content">\n';
  498. tTagAft = '</div>{footer}\n</div>\n';
  499. tGeneric = '{content}\n';
  500. tHtml = '<div class="kv-preview-data file-preview-html" title="{caption}" ' + $h.STYLE_SETTING +
  501. '>{data}</div>\n';
  502. tImage = '<img src="{data}" class="file-preview-image kv-preview-data" title="{caption}" alt="{caption}" ' +
  503. $h.STYLE_SETTING + '>\n';
  504. tText = '<textarea class="kv-preview-data file-preview-text" title="{caption}" readonly ' +
  505. $h.STYLE_SETTING + '>{data}</textarea>\n';
  506. tVideo = '<video class="kv-preview-data file-preview-video" width="{width}" ' +
  507. 'height="{height}" controls>\n' + '<source src="{data}" type="{type}">\n' + $h.DEFAULT_PREVIEW +
  508. '\n</video>\n';
  509. tAudio = '<div class="file-preview-audio"><audio class="kv-preview-data" controls>\n<source src="{data}" ' +
  510. 'type="{type}">\n' + $h.DEFAULT_PREVIEW + '\n</audio></div>\n';
  511. tFlash = '<object class="kv-preview-data file-object" type="application/x-shockwave-flash" ' +
  512. 'width="{width}" height="{height}" data="{data}">\n' + $h.OBJECT_PARAMS + ' ' + $h.DEFAULT_PREVIEW +
  513. '\n</object>\n';
  514. tObject = '<object class="kv-preview-data file-object {typeCss}" data="{data}" type="{type}" ' +
  515. 'width="{width}" height="{height}">\n' + '<param name="movie" value="{caption}" />\n' +
  516. $h.OBJECT_PARAMS + ' ' + $h.DEFAULT_PREVIEW + '\n</object>\n';
  517. tPdf = '<embed class="kv-preview-data" src="{data}" ' +
  518. 'width="{width}" height="{height}" type="application/pdf">\n';
  519. tOther = '<div class="kv-preview-data file-preview-other-frame">\n' + $h.DEFAULT_PREVIEW + '\n</div>\n';
  520. tZoomCache = '<div class="kv-zoom-cache" style="display:none">{zoomContent}</div>';
  521. vDefaultDim = {width: "100%", height: "100%", 'min-height': "480px"};
  522. self.defaults = {
  523. layoutTemplates: {
  524. main1: tMain1,
  525. main2: tMain2,
  526. preview: tPreview,
  527. close: tClose,
  528. fileIcon: tFileIcon,
  529. caption: tCaption,
  530. modalMain: tModalMain,
  531. modal: tModal,
  532. progress: tProgress,
  533. size: tSize,
  534. footer: tFooter,
  535. indicator: tIndicator,
  536. actions: tActions,
  537. actionDelete: tActionDelete,
  538. actionUpload: tActionUpload,
  539. actionZoom: tActionZoom,
  540. actionDrag: tActionDrag,
  541. btnDefault: tBtnDefault,
  542. btnLink: tBtnLink,
  543. btnBrowse: tBtnBrowse,
  544. zoomCache: tZoomCache
  545. },
  546. previewMarkupTags: {
  547. tagBefore1: tTagBef1,
  548. tagBefore2: tTagBef2,
  549. tagAfter: tTagAft
  550. },
  551. previewContentTemplates: {
  552. generic: tGeneric,
  553. html: tHtml,
  554. image: tImage,
  555. text: tText,
  556. video: tVideo,
  557. audio: tAudio,
  558. flash: tFlash,
  559. object: tObject,
  560. pdf: tPdf,
  561. other: tOther
  562. },
  563. allowedPreviewTypes: ['image', 'html', 'text', 'video', 'audio', 'flash', 'pdf', 'object'],
  564. previewTemplates: {},
  565. previewSettings: {
  566. image: {width: "auto", height: "160px"},
  567. html: {width: "213px", height: "160px"},
  568. text: {width: "213px", height: "160px"},
  569. video: {width: "auto", height: "100%", 'max-width': "100%"},
  570. audio: {width: "100%", height: "30px"},
  571. flash: {width: "auto", height: "100%", 'max-width': "100%"},
  572. object: {height: "100%"},
  573. pdf: {width: "160px", height: "160px"},
  574. other: {width: "160px", height: "160px"}
  575. },
  576. previewZoomSettings: {
  577. image: {width: "auto", height: "auto", 'max-width': "100%", 'max-height': "100%"},
  578. html: vDefaultDim,
  579. text: vDefaultDim,
  580. video: {width: "auto", height: "100%", 'max-width': "100%"},
  581. audio: {width: "100%", height: "30px"},
  582. flash: {width: "auto", height: "480px"},
  583. object: {width: "auto", height: "100%", 'max-width': "100%", 'min-height': "480px"},
  584. pdf: vDefaultDim,
  585. other: {width: "auto", height: "100%", 'min-height': "480px"}
  586. },
  587. fileTypeSettings: {
  588. image: function (vType, vName) {
  589. return $h.compare(vType, 'image.*') || $h.compare(vName, /\.(gif|png|jpe?g)$/i);
  590. },
  591. html: function (vType, vName) {
  592. return $h.compare(vType, 'text/html') || $h.compare(vName, /\.(htm|html)$/i);
  593. },
  594. text: function (vType, vName) {
  595. return $h.compare(vType, 'text.*') || $h.compare(vName, /\.(xml|javascript)$/i) ||
  596. $h.compare(vName, /\.(txt|md|csv|nfo|ini|json|php|js|css)$/i);
  597. },
  598. video: function (vType, vName) {
  599. return $h.compare(vType, 'video.*') && ($h.compare(vType, /(ogg|mp4|mp?g|mov|webm|3gp)$/i) ||
  600. $h.compare(vName, /\.(og?|mp4|webm|mp?g|mov|3gp)$/i));
  601. },
  602. audio: function (vType, vName) {
  603. return $h.compare(vType, 'audio.*') && ($h.compare(vName, /(ogg|mp3|mp?g|wav)$/i) ||
  604. $h.compare(vName, /\.(og?|mp3|mp?g|wav)$/i));
  605. },
  606. flash: function (vType, vName) {
  607. return $h.compare(vType, 'application/x-shockwave-flash', true) || $h.compare(vName, /\.(swf)$/i);
  608. },
  609. pdf: function (vType, vName) {
  610. return $h.compare(vType, 'application/pdf', true) || $h.compare(vName, /\.(pdf)$/i);
  611. },
  612. object: function () {
  613. return true;
  614. },
  615. other: function () {
  616. return true;
  617. }
  618. },
  619. fileActionSettings: {
  620. showRemove: true,
  621. showUpload: true,
  622. showZoom: true,
  623. showDrag: true,
  624. removeIcon: '<i class="glyphicon glyphicon-trash text-danger"></i>',
  625. removeClass: 'btn btn-xs btn-default',
  626. removeTitle: 'Remove file',
  627. uploadIcon: '<i class="glyphicon glyphicon-upload text-info"></i>',
  628. uploadClass: 'btn btn-xs btn-default',
  629. uploadTitle: 'Upload file',
  630. zoomIcon: '<i class="glyphicon glyphicon-zoom-in"></i>',
  631. zoomClass: 'btn btn-xs btn-default',
  632. zoomTitle: 'View Details',
  633. dragIcon: '<i class="glyphicon glyphicon-menu-hamburger"></i>',
  634. dragClass: 'text-info',
  635. dragTitle: 'Move / Rearrange',
  636. dragSettings: {},
  637. indicatorNew: '<i class="glyphicon glyphicon-hand-down text-warning"></i>',
  638. indicatorSuccess: '<i class="glyphicon glyphicon-ok-sign text-success"></i>',
  639. indicatorError: '<i class="glyphicon glyphicon-exclamation-sign text-danger"></i>',
  640. indicatorLoading: '<i class="glyphicon glyphicon-hand-up text-muted"></i>',
  641. indicatorNewTitle: 'Not uploaded yet',
  642. indicatorSuccessTitle: 'Uploaded',
  643. indicatorErrorTitle: 'Upload Error',
  644. indicatorLoadingTitle: 'Uploading ...'
  645. }
  646. };
  647. $.each(self.defaults, function (key, setting) {
  648. if (key === 'allowedPreviewTypes') {
  649. if (self.allowedPreviewTypes === undefined) {
  650. self.allowedPreviewTypes = setting;
  651. }
  652. return;
  653. }
  654. self[key] = $.extend(true, {}, setting, self[key]);
  655. });
  656. self._initPreviewTemplates();
  657. },
  658. _initPreviewTemplates: function () {
  659. var self = this, cfg = self.defaults, tags = self.previewMarkupTags, tagBef, tagAft = tags.tagAfter;
  660. $.each(cfg.previewContentTemplates, function (key, value) {
  661. if ($h.isEmpty(self.previewTemplates[key])) {
  662. tagBef = tags.tagBefore2;
  663. if (key === 'generic' || key === 'image' || key === 'html' || key === 'text') {
  664. tagBef = tags.tagBefore1;
  665. }
  666. self.previewTemplates[key] = tagBef + value + tagAft;
  667. }
  668. });
  669. },
  670. _initPreviewCache: function () {
  671. var self = this;
  672. self.previewCache = {
  673. data: {},
  674. init: function () {
  675. var content = self.initialPreview;
  676. if (content.length > 0 && !$h.isArray(content)) {
  677. content = content.split(self.initialPreviewDelimiter);
  678. }
  679. self.previewCache.data = {
  680. content: content,
  681. config: self.initialPreviewConfig,
  682. tags: self.initialPreviewThumbTags
  683. };
  684. },
  685. fetch: function () {
  686. return self.previewCache.data.content.filter(function (n) {
  687. return n !== null;
  688. });
  689. },
  690. count: function (all) {
  691. return !!self.previewCache.data && !!self.previewCache.data.content ?
  692. (all ? self.previewCache.data.content.length : self.previewCache.fetch().length) : 0;
  693. },
  694. get: function (i, isDisabled) {
  695. var ind = 'init_' + i, data = self.previewCache.data, config = data.config[i],
  696. content = data.content[i], previewId = self.previewInitId + '-' + ind, out, $tmp, cat, ftr,
  697. fname, ftype, frameClass, asData = $h.ifSet('previewAsData', config, self.initialPreviewAsData),
  698. parseTemplate = function (cat, dat, fn, ft, id, ftr, ind, fc, t) {
  699. fc = ' file-preview-initial ' + $h.SORT_CSS + (fc ? ' ' + fc : '');
  700. return self._generatePreviewTemplate(cat, dat, fn, ft, id, false, null, fc, ftr, ind, t);
  701. };
  702. if (!content) {
  703. return '';
  704. }
  705. isDisabled = isDisabled === undefined ? true : isDisabled;
  706. cat = $h.ifSet('type', config, self.initialPreviewFileType || 'generic');
  707. fname = $h.ifSet('filename', config, $h.ifSet('caption', config));
  708. ftype = $h.ifSet('filetype', config, cat);
  709. ftr = self.previewCache.footer(i, isDisabled, (config && config.size || null));
  710. frameClass = $h.ifSet('frameClass', config);
  711. if (asData) {
  712. out = parseTemplate(cat, content, fname, ftype, previewId, ftr, ind, frameClass);
  713. } else {
  714. out = parseTemplate('generic', content, fname, ftype, previewId, ftr, ind, frameClass, cat)
  715. .setTokens({'content': data.content[i]});
  716. }
  717. if (data.tags.length && data.tags[i]) {
  718. out = $h.replaceTags(out, data.tags[i]);
  719. }
  720. /** @namespace config.frameAttr */
  721. if (!$h.isEmpty(config) && !$h.isEmpty(config.frameAttr)) {
  722. $tmp = $(document.createElement('div')).html(out);
  723. $tmp.find('.file-preview-initial').attr(config.frameAttr);
  724. out = $tmp.html();
  725. $tmp.remove();
  726. }
  727. return out;
  728. },
  729. add: function (content, config, tags, append) {
  730. var data = self.previewCache.data, index;
  731. if (!$h.isArray(content)) {
  732. content = content.split(self.initialPreviewDelimiter);
  733. }
  734. if (append) {
  735. index = data.content.push(content) - 1;
  736. data.config[index] = config;
  737. data.tags[index] = tags;
  738. } else {
  739. index = content.length - 1;
  740. data.content = content;
  741. data.config = config;
  742. data.tags = tags;
  743. }
  744. self.previewCache.data = data;
  745. return index;
  746. },
  747. set: function (content, config, tags, append) {
  748. var data = self.previewCache.data, i, chk;
  749. if (!content || !content.length) {
  750. return;
  751. }
  752. if (!$h.isArray(content)) {
  753. content = content.split(self.initialPreviewDelimiter);
  754. }
  755. chk = content.filter(function (n) {
  756. return n !== null;
  757. });
  758. if (!chk.length) {
  759. return;
  760. }
  761. if (data.content === undefined) {
  762. data.content = [];
  763. }
  764. if (data.config === undefined) {
  765. data.config = [];
  766. }
  767. if (data.tags === undefined) {
  768. data.tags = [];
  769. }
  770. if (append) {
  771. for (i = 0; i < content.length; i++) {
  772. if (content[i]) {
  773. data.content.push(content[i]);
  774. }
  775. }
  776. for (i = 0; i < config.length; i++) {
  777. if (config[i]) {
  778. data.config.push(config[i]);
  779. }
  780. }
  781. for (i = 0; i < tags.length; i++) {
  782. if (tags[i]) {
  783. data.tags.push(tags[i]);
  784. }
  785. }
  786. } else {
  787. data.content = content;
  788. data.config = config;
  789. data.tags = tags;
  790. }
  791. self.previewCache.data = data;
  792. },
  793. unset: function (index) {
  794. var chk = self.previewCache.count();
  795. if (!chk) {
  796. return;
  797. }
  798. if (chk === 1) {
  799. self.previewCache.data.content = [];
  800. self.previewCache.data.config = [];
  801. self.previewCache.data.tags = [];
  802. self.initialPreview = [];
  803. self.initialPreviewConfig = [];
  804. self.initialPreviewThumbTags = [];
  805. return;
  806. }
  807. self.previewCache.data.content[index] = null;
  808. self.previewCache.data.config[index] = null;
  809. self.previewCache.data.tags[index] = null;
  810. },
  811. out: function () {
  812. var html = '', caption, len = self.previewCache.count(true), i;
  813. if (len === 0) {
  814. return {content: '', caption: ''};
  815. }
  816. for (i = 0; i < len; i++) {
  817. html += self.previewCache.get(i);
  818. }
  819. caption = self._getMsgSelected(self.previewCache.count());
  820. return {content: html, caption: caption};
  821. },
  822. footer: function (i, isDisabled, size) {
  823. var data = self.previewCache.data;
  824. if (!data || !data.config || data.config.length === 0 || $h.isEmpty(data.config[i])) {
  825. return '';
  826. }
  827. isDisabled = isDisabled === undefined ? true : isDisabled;
  828. var config = data.config[i], caption = $h.ifSet('caption', config), actions,
  829. width = $h.ifSet('width', config, 'auto'), url = $h.ifSet('url', config, false),
  830. key = $h.ifSet('key', config, null), fs = self.fileActionSettings,
  831. initPreviewShowDel = self.initialPreviewShowDelete || false,
  832. showDel = $h.ifSet('showDelete', config, $h.ifSet('showDelete', fs, initPreviewShowDel)),
  833. showZoom = $h.ifSet('showZoom', config, $h.ifSet('showZoom', fs, true)),
  834. showDrag = $h.ifSet('showDrag', config, $h.ifSet('showDrag', fs, true)),
  835. disabled = (url === false) && isDisabled;
  836. actions = self._renderFileActions(false, showDel, showZoom, showDrag, disabled, url, key, true);
  837. return self._getLayoutTemplate('footer').setTokens({
  838. 'progress': self._renderThumbProgress(),
  839. 'actions': actions,
  840. 'caption': caption,
  841. 'size': self._getSize(size),
  842. 'width': width,
  843. 'indicator': ''
  844. });
  845. }
  846. };
  847. self.previewCache.init();
  848. },
  849. _handler: function ($el, event, callback) {
  850. var self = this, ns = self.namespace, ev = event.split(' ').join(ns + ' ') + ns;
  851. if (!$el || !$el.length) {
  852. return;
  853. }
  854. $el.off(ev).on(ev, callback);
  855. },
  856. _log: function (msg) {
  857. var self = this, id = self.$element.attr('id');
  858. if (id) {
  859. msg = '"' + id + '": ' + msg;
  860. }
  861. if (typeof window.console.log !== "undefined") {
  862. window.console.log(msg);
  863. } else {
  864. window.alert(msg);
  865. }
  866. },
  867. _validate: function () {
  868. var self = this, status = self.$element.attr('type') === 'file';
  869. if (!status) {
  870. self._log('The input "type" must be set to "file" for initializing the "bootstrap-fileinput" plugin.');
  871. }
  872. return status;
  873. },
  874. _errorsExist: function () {
  875. var self = this, $err;
  876. if (self.$errorContainer.find('li').length) {
  877. return true;
  878. }
  879. $err = $(document.createElement('div')).html(self.$errorContainer.html());
  880. $err.find('span.kv-error-close').remove();
  881. $err.find('ul').remove();
  882. return $.trim($err.text()).length ? true : false;
  883. },
  884. _errorHandler: function (evt, caption) {
  885. var self = this, err = evt.target.error, showError = function (msg) {
  886. self._showError(msg.replace('{name}', caption));
  887. };
  888. /** @namespace err.NOT_FOUND_ERR */
  889. /** @namespace err.SECURITY_ERR */
  890. /** @namespace err.NOT_READABLE_ERR */
  891. if (err.code === err.NOT_FOUND_ERR) {
  892. showError(self.msgFileNotFound);
  893. } else if (err.code === err.SECURITY_ERR) {
  894. showError(self.msgFileSecured);
  895. } else if (err.code === err.NOT_READABLE_ERR) {
  896. showError(self.msgFileNotReadable);
  897. } else if (err.code === err.ABORT_ERR) {
  898. showError(self.msgFilePreviewAborted);
  899. } else {
  900. showError(self.msgFilePreviewError);
  901. }
  902. },
  903. _addError: function (msg) {
  904. var self = this, $error = self.$errorContainer;
  905. if (msg && $error.length) {
  906. $error.html(self.errorCloseButton + msg);
  907. self._handler($error.find('.kv-error-close'), 'click', function () {
  908. $error.fadeOut('slow');
  909. });
  910. }
  911. },
  912. _resetErrors: function (fade) {
  913. var self = this, $error = self.$errorContainer;
  914. self.isError = false;
  915. self.$container.removeClass('has-error');
  916. $error.html('');
  917. if (fade) {
  918. $error.fadeOut('slow');
  919. } else {
  920. $error.hide();
  921. }
  922. },
  923. _showFolderError: function (folders) {
  924. var self = this, $error = self.$errorContainer, msg;
  925. if (!folders) {
  926. return;
  927. }
  928. msg = self.msgFoldersNotAllowed.replace('{n}', folders);
  929. self._addError(msg);
  930. $h.addCss(self.$container, 'has-error');
  931. $error.fadeIn(800);
  932. self._raise('filefoldererror', [folders, msg]);
  933. },
  934. _showUploadError: function (msg, params, event) {
  935. var self = this, $error = self.$errorContainer, ev = event || 'fileuploaderror', e = params && params.id ?
  936. '<li data-file-id="' + params.id + '">' + msg + '</li>' : '<li>' + msg + '</li>';
  937. if ($error.find('ul').length === 0) {
  938. self._addError('<ul>' + e + '</ul>');
  939. } else {
  940. $error.find('ul').append(e);
  941. }
  942. $error.fadeIn(800);
  943. self._raise(ev, [params, msg]);
  944. self.$container.removeClass('file-input-new');
  945. $h.addCss(self.$container, 'has-error');
  946. return true;
  947. },
  948. _showError: function (msg, params, event) {
  949. var self = this, $error = self.$errorContainer, ev = event || 'fileerror';
  950. params = params || {};
  951. params.reader = self.reader;
  952. self._addError(msg);
  953. $error.fadeIn(800);
  954. self._raise(ev, [params, msg]);
  955. if (!self.isUploadable) {
  956. self._clearFileInput();
  957. }
  958. self.$container.removeClass('file-input-new');
  959. $h.addCss(self.$container, 'has-error');
  960. self.$btnUpload.attr('disabled', true);
  961. return true;
  962. },
  963. _noFilesError: function (params) {
  964. var self = this, label = self.minFileCount > 1 ? self.filePlural : self.fileSingle,
  965. msg = self.msgFilesTooLess.replace('{n}', self.minFileCount).replace('{files}', label),
  966. $error = self.$errorContainer;
  967. self._addError(msg);
  968. self.isError = true;
  969. self._updateFileDetails(0);
  970. $error.fadeIn(800);
  971. self._raise('fileerror', [params, msg]);
  972. self._clearFileInput();
  973. $h.addCss(self.$container, 'has-error');
  974. },
  975. _parseError: function (operation, jqXHR, errorThrown, fileName) {
  976. /** @namespace jqXHR.responseJSON */
  977. var self = this, errMsg = $.trim(errorThrown + ''), dot = errMsg.slice(-1) === '.' ? '' : '.',
  978. text = jqXHR.responseJSON !== undefined && jqXHR.responseJSON.error !== undefined ?
  979. jqXHR.responseJSON.error : jqXHR.responseText;
  980. if (self.cancelling && self.msgUploadAborted) {
  981. errMsg = self.msgUploadAborted;
  982. }
  983. if (self.showAjaxErrorDetails && text) {
  984. text = $.trim(text.replace(/\n\s*\n/g, '\n'));
  985. text = text.length > 0 ? '<pre>' + text + '</pre>' : '';
  986. errMsg += dot + text;
  987. } else {
  988. errMsg += dot;
  989. }
  990. if (errMsg === dot) {
  991. errMsg = self.msgAjaxError.replace('{operation}', operation);
  992. }
  993. self.cancelling = false;
  994. return fileName ? '<b>' + fileName + ': </b>' + errMsg : errMsg;
  995. },
  996. _parseFileType: function (file) {
  997. var self = this, isValid, vType, cat, i, types = self.allowedPreviewTypes || [];
  998. for (i = 0; i < types.length; i++) {
  999. cat = types[i];
  1000. isValid = self.fileTypeSettings[cat];
  1001. vType = isValid(file.type, file.name) ? cat : '';
  1002. if (!$h.isEmpty(vType)) {
  1003. return vType;
  1004. }
  1005. }
  1006. return 'other';
  1007. },
  1008. _getPreviewIcon: function (fname) {
  1009. var self = this, ext, out = null;
  1010. if (fname && fname.indexOf('.') > -1) {
  1011. ext = fname.split('.').pop();
  1012. if (self.previewFileIconSettings) {
  1013. out = self.previewFileIconSettings[ext] || self.previewFileIconSettings[ext.toLowerCase()] || null;
  1014. }
  1015. if (self.previewFileExtSettings) {
  1016. $.each(self.previewFileExtSettings, function (key, func) {
  1017. if (self.previewFileIconSettings[key] && func(ext)) {
  1018. out = self.previewFileIconSettings[key];
  1019. //noinspection UnnecessaryReturnStatementJS
  1020. return;
  1021. }
  1022. });
  1023. }
  1024. }
  1025. return out;
  1026. },
  1027. _parseFilePreviewIcon: function (content, fname) {
  1028. var self = this, icn = self._getPreviewIcon(fname) || self.previewFileIcon, out = content;
  1029. if (out.indexOf('{previewFileIcon}') > -1) {
  1030. out = out.setTokens({'previewFileIconClass': self.previewFileIconClass, 'previewFileIcon': icn});
  1031. }
  1032. return out;
  1033. },
  1034. _raise: function (event, params) {
  1035. var self = this, e = $.Event(event);
  1036. if (params !== undefined) {
  1037. self.$element.trigger(e, params);
  1038. } else {
  1039. self.$element.trigger(e);
  1040. }
  1041. if (e.isDefaultPrevented() || e.result === false) {
  1042. return false;
  1043. }
  1044. switch (event) {
  1045. // ignore these events
  1046. case 'filebatchuploadcomplete':
  1047. case 'filebatchuploadsuccess':
  1048. case 'fileuploaded':
  1049. case 'fileclear':
  1050. case 'filecleared':
  1051. case 'filereset':
  1052. case 'fileerror':
  1053. case 'filefoldererror':
  1054. case 'fileuploaderror':
  1055. case 'filebatchuploaderror':
  1056. case 'filedeleteerror':
  1057. case 'filecustomerror':
  1058. case 'filesuccessremove':
  1059. break;
  1060. // receive data response via `filecustomerror` event`
  1061. default:
  1062. if (!self.ajaxAborted) {
  1063. self.ajaxAborted = e.result;
  1064. }
  1065. break;
  1066. }
  1067. return true;
  1068. },
  1069. _listenFullScreen: function (isFullScreen) {
  1070. var self = this, $modal = self.$modal, $btnFull, $btnBord;
  1071. if (!$modal || !$modal.length) {
  1072. return;
  1073. }
  1074. $btnFull = $modal && $modal.find('.btn-fullscreen');
  1075. $btnBord = $modal && $modal.find('.btn-borderless');
  1076. if (!$btnFull.length || !$btnBord.length) {
  1077. return;
  1078. }
  1079. $btnFull.removeClass('active').attr('aria-pressed', 'false');
  1080. $btnBord.removeClass('active').attr('aria-pressed', 'false');
  1081. if (isFullScreen) {
  1082. $btnFull.addClass('active').attr('aria-pressed', 'true');
  1083. } else {
  1084. $btnBord.addClass('active').attr('aria-pressed', 'true');
  1085. }
  1086. if ($modal.hasClass('file-zoom-fullscreen')) {
  1087. self._maximizeZoomDialog();
  1088. } else {
  1089. if (isFullScreen) {
  1090. self._maximizeZoomDialog();
  1091. } else {
  1092. $btnBord.removeClass('active').attr('aria-pressed', 'false');
  1093. }
  1094. }
  1095. },
  1096. _listen: function () {
  1097. var self = this, $el = self.$element, $form = self.$form, $cont = self.$container, fullScreenEvents;
  1098. self._handler($el, 'change', $.proxy(self._change, self));
  1099. if (self.showBrowse) {
  1100. self._handler(self.$btnFile, 'click', $.proxy(self._browse, self));
  1101. }
  1102. self._handler($cont.find('.fileinput-remove:not([disabled])'), 'click', $.proxy(self.clear, self));
  1103. self._handler($cont.find('.fileinput-cancel'), 'click', $.proxy(self.cancel, self));
  1104. self._initDragDrop();
  1105. self._handler($form, 'reset', $.proxy(self.reset, self));
  1106. if (!self.isUploadable) {
  1107. self._handler($form, 'submit', $.proxy(self._submitForm, self));
  1108. }
  1109. self._handler(self.$container.find('.fileinput-upload'), 'click', $.proxy(self._uploadClick, self));
  1110. self._handler($(window), 'resize', function () {
  1111. self._listenFullScreen(screen.width === window.innerWidth && screen.height === window.innerHeight);
  1112. });
  1113. fullScreenEvents = 'webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange';
  1114. self._handler($(document), fullScreenEvents, function () {
  1115. self._listenFullScreen($h.checkFullScreen());
  1116. });
  1117. self._initClickable();
  1118. },
  1119. _initClickable: function () {
  1120. var self = this, $zone;
  1121. if (!self.isClickable) {
  1122. return;
  1123. }
  1124. $zone = self.isUploadable ? self.$dropZone : self.$preview.find('.file-default-preview');
  1125. $h.addCss($zone, 'clickable');
  1126. $zone.attr('tabindex', -1);
  1127. self._handler($zone, 'click', function (e) {
  1128. var $tar = $(e.target);
  1129. if (!$tar.parents('.file-preview-thumbnails').length || $tar.parents('.file-default-preview').length) {
  1130. self.$element.trigger('click');
  1131. $zone.blur();
  1132. }
  1133. });
  1134. },
  1135. _initDragDrop: function () {
  1136. var self = this, $zone = self.$dropZone;
  1137. if (self.isUploadable && self.dropZoneEnabled && self.showPreview) {
  1138. self._handler($zone, 'dragenter dragover', $.proxy(self._zoneDragEnter, self));
  1139. self._handler($zone, 'dragleave', $.proxy(self._zoneDragLeave, self));
  1140. self._handler($zone, 'drop', $.proxy(self._zoneDrop, self));
  1141. self._handler($(document), 'dragenter dragover drop', self._zoneDragDropInit);
  1142. }
  1143. },
  1144. _zoneDragDropInit: function (e) {
  1145. e.stopPropagation();
  1146. e.preventDefault();
  1147. },
  1148. _zoneDragEnter: function (e) {
  1149. var self = this, hasFiles = $.inArray('Files', e.originalEvent.dataTransfer.types) > -1;
  1150. self._zoneDragDropInit(e);
  1151. if (self.isDisabled || !hasFiles) {
  1152. e.originalEvent.dataTransfer.effectAllowed = 'none';
  1153. e.originalEvent.dataTransfer.dropEffect = 'none';
  1154. return;
  1155. }
  1156. $h.addCss(self.$dropZone, 'file-highlighted');
  1157. },
  1158. _zoneDragLeave: function (e) {
  1159. var self = this;
  1160. self._zoneDragDropInit(e);
  1161. if (self.isDisabled) {
  1162. return;
  1163. }
  1164. self.$dropZone.removeClass('file-highlighted');
  1165. },
  1166. _zoneDrop: function (e) {
  1167. var self = this;
  1168. e.preventDefault();
  1169. /** @namespace e.originalEvent.dataTransfer */
  1170. if (self.isDisabled || $h.isEmpty(e.originalEvent.dataTransfer.files)) {
  1171. return;
  1172. }
  1173. self._change(e, 'dragdrop');
  1174. self.$dropZone.removeClass('file-highlighted');
  1175. },
  1176. _uploadClick: function (e) {
  1177. var self = this, $btn = self.$container.find('.fileinput-upload'), $form,
  1178. isEnabled = !$btn.hasClass('disabled') && $h.isEmpty($btn.attr('disabled'));
  1179. if (e && e.isDefaultPrevented()) {
  1180. return;
  1181. }
  1182. if (!self.isUploadable) {
  1183. if (isEnabled && $btn.attr('type') !== 'submit') {
  1184. $form = $btn.closest('form');
  1185. // downgrade to normal form submit if possible
  1186. if ($form.length) {
  1187. $form.trigger('submit');
  1188. }
  1189. e.preventDefault();
  1190. }
  1191. return;
  1192. }
  1193. e.preventDefault();
  1194. if (isEnabled) {
  1195. self.upload();
  1196. }
  1197. },
  1198. _submitForm: function () {
  1199. var self = this;
  1200. return self._isFileSelectionValid() && !self._abort({});
  1201. },
  1202. _clearPreview: function () {
  1203. var self = this, $p = self.$preview,
  1204. $thumbs = self.showUploadedThumbs ? $p.find($h.FRAMES + ':not(.file-preview-success)') : $p.find($h.FRAMES);
  1205. $thumbs.each(function () {
  1206. var $thumb = $(this);
  1207. $thumb.remove();
  1208. $h.cleanZoomCache($p.find('#zoom-' + $thumb.attr('id')));
  1209. });
  1210. if (!self.$preview.find($h.FRAMES).length || !self.showPreview) {
  1211. self._resetUpload();
  1212. }
  1213. self._validateDefaultPreview();
  1214. },
  1215. _initSortable: function () {
  1216. var self = this, $el = self.$preview, settings, selector = '.' + $h.SORT_CSS;
  1217. if (!window.KvSortable || $el.find(selector).length === 0) {
  1218. return;
  1219. }
  1220. //noinspection JSUnusedGlobalSymbols
  1221. settings = {
  1222. handle: '.drag-handle-init',
  1223. dataIdAttr: 'data-preview-id',
  1224. scroll: false,
  1225. draggable: selector,
  1226. onSort: function (e) {
  1227. var oldIndex = e.oldIndex, newIndex = e.newIndex, key, $frame;
  1228. self.initialPreview = $h.moveArray(self.initialPreview, oldIndex, newIndex);
  1229. self.initialPreviewConfig = $h.moveArray(self.initialPreviewConfig, oldIndex, newIndex);
  1230. self.previewCache.init();
  1231. for (var i = 0; i < self.initialPreviewConfig.length; i++) {
  1232. if (self.initialPreviewConfig[i] !== null) {
  1233. key = self.initialPreviewConfig[i].key;
  1234. $frame = $(".kv-file-remove[data-key='" + key + "']").closest($h.FRAMES);
  1235. $frame.attr('data-fileindex', 'init_' + i).attr('data-fileindex', 'init_' + i);
  1236. }
  1237. }
  1238. self._raise('filesorted', {
  1239. previewId: $(e.item).attr('id'),
  1240. 'oldIndex': oldIndex,
  1241. 'newIndex': newIndex,
  1242. stack: self.initialPreviewConfig
  1243. });
  1244. }
  1245. };
  1246. if ($el.data('kvsortable')) {
  1247. $el.kvsortable('destroy');
  1248. }
  1249. $.extend(true, settings, self.fileActionSettings.dragSettings);
  1250. $el.kvsortable(settings);
  1251. },
  1252. _initPreview: function (isInit) {
  1253. var self = this, cap = self.initialCaption || '', out;
  1254. if (!self.previewCache.count()) {
  1255. self._clearPreview();
  1256. if (isInit) {
  1257. self._setCaption(cap);
  1258. } else {
  1259. self._initCaption();
  1260. }
  1261. return;
  1262. }
  1263. out = self.previewCache.out();
  1264. cap = isInit && self.initialCaption ? self.initialCaption : out.caption;
  1265. self.$preview.html(out.content);
  1266. self._setInitThumbAttr();
  1267. self._setCaption(cap);
  1268. self._initSortable();
  1269. if (!$h.isEmpty(out.content)) {
  1270. self.$container.removeClass('file-input-new');
  1271. }
  1272. },
  1273. _getZoomButton: function (type) {
  1274. var self = this, label = self.previewZoomButtonIcons[type], css = self.previewZoomButtonClasses[type],
  1275. title = ' title="' + (self.previewZoomButtonTitles[type] || '') + '" ',
  1276. params = title + (type === 'close' ? ' data-dismiss="modal" aria-hidden="true"' : '');
  1277. if (type === 'fullscreen' || type === 'borderless' || type === 'toggleheader') {
  1278. params += ' data-toggle="button" aria-pressed="false" autocomplete="off"';
  1279. }
  1280. return '<button type="button" class="' + css + ' btn-' + type + '"' + params + '>' + label + '</button>';
  1281. },
  1282. _getModalContent: function () {
  1283. var self = this;
  1284. return self._getLayoutTemplate('modal').setTokens({
  1285. 'zoomFrameClass': self.frameClass,
  1286. 'heading': self.msgZoomModalHeading,
  1287. 'prev': self._getZoomButton('prev'),
  1288. 'next': self._getZoomButton('next'),
  1289. 'toggleheader': self._getZoomButton('toggleheader'),
  1290. 'fullscreen': self._getZoomButton('fullscreen'),
  1291. 'borderless': self._getZoomButton('borderless'),
  1292. 'close': self._getZoomButton('close')
  1293. });
  1294. },
  1295. _listenModalEvent: function (event) {
  1296. var self = this, $modal = self.$modal, getParams = function (e) {
  1297. return {
  1298. sourceEvent: e,
  1299. previewId: $modal.data('previewId'),
  1300. modal: $modal
  1301. };
  1302. };
  1303. $modal.on(event + '.bs.modal', function (e) {
  1304. var $btnFull = $modal.find('.btn-fullscreen'), $btnBord = $modal.find('.btn-borderless');
  1305. self._raise('filezoom' + event, getParams(e));
  1306. if (event === 'shown') {
  1307. $btnBord.removeClass('active').attr('aria-pressed', 'false');
  1308. $btnFull.removeClass('active').attr('aria-pressed', 'false');
  1309. if ($modal.hasClass('file-zoom-fullscreen')) {
  1310. self._maximizeZoomDialog();
  1311. if ($h.checkFullScreen()) {
  1312. $btnFull.addClass('active').attr('aria-pressed', 'true');
  1313. } else {
  1314. $btnBord.addClass('active').attr('aria-pressed', 'true');
  1315. }
  1316. }
  1317. }
  1318. });
  1319. },
  1320. _initZoom: function () {
  1321. var self = this, $dialog, modalMain = self._getLayoutTemplate('modalMain'), modalId = '#' + $h.MODAL_ID;
  1322. if (!self.showPreview) {
  1323. return;
  1324. }
  1325. self.$modal = $(modalId);
  1326. if (!self.$modal || !self.$modal.length) {
  1327. $dialog = $(document.createElement('div')).html(modalMain).insertAfter(self.$container);
  1328. self.$modal = $(modalId).insertBefore($dialog);
  1329. $dialog.remove();
  1330. }
  1331. $h.initModal(self.$modal);
  1332. self.$modal.html(self._getModalContent());
  1333. $.each($h.MODAL_EVENTS, function (key, event) {
  1334. self._listenModalEvent(event);
  1335. });
  1336. },
  1337. _initZoomButtons: function () {
  1338. var self = this, previewId = self.$modal.data('previewId') || '', $first, $last, $preview = self.$preview,
  1339. thumbs = $preview.find($h.FRAMES).toArray(), len = thumbs.length,
  1340. $prev = self.$modal.find('.btn-prev'), $next = self.$modal.find('.btn-next');
  1341. if (thumbs.length < 2) {
  1342. $prev.hide();
  1343. $next.hide();
  1344. return;
  1345. } else {
  1346. $prev.show();
  1347. $next.show();
  1348. }
  1349. if (!len) {
  1350. return;
  1351. }
  1352. $first = $(thumbs[0]);
  1353. $last = $(thumbs[len - 1]);
  1354. $prev.removeAttr('disabled');
  1355. $next.removeAttr('disabled');
  1356. if ($first.length && $first.attr('id') === previewId) {
  1357. $prev.attr('disabled', true);
  1358. }
  1359. if ($last.length && $last.attr('id') === previewId) {
  1360. $next.attr('disabled', true);
  1361. }
  1362. },
  1363. _maximizeZoomDialog: function () {
  1364. var self = this, $modal = self.$modal, $head = $modal.find('.modal-header:visible'),
  1365. $foot = $modal.find('.modal-footer:visible'), $body = $modal.find('.modal-body'),
  1366. h = $(window).height(), diff = 0;
  1367. $modal.addClass('file-zoom-fullscreen');
  1368. if ($head && $head.length) {
  1369. h -= $head.outerHeight(true);
  1370. }
  1371. if ($foot && $foot.length) {
  1372. h -= $foot.outerHeight(true);
  1373. }
  1374. if ($body && $body.length) {
  1375. diff = $body.outerHeight(true) - $body.height();
  1376. h -= diff;
  1377. }
  1378. $modal.find('.kv-zoom-body').height(h);
  1379. },
  1380. _resizeZoomDialog: function (fullScreen) {
  1381. var self = this, $modal = self.$modal, $btnFull = $modal.find('.btn-fullscreen'),
  1382. $btnBord = $modal.find('.btn-borderless');
  1383. if ($modal.hasClass('file-zoom-fullscreen')) {
  1384. $h.toggleFullScreen(false);
  1385. if (!fullScreen) {
  1386. if (!$btnFull.hasClass('active')) {
  1387. $modal.removeClass('file-zoom-fullscreen');
  1388. self.$modal.find('.kv-zoom-body').css('height', self.zoomModalHeight);
  1389. } else {
  1390. $btnFull.removeClass('active').attr('aria-pressed', 'false');
  1391. }
  1392. } else {
  1393. if (!$btnFull.hasClass('active')) {
  1394. $modal.removeClass('file-zoom-fullscreen');
  1395. self._resizeZoomDialog(true);
  1396. if ($btnBord.hasClass('active')) {
  1397. $btnBord.removeClass('active').attr('aria-pressed', 'false');
  1398. }
  1399. }
  1400. }
  1401. } else {
  1402. if (!fullScreen) {
  1403. self._maximizeZoomDialog();
  1404. return;
  1405. }
  1406. $h.toggleFullScreen(true);
  1407. }
  1408. $modal.focus();
  1409. },
  1410. _setZoomContent: function ($frame, animate) {
  1411. var self = this, $content, tmplt, body, title, $body, $dataEl, config, pid = $frame.attr('id'),
  1412. $modal = self.$modal, $prev = $modal.find('.btn-prev'), $next = $modal.find('.btn-next'), $tmp,
  1413. $btnFull = $modal.find('.btn-fullscreen'), $btnBord = $modal.find('.btn-borderless'), cap, size,
  1414. $btnTogh = $modal.find('.btn-toggleheader'), $zoomPreview = self.$preview.find('#zoom-' + pid);
  1415. tmplt = $zoomPreview.attr('data-template') || 'generic';
  1416. $content = $zoomPreview.find('.kv-file-content');
  1417. body = $content.length ? $content.html() : '';
  1418. cap = $frame.data('caption') || '';
  1419. size = $frame.data('size') || '';
  1420. title = cap + ' ' + size;
  1421. $modal.find('.kv-zoom-title').html(title);
  1422. $body = $modal.find('.kv-zoom-body');
  1423. $modal.removeClass('kv-single-content');
  1424. if (animate) {
  1425. $tmp = $body.addClass('file-thumb-loading').clone().insertAfter($body);
  1426. $body.html(body).hide();
  1427. $tmp.fadeOut('fast', function () {
  1428. $body.fadeIn('fast', function () {
  1429. $body.removeClass('file-thumb-loading');
  1430. });
  1431. $tmp.remove();
  1432. });
  1433. } else {
  1434. $body.html(body);
  1435. }
  1436. config = self.previewZoomSettings[tmplt];
  1437. if (config) {
  1438. $dataEl = $body.find('.kv-preview-data');
  1439. $h.addCss($dataEl, 'file-zoom-detail');
  1440. $.each(config, function (key, value) {
  1441. $dataEl.css(key, value);
  1442. if (($dataEl.attr('width') && key === 'width') || ($dataEl.attr('height') && key === 'height')) {
  1443. $dataEl.removeAttr(key);
  1444. }
  1445. });
  1446. }
  1447. $modal.data('previewId', pid);
  1448. var $img = $body.find('img');
  1449. if ($img.length) {
  1450. $h.adjustOrientedImage($img, true);
  1451. }
  1452. self._handler($prev, 'click', function () {
  1453. self._zoomSlideShow('prev', pid);
  1454. });
  1455. self._handler($next, 'click', function () {
  1456. self._zoomSlideShow('next', pid);
  1457. });
  1458. self._handler($btnFull, 'click', function () {
  1459. self._resizeZoomDialog(true);
  1460. });
  1461. self._handler($btnBord, 'click', function () {
  1462. self._resizeZoomDialog(false);
  1463. });
  1464. self._handler($btnTogh, 'click', function () {
  1465. var $header = $modal.find('.modal-header'), $floatBar = $modal.find('.modal-body .floating-buttons'),
  1466. ht, $actions = $header.find('.kv-zoom-actions'), resize = function (height) {
  1467. var $body = self.$modal.find('.kv-zoom-body'), h = self.zoomModalHeight;
  1468. if ($modal.hasClass('file-zoom-fullscreen')) {
  1469. h = $body.outerHeight(true);
  1470. if (!height) {
  1471. h = h - $header.outerHeight(true);
  1472. }
  1473. }
  1474. $body.css('height', height ? h + height : h);
  1475. };
  1476. if ($header.is(':visible')) {
  1477. ht = $header.outerHeight(true);
  1478. $header.slideUp('slow', function () {
  1479. $actions.find('.btn').appendTo($floatBar);
  1480. resize(ht);
  1481. });
  1482. } else {
  1483. $floatBar.find('.btn').appendTo($actions);
  1484. $header.slideDown('slow', function () {
  1485. resize();
  1486. });
  1487. }
  1488. $modal.focus();
  1489. });
  1490. self._handler($modal, 'keydown', function (e) {
  1491. var key = e.which || e.keyCode;
  1492. if (key === 37 && !$prev.attr('disabled')) {
  1493. self._zoomSlideShow('prev', pid);
  1494. }
  1495. if (key === 39 && !$next.attr('disabled')) {
  1496. self._zoomSlideShow('next', pid);
  1497. }
  1498. });
  1499. },
  1500. _zoomPreview: function ($btn) {
  1501. var self = this, $frame, $modal = self.$modal;
  1502. if (!$btn.length) {
  1503. throw 'Cannot zoom to detailed preview!';
  1504. }
  1505. $h.initModal($modal);
  1506. $modal.html(self._getModalContent());
  1507. $frame = $btn.closest($h.FRAMES);
  1508. self._setZoomContent($frame);
  1509. $modal.modal('show');
  1510. self._initZoomButtons();
  1511. },
  1512. _zoomSlideShow: function (dir, previewId) {
  1513. var self = this, $btn = self.$modal.find('.kv-zoom-actions .btn-' + dir), $targFrame, i,
  1514. thumbs = self.$preview.find($h.FRAMES).toArray(), len = thumbs.length, out;
  1515. if ($btn.attr('disabled')) {
  1516. return;
  1517. }
  1518. for (i = 0; i < len; i++) {
  1519. if ($(thumbs[i]).attr('id') === previewId) {
  1520. out = dir === 'prev' ? i - 1 : i + 1;
  1521. break;
  1522. }
  1523. }
  1524. if (out < 0 || out >= len || !thumbs[out]) {
  1525. return;
  1526. }
  1527. $targFrame = $(thumbs[out]);
  1528. if ($targFrame.length) {
  1529. self._setZoomContent($targFrame, true);
  1530. }
  1531. self._initZoomButtons();
  1532. self._raise('filezoom' + dir, {'previewId': previewId, modal: self.$modal});
  1533. },
  1534. _initZoomButton: function () {
  1535. var self = this;
  1536. self.$preview.find('.kv-file-zoom').each(function () {
  1537. var $el = $(this);
  1538. self._handler($el, 'click', function () {
  1539. self._zoomPreview($el);
  1540. });
  1541. });
  1542. },
  1543. _clearObjects: function ($el) {
  1544. $el.find('video audio').each(function () {
  1545. this.pause();
  1546. $(this).remove();
  1547. });
  1548. $el.find('img object div').each(function () {
  1549. $(this).remove();
  1550. });
  1551. },
  1552. _clearFileInput: function () {
  1553. var self = this, $el = self.$element, $srcFrm, $tmpFrm, $tmpEl;
  1554. self.fileInputCleared = true;
  1555. if ($h.isEmpty($el.val())) {
  1556. return;
  1557. }
  1558. // Fix for IE ver < 11, that does not clear file inputs. Requires a sequence of steps to prevent IE
  1559. // crashing but still allow clearing of the file input.
  1560. if (self.isIE9 || self.isIE10) {
  1561. $srcFrm = $el.closest('form');
  1562. $tmpFrm = $(document.createElement('form'));
  1563. $tmpEl = $(document.createElement('div'));
  1564. $el.before($tmpEl);
  1565. if ($srcFrm.length) {
  1566. $srcFrm.after($tmpFrm);
  1567. } else {
  1568. $tmpEl.after($tmpFrm);
  1569. }
  1570. $tmpFrm.append($el).trigger('reset');
  1571. $tmpEl.before($el).remove();
  1572. $tmpFrm.remove();
  1573. } else { // normal input clear behavior for other sane browsers
  1574. $el.val('');
  1575. }
  1576. },
  1577. _resetUpload: function () {
  1578. var self = this;
  1579. self.uploadCache = {content: [], config: [], tags: [], append: true};
  1580. self.uploadCount = 0;
  1581. self.uploadStatus = {};
  1582. self.uploadLog = [];
  1583. self.uploadAsyncCount = 0;
  1584. self.loadedImages = [];
  1585. self.totalImagesCount = 0;
  1586. self.$btnUpload.removeAttr('disabled');
  1587. self._setProgress(0);
  1588. $h.addCss(self.$progress, 'hide');
  1589. self._resetErrors(false);
  1590. self.ajaxAborted = false;
  1591. self.ajaxRequests = [];
  1592. self._resetCanvas();
  1593. self.cacheInitialPreview = {};
  1594. if (self.overwriteInitial) {
  1595. self.initialPreview = [];
  1596. self.initialPreviewConfig = [];
  1597. self.initialPreviewThumbTags = [];
  1598. self.previewCache.data = {
  1599. content: [],
  1600. config: [],
  1601. tags: []
  1602. };
  1603. }
  1604. },
  1605. _resetCanvas: function () {
  1606. var self = this;
  1607. if (self.canvas && self.imageCanvasContext) {
  1608. self.imageCanvasContext.clearRect(0, 0, self.canvas.width, self.canvas.height);
  1609. }
  1610. },
  1611. _hasInitialPreview: function () {
  1612. var self = this;
  1613. return !self.overwriteInitial && self.previewCache.count();
  1614. },
  1615. _resetPreview: function () {
  1616. var self = this, out, cap;
  1617. if (self.previewCache.count()) {
  1618. out = self.previewCache.out();
  1619. self.$preview.html(out.content);
  1620. self._setInitThumbAttr();
  1621. cap = self.initialCaption ? self.initialCaption : out.caption;
  1622. self._setCaption(cap);
  1623. } else {
  1624. self._clearPreview();
  1625. self._initCaption();
  1626. }
  1627. if (self.showPreview) {
  1628. self._initZoom();
  1629. self._initSortable();
  1630. }
  1631. },
  1632. _clearDefaultPreview: function () {
  1633. var self = this;
  1634. self.$preview.find('.file-default-preview').remove();
  1635. },
  1636. _validateDefaultPreview: function () {
  1637. var self = this;
  1638. if (!self.showPreview || $h.isEmpty(self.defaultPreviewContent)) {
  1639. return;
  1640. }
  1641. self.$preview.html('<div class="file-default-preview">' + self.defaultPreviewContent + '</div>');
  1642. self.$container.removeClass('file-input-new');
  1643. self._initClickable();
  1644. },
  1645. _resetPreviewThumbs: function (isAjax) {
  1646. var self = this, out;
  1647. if (isAjax) {
  1648. self._clearPreview();
  1649. self.clearStack();
  1650. return;
  1651. }
  1652. if (self._hasInitialPreview()) {
  1653. out = self.previewCache.out();
  1654. self.$preview.html(out.content);
  1655. self._setInitThumbAttr();
  1656. self._setCaption(out.caption);
  1657. self._initPreviewActions();
  1658. } else {
  1659. self._clearPreview();
  1660. }
  1661. },
  1662. _getLayoutTemplate: function (t) {
  1663. var self = this, template = self.layoutTemplates[t];
  1664. if ($h.isEmpty(self.customLayoutTags)) {
  1665. return template;
  1666. }
  1667. return $h.replaceTags(template, self.customLayoutTags);
  1668. },
  1669. _getPreviewTemplate: function (t) {
  1670. var self = this, template = self.previewTemplates[t];
  1671. if ($h.isEmpty(self.customPreviewTags)) {
  1672. return template;
  1673. }
  1674. return $h.replaceTags(template, self.customPreviewTags);
  1675. },
  1676. _getOutData: function (jqXHR, responseData, filesData) {
  1677. var self = this;
  1678. jqXHR = jqXHR || {};
  1679. responseData = responseData || {};
  1680. filesData = filesData || self.filestack.slice(0) || {};
  1681. return {
  1682. form: self.formdata,
  1683. files: filesData,
  1684. filenames: self.filenames,
  1685. filescount: self.getFilesCount(),
  1686. extra: self._getExtraData(),
  1687. response: responseData,
  1688. reader: self.reader,
  1689. jqXHR: jqXHR
  1690. };
  1691. },
  1692. _getMsgSelected: function (n) {
  1693. var self = this, strFiles = n === 1 ? self.fileSingle : self.filePlural;
  1694. return n > 0 ? self.msgSelected.replace('{n}', n).replace('{files}', strFiles) : self.msgNoFilesSelected;
  1695. },
  1696. _getThumbs: function (css) {
  1697. css = css || '';
  1698. return this.$preview.find($h.FRAMES + ':not(.file-preview-initial)' + css);
  1699. },
  1700. _getExtraData: function (previewId, index) {
  1701. var self = this, data = self.uploadExtraData;
  1702. if (typeof self.uploadExtraData === "function") {
  1703. data = self.uploadExtraData(previewId, index);
  1704. }
  1705. return data;
  1706. },
  1707. _initXhr: function (xhrobj, previewId, fileCount) {
  1708. var self = this;
  1709. if (xhrobj.upload) {
  1710. xhrobj.upload.addEventListener('progress', function (event) {
  1711. var pct = 0, total = event.total, position = event.loaded || event.position;
  1712. /** @namespace event.lengthComputable */
  1713. if (event.lengthComputable) {
  1714. pct = Math.floor(position / total * 100);
  1715. }
  1716. if (previewId) {
  1717. self._setAsyncUploadStatus(previewId, pct, fileCount);
  1718. } else {
  1719. self._setProgress(pct);
  1720. }
  1721. }, false);
  1722. }
  1723. return xhrobj;
  1724. },
  1725. _ajaxSubmit: function (fnBefore, fnSuccess, fnComplete, fnError, previewId, index) {
  1726. var self = this, settings;
  1727. if (!self._raise('filepreajax', [previewId, index])) {
  1728. return;
  1729. }
  1730. self._uploadExtra(previewId, index);
  1731. settings = $.extend(true, {}, {
  1732. xhr: function () {
  1733. var xhrobj = $.ajaxSettings.xhr();
  1734. return self._initXhr(xhrobj, previewId, self.getFileStack().length);
  1735. },
  1736. url: self.uploadUrl,
  1737. type: 'POST',
  1738. dataType: 'json',
  1739. data: self.formdata,
  1740. cache: false,
  1741. processData: false,
  1742. contentType: false,
  1743. beforeSend: fnBefore,
  1744. success: fnSuccess,
  1745. complete: fnComplete,
  1746. error: fnError
  1747. }, self.ajaxSettings);
  1748. self.ajaxRequests.push($.ajax(settings));
  1749. },
  1750. _mergeArray: function (prop, content) {
  1751. var self = this, arr1 = $h.cleanArray(self[prop]), arr2 = $h.cleanArray(content);
  1752. self[prop] = arr1.concat(arr2);
  1753. },
  1754. _initUploadSuccess: function (out, $thumb, allFiles) {
  1755. var self = this, append, data, index, $div, $newCache, content, config, tags, i;
  1756. if (!self.showPreview || typeof out !== 'object' || $.isEmptyObject(out)) {
  1757. return;
  1758. }
  1759. if (out.initialPreview !== undefined && out.initialPreview.length > 0) {
  1760. self.hasInitData = true;
  1761. content = out.initialPreview || [];
  1762. config = out.initialPreviewConfig || [];
  1763. tags = out.initialPreviewThumbTags || [];
  1764. append = out.append === undefined || out.append ? true : false;
  1765. if (content.length > 0 && !$h.isArray(content)) {
  1766. content = content.split(self.initialPreviewDelimiter);
  1767. }
  1768. self._mergeArray('initialPreview', content);
  1769. self._mergeArray('initialPreviewConfig', config);
  1770. self._mergeArray('initialPreviewThumbTags', tags);
  1771. if ($thumb !== undefined) {
  1772. if (!allFiles) {
  1773. index = self.previewCache.add(content, config[0], tags[0], append);
  1774. data = self.previewCache.get(index, false);
  1775. $div = $(document.createElement('div')).html(data).hide().insertAfter($thumb);
  1776. $newCache = $div.find('.kv-zoom-cache');
  1777. if ($newCache && $newCache.length) {
  1778. $newCache.insertAfter($thumb);
  1779. }
  1780. $thumb.fadeOut('slow', function () {
  1781. var $newThumb = $div.find('.file-preview-frame');
  1782. if ($newThumb && $newThumb.length) {
  1783. $newThumb.insertBefore($thumb).fadeIn('slow').css('display:inline-block');
  1784. }
  1785. self._initPreviewActions();
  1786. self._clearFileInput();
  1787. $h.cleanZoomCache(self.$preview.find('#zoom-' + $thumb.attr('id')));
  1788. $thumb.remove();
  1789. $div.remove();
  1790. self._initSortable();
  1791. });
  1792. } else {
  1793. i = $thumb.attr('data-fileindex');
  1794. self.uploadCache.content[i] = content[0];
  1795. self.uploadCache.config[i] = config[0] || [];
  1796. self.uploadCache.tags[i] = tags[0] || [];
  1797. self.uploadCache.append = append;
  1798. }
  1799. } else {
  1800. self.previewCache.set(content, config, tags, append);
  1801. self._initPreview();
  1802. self._initPreviewActions();
  1803. }
  1804. }
  1805. },
  1806. _initSuccessThumbs: function () {
  1807. var self = this;
  1808. if (!self.showPreview) {
  1809. return;
  1810. }
  1811. self._getThumbs($h.FRAMES + '.file-preview-success').each(function () {
  1812. var $thumb = $(this), $preview = self.$preview, $remove = $thumb.find('.kv-file-remove');
  1813. $remove.removeAttr('disabled');
  1814. self._handler($remove, 'click', function () {
  1815. var id = $thumb.attr('id'),
  1816. out = self._raise('filesuccessremove', [id, $thumb.attr('data-fileindex')]);
  1817. $h.cleanMemory($thumb);
  1818. if (out === false) {
  1819. return;
  1820. }
  1821. $thumb.fadeOut('slow', function () {
  1822. $h.cleanZoomCache($preview.find('#zoom-' + id));
  1823. $thumb.remove();
  1824. if (!$preview.find($h.FRAMES).length) {
  1825. self.reset();
  1826. }
  1827. });
  1828. });
  1829. });
  1830. },
  1831. _checkAsyncComplete: function () {
  1832. var self = this, previewId, i;
  1833. for (i = 0; i < self.filestack.length; i++) {
  1834. if (self.filestack[i]) {
  1835. previewId = self.previewInitId + "-" + i;
  1836. if ($.inArray(previewId, self.uploadLog) === -1) {
  1837. return false;
  1838. }
  1839. }
  1840. }
  1841. return (self.uploadAsyncCount === self.uploadLog.length);
  1842. },
  1843. _uploadExtra: function (previewId, index) {
  1844. var self = this, data = self._getExtraData(previewId, index);
  1845. if (data.length === 0) {
  1846. return;
  1847. }
  1848. $.each(data, function (key, value) {
  1849. self.formdata.append(key, value);
  1850. });
  1851. },
  1852. _uploadSingle: function (i, files, allFiles) {
  1853. var self = this, total = self.getFileStack().length, formdata = new FormData(), outData,
  1854. previewId = self.previewInitId + "-" + i, $thumb, chkComplete, $btnUpload, $btnDelete,
  1855. hasPostData = self.filestack.length > 0 || !$.isEmptyObject(self.uploadExtraData),
  1856. $prog = $('#' + previewId).find('.file-thumb-progress'),
  1857. fnBefore, fnSuccess, fnComplete, fnError, updateUploadLog, params = {id: previewId, index: i};
  1858. self.formdata = formdata;
  1859. if (self.showPreview) {
  1860. $thumb = $('#' + previewId + ':not(.file-preview-initial)');
  1861. $btnUpload = $thumb.find('.kv-file-upload');
  1862. $btnDelete = $thumb.find('.kv-file-remove');
  1863. $prog.removeClass('hide');
  1864. }
  1865. if (total === 0 || !hasPostData || ($btnUpload && $btnUpload.hasClass('disabled')) || self._abort(params)) {
  1866. return;
  1867. }
  1868. updateUploadLog = function (i, previewId) {
  1869. self.updateStack(i, undefined);
  1870. self.uploadLog.push(previewId);
  1871. if (self._checkAsyncComplete()) {
  1872. self.fileBatchCompleted = true;
  1873. }
  1874. };
  1875. chkComplete = function () {
  1876. var u = self.uploadCache, $initThumbs, i, j, len = 0, data = self.cacheInitialPreview;
  1877. if (!self.fileBatchCompleted) {
  1878. return;
  1879. }
  1880. if (data && data.content) {
  1881. len = data.content.length;
  1882. }
  1883. setTimeout(function () {
  1884. if (self.showPreview) {
  1885. self.previewCache.set(u.content, u.config, u.tags, u.append);
  1886. if (len) {
  1887. for (i = 0; i < u.content.length; i++) {
  1888. j = i + len;
  1889. data.content[j] = u.content[i];
  1890. if (data.config.length) {
  1891. data.config[j] = u.config[i];
  1892. }
  1893. if (data.tags.length) {
  1894. data.tags[j] = u.tags[i];
  1895. }
  1896. }
  1897. self.initialPreview = $h.cleanArray(data.content);
  1898. self.initialPreviewConfig = $h.cleanArray(data.config);
  1899. self.initialPreviewThumbTags = $h.cleanArray(data.tags);
  1900. } else {
  1901. self.initialPreview = u.content;
  1902. self.initialPreviewConfig = u.config;
  1903. self.initialPreviewThumbTags = u.tags;
  1904. }
  1905. self.cacheInitialPreview = {};
  1906. if (self.hasInitData) {
  1907. self._initPreview();
  1908. self._initPreviewActions();
  1909. }
  1910. }
  1911. self.unlock();
  1912. self._clearFileInput();
  1913. $initThumbs = self.$preview.find('.file-preview-initial');
  1914. if (self.uploadAsync && $initThumbs.length) {
  1915. $h.addCss($initThumbs, $h.SORT_CSS);
  1916. self._initSortable();
  1917. }
  1918. self._raise('filebatchuploadcomplete', [self.filestack, self._getExtraData()]);
  1919. self.uploadCount = 0;
  1920. self.uploadStatus = {};
  1921. self.uploadLog = [];
  1922. self._setProgress(101);
  1923. }, 100);
  1924. };
  1925. fnBefore = function (jqXHR) {
  1926. outData = self._getOutData(jqXHR);
  1927. self.fileBatchCompleted = false;
  1928. if (self.showPreview) {
  1929. if (!$thumb.hasClass('file-preview-success')) {
  1930. self._setThumbStatus($thumb, 'Loading');
  1931. $h.addCss($thumb, 'file-uploading');
  1932. }
  1933. $btnUpload.attr('disabled', true);
  1934. $btnDelete.attr('disabled', true);
  1935. }
  1936. if (!allFiles) {
  1937. self.lock();
  1938. }
  1939. self._raise('filepreupload', [outData, previewId, i]);
  1940. $.extend(true, params, outData);
  1941. if (self._abort(params)) {
  1942. jqXHR.abort();
  1943. self._setProgressCancelled();
  1944. }
  1945. };
  1946. fnSuccess = function (data, textStatus, jqXHR) {
  1947. var pid = self.showPreview && $thumb.attr('id') ? $thumb.attr('id') : previewId;
  1948. outData = self._getOutData(jqXHR, data);
  1949. $.extend(true, params, outData);
  1950. setTimeout(function () {
  1951. if ($h.isEmpty(data) || $h.isEmpty(data.error)) {
  1952. if (self.showPreview) {
  1953. self._setThumbStatus($thumb, 'Success');
  1954. $btnUpload.hide();
  1955. self._initUploadSuccess(data, $thumb, allFiles);
  1956. self._setProgress(101, $prog);
  1957. }
  1958. self._raise('fileuploaded', [outData, pid, i]);
  1959. if (!allFiles) {
  1960. self.updateStack(i, undefined);
  1961. } else {
  1962. updateUploadLog(i, pid);
  1963. }
  1964. } else {
  1965. self._showUploadError(data.error, params);
  1966. self._setPreviewError($thumb, i);
  1967. if (allFiles) {
  1968. updateUploadLog(i, pid);
  1969. }
  1970. }
  1971. }, 100);
  1972. };
  1973. fnComplete = function () {
  1974. setTimeout(function () {
  1975. if (self.showPreview) {
  1976. $btnUpload.removeAttr('disabled');
  1977. $btnDelete.removeAttr('disabled');
  1978. $thumb.removeClass('file-uploading');
  1979. }
  1980. if (!allFiles) {
  1981. self.unlock(false);
  1982. self._clearFileInput();
  1983. } else {
  1984. chkComplete();
  1985. }
  1986. self._initSuccessThumbs();
  1987. }, 100);
  1988. };
  1989. fnError = function (jqXHR, textStatus, errorThrown) {
  1990. var op = self.ajaxOperations.uploadThumb,
  1991. errMsg = self._parseError(op, jqXHR, errorThrown, (allFiles ? files[i].name : null));
  1992. setTimeout(function () {
  1993. if (allFiles) {
  1994. updateUploadLog(i, previewId);
  1995. }
  1996. self.uploadStatus[previewId] = 100;
  1997. self._setPreviewError($thumb, i);
  1998. $.extend(true, params, self._getOutData(jqXHR));
  1999. self._setProgress(101, $prog, self.msgAjaxProgressError.replace('{operation}', op));
  2000. self._showUploadError(errMsg, params);
  2001. }, 100);
  2002. };
  2003. formdata.append(self.uploadFileAttr, files[i], self.filenames[i]);
  2004. formdata.append('file_id', i);
  2005. self._ajaxSubmit(fnBefore, fnSuccess, fnComplete, fnError, previewId, i);
  2006. },
  2007. _uploadBatch: function () {
  2008. var self = this, files = self.filestack, total = files.length, params = {}, fnBefore, fnSuccess, fnError,
  2009. fnComplete, hasPostData = self.filestack.length > 0 || !$.isEmptyObject(self.uploadExtraData),
  2010. setAllUploaded;
  2011. self.formdata = new FormData();
  2012. if (total === 0 || !hasPostData || self._abort(params)) {
  2013. return;
  2014. }
  2015. setAllUploaded = function () {
  2016. $.each(files, function (key) {
  2017. self.updateStack(key, undefined);
  2018. });
  2019. self._clearFileInput();
  2020. };
  2021. fnBefore = function (jqXHR) {
  2022. self.lock();
  2023. var outData = self._getOutData(jqXHR);
  2024. if (self.showPreview) {
  2025. self._getThumbs().each(function () {
  2026. var $thumb = $(this), $btnUpload = $thumb.find('.kv-file-upload'),
  2027. $btnDelete = $thumb.find('.kv-file-remove');
  2028. if (!$thumb.hasClass('file-preview-success')) {
  2029. self._setThumbStatus($thumb, 'Loading');
  2030. $h.addCss($thumb, 'file-uploading');
  2031. }
  2032. $btnUpload.attr('disabled', true);
  2033. $btnDelete.attr('disabled', true);
  2034. });
  2035. }
  2036. self._raise('filebatchpreupload', [outData]);
  2037. if (self._abort(outData)) {
  2038. jqXHR.abort();
  2039. self._setProgressCancelled();
  2040. }
  2041. };
  2042. fnSuccess = function (data, textStatus, jqXHR) {
  2043. /** @namespace data.errorkeys */
  2044. var outData = self._getOutData(jqXHR, data), $thumbs = self._getThumbs(':not(.file-preview-error)'),
  2045. key = 0,
  2046. keys = $h.isEmpty(data) || $h.isEmpty(data.errorkeys) ? [] : data.errorkeys;
  2047. if ($h.isEmpty(data) || $h.isEmpty(data.error)) {
  2048. self._raise('filebatchuploadsuccess', [outData]);
  2049. setAllUploaded();
  2050. if (self.showPreview) {
  2051. $thumbs.each(function () {
  2052. var $thumb = $(this), $btnUpload = $thumb.find('.kv-file-upload');
  2053. $thumb.find('.kv-file-upload').hide();
  2054. self._setThumbStatus($thumb, 'Success');
  2055. $thumb.removeClass('file-uploading');
  2056. $btnUpload.removeAttr('disabled');
  2057. });
  2058. self._initUploadSuccess(data);
  2059. } else {
  2060. self.reset();
  2061. }
  2062. self._setProgress(101);
  2063. } else {
  2064. if (self.showPreview) {
  2065. $thumbs.each(function () {
  2066. var $thumb = $(this), $btnDelete = $thumb.find('.kv-file-remove'),
  2067. $btnUpload = $thumb.find('.kv-file-upload');
  2068. $thumb.removeClass('file-uploading');
  2069. $btnUpload.removeAttr('disabled');
  2070. $btnDelete.removeAttr('disabled');
  2071. if (keys.length === 0) {
  2072. self._setPreviewError($thumb);
  2073. return;
  2074. }
  2075. if ($.inArray(key, keys) !== -1) {
  2076. self._setPreviewError($thumb);
  2077. } else {
  2078. $thumb.find('.kv-file-upload').hide();
  2079. self._setThumbStatus($thumb, 'Success');
  2080. self.updateStack(key, undefined);
  2081. }
  2082. key++;
  2083. });
  2084. self._initUploadSuccess(data);
  2085. }
  2086. self._showUploadError(data.error, outData, 'filebatchuploaderror');
  2087. }
  2088. };
  2089. fnComplete = function () {
  2090. self.unlock();
  2091. self._initSuccessThumbs();
  2092. self._clearFileInput();
  2093. self._raise('filebatchuploadcomplete', [self.filestack, self._getExtraData()]);
  2094. };
  2095. fnError = function (jqXHR, textStatus, errorThrown) {
  2096. var outData = self._getOutData(jqXHR), op = self.ajaxOperations.uploadBatch,
  2097. errMsg = self._parseError(op, jqXHR, errorThrown);
  2098. self._showUploadError(errMsg, outData, 'filebatchuploaderror');
  2099. self.uploadFileCount = total - 1;
  2100. if (!self.showPreview) {
  2101. return;
  2102. }
  2103. self._getThumbs().each(function () {
  2104. var $thumb = $(this), key = $thumb.attr('data-fileindex');
  2105. $thumb.removeClass('file-uploading');
  2106. if (self.filestack[key] !== undefined) {
  2107. self._setPreviewError($thumb);
  2108. }
  2109. });
  2110. self._getThumbs().removeClass('file-uploading');
  2111. self._getThumbs(' .kv-file-upload').removeAttr('disabled');
  2112. self._getThumbs(' .kv-file-delete').removeAttr('disabled');
  2113. self._setProgress(101, self.$progress, self.msgAjaxProgressError.replace('{operation}', op));
  2114. };
  2115. $.each(files, function (key, data) {
  2116. if (!$h.isEmpty(files[key])) {
  2117. self.formdata.append(self.uploadFileAttr, data, self.filenames[key]);
  2118. }
  2119. });
  2120. self._ajaxSubmit(fnBefore, fnSuccess, fnComplete, fnError);
  2121. },
  2122. _uploadExtraOnly: function () {
  2123. var self = this, params = {}, fnBefore, fnSuccess, fnComplete, fnError;
  2124. self.formdata = new FormData();
  2125. if (self._abort(params)) {
  2126. return;
  2127. }
  2128. fnBefore = function (jqXHR) {
  2129. self.lock();
  2130. var outData = self._getOutData(jqXHR);
  2131. self._raise('filebatchpreupload', [outData]);
  2132. self._setProgress(50);
  2133. params.data = outData;
  2134. params.xhr = jqXHR;
  2135. if (self._abort(params)) {
  2136. jqXHR.abort();
  2137. self._setProgressCancelled();
  2138. }
  2139. };
  2140. fnSuccess = function (data, textStatus, jqXHR) {
  2141. var outData = self._getOutData(jqXHR, data);
  2142. if ($h.isEmpty(data) || $h.isEmpty(data.error)) {
  2143. self._raise('filebatchuploadsuccess', [outData]);
  2144. self._clearFileInput();
  2145. self._initUploadSuccess(data);
  2146. self._setProgress(101);
  2147. } else {
  2148. self._showUploadError(data.error, outData, 'filebatchuploaderror');
  2149. }
  2150. };
  2151. fnComplete = function () {
  2152. self.unlock();
  2153. self._clearFileInput();
  2154. self._raise('filebatchuploadcomplete', [self.filestack, self._getExtraData()]);
  2155. };
  2156. fnError = function (jqXHR, textStatus, errorThrown) {
  2157. var outData = self._getOutData(jqXHR), op = self.ajaxOperations.uploadExtra,
  2158. errMsg = self._parseError(op, jqXHR, errorThrown);
  2159. params.data = outData;
  2160. self._showUploadError(errMsg, outData, 'filebatchuploaderror');
  2161. self._setProgress(101, self.$progress, self.msgAjaxProgressError.replace('{operation}', op));
  2162. };
  2163. self._ajaxSubmit(fnBefore, fnSuccess, fnComplete, fnError);
  2164. },
  2165. _deleteFileIndex: function ($frame) {
  2166. var self = this, ind = $frame.attr('data-fileindex');
  2167. if (ind.substring(0, 5) === 'init_') {
  2168. ind = parseInt(ind.replace('init_', ''));
  2169. self.initialPreview = $h.spliceArray(self.initialPreview, ind);
  2170. self.initialPreviewConfig = $h.spliceArray(self.initialPreviewConfig, ind);
  2171. self.initialPreviewThumbTags = $h.spliceArray(self.initialPreviewThumbTags, ind);
  2172. self.$preview.find($h.FRAMES).each(function () {
  2173. var $nFrame = $(this), nInd = $nFrame.attr('data-fileindex');
  2174. if (nInd.substring(0, 5) === 'init_') {
  2175. nInd = parseInt(nInd.replace('init_', ''));
  2176. if (nInd > ind) {
  2177. nInd--;
  2178. $nFrame.attr('data-fileindex', 'init_' + nInd);
  2179. }
  2180. }
  2181. });
  2182. if (self.uploadAsync) {
  2183. self.cacheInitialPreview = self.getPreview();
  2184. }
  2185. }
  2186. },
  2187. _initFileActions: function () {
  2188. var self = this, $preview = self.$preview;
  2189. if (!self.showPreview) {
  2190. return;
  2191. }
  2192. self._initZoomButton();
  2193. $preview.find($h.FRAMES + ' .kv-file-remove').each(function () {
  2194. var $el = $(this), $frame = $el.closest($h.FRAMES), hasError, id = $frame.attr('id'),
  2195. ind = $frame.attr('data-fileindex'), n, cap, status;
  2196. self._handler($el, 'click', function () {
  2197. status = self._raise('filepreremove', [id, ind]);
  2198. if (status === false || !self._validateMinCount()) {
  2199. return false;
  2200. }
  2201. hasError = $frame.hasClass('file-preview-error');
  2202. $h.cleanMemory($frame);
  2203. $frame.fadeOut('slow', function () {
  2204. $h.cleanZoomCache($preview.find('#zoom-' + id));
  2205. self.updateStack(ind, undefined);
  2206. self._clearObjects($frame);
  2207. $frame.remove();
  2208. if (id && hasError) {
  2209. self.$errorContainer.find('li[data-file-id="' + id + '"]').fadeOut('fast', function () {
  2210. $(this).remove();
  2211. if (!self._errorsExist()) {
  2212. self._resetErrors();
  2213. }
  2214. });
  2215. }
  2216. self._clearFileInput();
  2217. var filestack = self.getFileStack(true), chk = self.previewCache.count(),
  2218. len = filestack.length,
  2219. hasThumb = self.showPreview && $preview.find($h.FRAMES).length;
  2220. if (len === 0 && chk === 0 && !hasThumb) {
  2221. self.reset();
  2222. } else {
  2223. n = chk + len;
  2224. cap = n > 1 ? self._getMsgSelected(n) : (filestack[0] ? self._getFileNames()[0] : '');
  2225. self._setCaption(cap);
  2226. }
  2227. self._raise('fileremoved', [id, ind]);
  2228. });
  2229. });
  2230. });
  2231. self.$preview.find($h.FRAMES + ' .kv-file-upload').each(function () {
  2232. var $el = $(this);
  2233. self._handler($el, 'click', function () {
  2234. var $frame = $el.closest($h.FRAMES), ind = $frame.attr('data-fileindex');
  2235. if (!$frame.hasClass('file-preview-error')) {
  2236. self._uploadSingle(ind, self.filestack, false);
  2237. }
  2238. });
  2239. });
  2240. },
  2241. _initPreviewActions: function () {
  2242. var self = this, $preview = self.$preview, deleteExtraData = self.deleteExtraData || {},
  2243. btnRemove = $h.FRAMES + ' .kv-file-remove',
  2244. resetProgress = function () {
  2245. var hasFiles = self.isUploadable ? self.previewCache.count() : self.$element.get(0).files.length;
  2246. if ($preview.find(btnRemove).length === 0 && !hasFiles) {
  2247. self.reset();
  2248. self.initialCaption = '';
  2249. }
  2250. };
  2251. self._initZoomButton();
  2252. $preview.find(btnRemove).each(function () {
  2253. var $el = $(this), vUrl = $el.data('url') || self.deleteUrl, vKey = $el.data('key');
  2254. if ($h.isEmpty(vUrl) || vKey === undefined) {
  2255. return;
  2256. }
  2257. var $frame = $el.closest($h.FRAMES), cache = self.previewCache.data,
  2258. settings, params, index = $frame.attr('data-fileindex'), config, extraData;
  2259. index = parseInt(index.replace('init_', ''));
  2260. config = $h.isEmpty(cache.config) && $h.isEmpty(cache.config[index]) ? null : cache.config[index];
  2261. extraData = $h.isEmpty(config) || $h.isEmpty(config.extra) ? deleteExtraData : config.extra;
  2262. if (typeof extraData === "function") {
  2263. extraData = extraData();
  2264. }
  2265. params = {id: $el.attr('id'), key: vKey, extra: extraData};
  2266. settings = $.extend(true, {}, {
  2267. url: vUrl,
  2268. type: 'POST',
  2269. dataType: 'json',
  2270. data: $.extend(true, {}, {key: vKey}, extraData),
  2271. beforeSend: function (jqXHR) {
  2272. self.ajaxAborted = false;
  2273. self._raise('filepredelete', [vKey, jqXHR, extraData]);
  2274. if (self.ajaxAborted) {
  2275. jqXHR.abort();
  2276. } else {
  2277. $h.addCss($frame, 'file-uploading');
  2278. $h.addCss($el, 'disabled');
  2279. }
  2280. },
  2281. success: function (data, textStatus, jqXHR) {
  2282. var n, cap;
  2283. if ($h.isEmpty(data) || $h.isEmpty(data.error)) {
  2284. index = parseInt(($frame.attr('data-fileindex')).replace('init_', ''));
  2285. self.previewCache.unset(index);
  2286. n = self.previewCache.count();
  2287. cap = n > 0 ? self._getMsgSelected(n) : '';
  2288. self._deleteFileIndex($frame);
  2289. self._setCaption(cap);
  2290. self._raise('filedeleted', [vKey, jqXHR, extraData]);
  2291. } else {
  2292. params.jqXHR = jqXHR;
  2293. params.response = data;
  2294. self._showError(data.error, params, 'filedeleteerror');
  2295. $frame.removeClass('file-uploading');
  2296. $el.removeClass('disabled');
  2297. resetProgress();
  2298. return;
  2299. }
  2300. $frame.removeClass('file-uploading').addClass('file-deleted');
  2301. $frame.fadeOut('slow', function () {
  2302. $h.cleanZoomCache($preview.find('#zoom-' + $frame.attr('id')));
  2303. self._clearObjects($frame);
  2304. $frame.remove();
  2305. resetProgress();
  2306. if (!n && self.getFileStack().length === 0) {
  2307. self._setCaption('');
  2308. self.reset();
  2309. }
  2310. });
  2311. },
  2312. error: function (jqXHR, textStatus, errorThrown) {
  2313. var op = self.ajaxOperations.deleteThumb, errMsg = self._parseError(op, jqXHR, errorThrown);
  2314. params.jqXHR = jqXHR;
  2315. params.response = {};
  2316. self._showError(errMsg, params, 'filedeleteerror');
  2317. $frame.removeClass('file-uploading');
  2318. resetProgress();
  2319. }
  2320. }, self.ajaxDeleteSettings);
  2321. self._handler($el, 'click', function () {
  2322. if (!self._validateMinCount()) {
  2323. return false;
  2324. }
  2325. $.ajax(settings);
  2326. });
  2327. });
  2328. },
  2329. _hideFileIcon: function () {
  2330. if (this.overwriteInitial) {
  2331. this.$captionContainer.find('.kv-caption-icon').hide();
  2332. }
  2333. },
  2334. _showFileIcon: function () {
  2335. this.$captionContainer.find('.kv-caption-icon').show();
  2336. },
  2337. _getSize: function (bytes) {
  2338. var self = this, size = parseFloat(bytes), i, func = self.fileSizeGetter, sizes, out;
  2339. if (!$.isNumeric(bytes) || !$.isNumeric(size)) {
  2340. return '';
  2341. }
  2342. if (typeof func === 'function') {
  2343. out = func(size);
  2344. } else {
  2345. if (size === 0) {
  2346. out = '0.00 B';
  2347. } else {
  2348. i = Math.floor(Math.log(size) / Math.log(1024));
  2349. sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
  2350. out = (size / Math.pow(1024, i)).toFixed(2) * 1 + ' ' + sizes[i];
  2351. }
  2352. }
  2353. return self._getLayoutTemplate('size').replace('{sizeText}', out);
  2354. },
  2355. _generatePreviewTemplate: function (cat, data, fname, ftype, previewId, isError, size, frameClass, foot, ind, templ) {
  2356. var self = this, caption = self.slug(fname), prevContent, zoomContent = '',
  2357. config = self.previewSettings[cat] || self.defaults.previewSettings[cat],
  2358. w = config && config.width ? config.width : '', h = config && config.height ? config.height : '',
  2359. footer = foot || self._renderFileFooter(caption, size, ($h.isEmpty(w) ? 'auto' : w), isError),
  2360. hasIconSetting = self._getPreviewIcon(fname), typeCss = 'type-default',
  2361. forcePrevIcon = hasIconSetting && self.preferIconicPreview,
  2362. forceZoomIcon = hasIconSetting && self.preferIconicZoomPreview,
  2363. getContent = function (c, d, zoom, frameCss) {
  2364. var id = zoom ? 'zoom-' + previewId : previewId, tmplt = self._getPreviewTemplate(c),
  2365. css = (frameClass || '') + ' ' + frameCss;
  2366. if (self.frameClass) {
  2367. css = self.frameClass + ' ' + css;
  2368. }
  2369. if (zoom) {
  2370. css = css.replace(' ' + $h.SORT_CSS, '');
  2371. }
  2372. tmplt = self._parseFilePreviewIcon(tmplt, fname);
  2373. if (c === 'text') {
  2374. d = $h.htmlEncode(d);
  2375. }
  2376. if (cat === 'object' && !ftype) {
  2377. $.each(self.defaults.fileTypeSettings, function (key, func) {
  2378. if (key === 'object' || key === 'other') {
  2379. return;
  2380. }
  2381. if (func(fname, ftype)) {
  2382. typeCss = 'type-' + key;
  2383. }
  2384. });
  2385. }
  2386. return tmplt.setTokens({
  2387. 'previewId': id,
  2388. 'caption': caption,
  2389. 'frameClass': css,
  2390. 'type': ftype,
  2391. 'fileindex': ind,
  2392. 'width': w,
  2393. 'height': h,
  2394. 'typeCss': typeCss,
  2395. 'footer': footer,
  2396. 'data': d,
  2397. 'template': templ || cat
  2398. });
  2399. };
  2400. ind = ind || previewId.slice(previewId.lastIndexOf('-') + 1);
  2401. if (self.fileActionSettings.showZoom) {
  2402. zoomContent = getContent((forceZoomIcon ? 'other' : cat), data, true, 'kv-zoom-thumb');
  2403. }
  2404. zoomContent = '\n' + self._getLayoutTemplate('zoomCache').replace('{zoomContent}', zoomContent);
  2405. prevContent = getContent((forcePrevIcon ? 'other' : cat), data, false, 'kv-preview-thumb');
  2406. return prevContent + zoomContent;
  2407. },
  2408. _previewDefault: function (file, previewId, isDisabled) {
  2409. var self = this, $preview = self.$preview;
  2410. if (!self.showPreview) {
  2411. return;
  2412. }
  2413. var fname = file ? file.name : '', ftype = file ? file.type : '', content, size = file.size || 0,
  2414. caption = self.slug(fname), isError = isDisabled === true && !self.isUploadable,
  2415. data = $h.objUrl.createObjectURL(file);
  2416. self._clearDefaultPreview();
  2417. content = self._generatePreviewTemplate('other', data, fname, ftype, previewId, isError, size);
  2418. $preview.append("\n" + content);
  2419. self._setThumbAttr(previewId, caption, size);
  2420. if (isDisabled === true && self.isUploadable) {
  2421. self._setThumbStatus($('#' + previewId), 'Error');
  2422. }
  2423. },
  2424. _previewFile: function (i, file, theFile, previewId, data) {
  2425. if (!this.showPreview) {
  2426. return;
  2427. }
  2428. var self = this, cat = self._parseFileType(file), fname = file ? file.name : '', caption = self.slug(fname),
  2429. types = self.allowedPreviewTypes, mimes = self.allowedPreviewMimeTypes, $preview = self.$preview,
  2430. chkTypes = types && types.indexOf(cat) >= 0, fsize = file.size || 0, ftype = file.type,
  2431. iData = (cat === 'text' || cat === 'html' || cat === 'image') ? theFile.target.result : data, content,
  2432. chkMimes = mimes && mimes.indexOf(ftype) !== -1;
  2433. /** @namespace window.DOMPurify */
  2434. if (cat === 'html' && self.purifyHtml && window.DOMPurify) {
  2435. iData = window.DOMPurify.sanitize(iData);
  2436. }
  2437. if (chkTypes || chkMimes) {
  2438. content = self._generatePreviewTemplate(cat, iData, fname, ftype, previewId, false, fsize);
  2439. self._clearDefaultPreview();
  2440. $preview.append("\n" + content);
  2441. var $img = $preview.find('#' + previewId + ' img');
  2442. if ($img.length && self.autoOrientImage) {
  2443. $h.validateOrientation(file, function (value) {
  2444. if (value) {
  2445. var $zoomImg = $preview.find('#zoom-' + previewId + ' img'), css = 'rotate-' + value;
  2446. if (value > 4) {
  2447. css += ($img.width() > $img.height() ? ' is-portrait-gt4' : ' is-landscape-gt4');
  2448. }
  2449. $h.addCss($img, css);
  2450. $h.addCss($zoomImg, css);
  2451. self._raise('fileimageoriented', {'$img': $img, 'file': file});
  2452. }
  2453. self._validateImage(previewId, caption, ftype, fsize);
  2454. $h.adjustOrientedImage($img);
  2455. });
  2456. } else {
  2457. self._validateImage(previewId, caption, ftype, fsize);
  2458. }
  2459. } else {
  2460. self._previewDefault(file, previewId);
  2461. }
  2462. self._setThumbAttr(previewId, caption, fsize);
  2463. self._initSortable();
  2464. },
  2465. _setThumbAttr: function (id, caption, size) {
  2466. var self = this, $frame = $('#' + id);
  2467. if ($frame.length) {
  2468. size = size && size > 0 ? self._getSize(size) : '';
  2469. $frame.data({'caption': caption, 'size': size});
  2470. }
  2471. },
  2472. _setInitThumbAttr: function () {
  2473. var self = this, data = self.previewCache.data, len = self.previewCache.count(true), config,
  2474. caption, size, previewId;
  2475. if (len === 0) {
  2476. return;
  2477. }
  2478. for (var i = 0; i < len; i++) {
  2479. config = data.config[i];
  2480. previewId = self.previewInitId + '-' + 'init_' + i;
  2481. caption = $h.ifSet('caption', config, $h.ifSet('filename', config));
  2482. size = $h.ifSet('size', config);
  2483. self._setThumbAttr(previewId, caption, size);
  2484. }
  2485. },
  2486. _slugDefault: function (text) {
  2487. return $h.isEmpty(text) ? '' : String(text).replace(/[\-\[\]\/\{}:;#%=\(\)\*\+\?\\\^\$\|<>&"']/g, '_');
  2488. },
  2489. _readFiles: function (files) {
  2490. this.reader = new FileReader();
  2491. var self = this, $el = self.$element, $preview = self.$preview, reader = self.reader,
  2492. $container = self.$previewContainer, $status = self.$previewStatus, msgLoading = self.msgLoading,
  2493. msgProgress = self.msgProgress, previewInitId = self.previewInitId, numFiles = files.length,
  2494. settings = self.fileTypeSettings, ctr = self.filestack.length, readFile,
  2495. fileTypes = self.allowedFileTypes, typLen = fileTypes ? fileTypes.length : 0,
  2496. fileExt = self.allowedFileExtensions, strExt = $h.isEmpty(fileExt) ? '' : fileExt.join(', '),
  2497. maxPreviewSize = self.maxFilePreviewSize && parseFloat(self.maxFilePreviewSize),
  2498. canPreview = $preview.length && (!maxPreviewSize || isNaN(maxPreviewSize)),
  2499. throwError = function (msg, file, previewId, index) {
  2500. var p1 = $.extend(true, {}, self._getOutData({}, {}, files), {id: previewId, index: index}),
  2501. p2 = {id: previewId, index: index, file: file, files: files};
  2502. self._previewDefault(file, previewId, true);
  2503. if (self.isUploadable) {
  2504. self.addToStack(undefined);
  2505. setTimeout(function () {
  2506. readFile(index + 1);
  2507. }, 100);
  2508. }
  2509. self._initFileActions();
  2510. if (self.removeFromPreviewOnError) {
  2511. $('#' + previewId).remove();
  2512. }
  2513. return self.isUploadable ? self._showUploadError(msg, p1) : self._showError(msg, p2);
  2514. };
  2515. self.loadedImages = [];
  2516. self.totalImagesCount = 0;
  2517. $.each(files, function (key, file) {
  2518. var func = self.fileTypeSettings.image;
  2519. if (func && func(file.type)) {
  2520. self.totalImagesCount++;
  2521. }
  2522. });
  2523. readFile = function (i) {
  2524. if ($h.isEmpty($el.attr('multiple'))) {
  2525. numFiles = 1;
  2526. }
  2527. if (i >= numFiles) {
  2528. if (self.isUploadable && self.filestack.length > 0) {
  2529. self._raise('filebatchselected', [self.getFileStack()]);
  2530. } else {
  2531. self._raise('filebatchselected', [files]);
  2532. }
  2533. $container.removeClass('file-thumb-loading');
  2534. $status.html('');
  2535. return;
  2536. }
  2537. var node = ctr + i, previewId = previewInitId + "-" + node, isText, isImage, file = files[i], fSizeKB,
  2538. caption = file.name ? self.slug(file.name) : '', fileSize = (file.size || 0) / 1000, j, msg,
  2539. fileExtExpr = '', previewData = $h.objUrl.createObjectURL(file), typ, chk, typ1, typ2,
  2540. fileCount = 0, strTypes = '', func;
  2541. if (typLen > 0) {
  2542. for (j = 0; j < typLen; j++) {
  2543. typ1 = fileTypes[j];
  2544. typ2 = self.msgFileTypes[typ1] || typ1;
  2545. strTypes += j === 0 ? typ2 : ', ' + typ2;
  2546. }
  2547. }
  2548. if (caption === false) {
  2549. readFile(i + 1);
  2550. return;
  2551. }
  2552. if (caption.length === 0) {
  2553. msg = self.msgInvalidFileName.replace('{name}', $h.htmlEncode(file.name));
  2554. self.isError = throwError(msg, file, previewId, i);
  2555. return;
  2556. }
  2557. if (!$h.isEmpty(fileExt)) {
  2558. fileExtExpr = new RegExp('\\.(' + fileExt.join('|') + ')$', 'i');
  2559. }
  2560. fSizeKB = fileSize.toFixed(2);
  2561. if (self.maxFileSize > 0 && fileSize > self.maxFileSize) {
  2562. msg = self.msgSizeTooLarge.setTokens({
  2563. 'name': caption,
  2564. 'size': fSizeKB,
  2565. 'maxSize': self.maxFileSize
  2566. });
  2567. self.isError = throwError(msg, file, previewId, i);
  2568. return;
  2569. }
  2570. if (self.minFileSize !== null && fileSize <= $h.getNum(self.minFileSize)) {
  2571. msg = self.msgSizeTooSmall.setTokens({
  2572. 'name': caption,
  2573. 'size': fSizeKB,
  2574. 'minSize': self.minFileSize
  2575. });
  2576. self.isError = throwError(msg, file, previewId, i);
  2577. return;
  2578. }
  2579. if (!$h.isEmpty(fileTypes) && $h.isArray(fileTypes)) {
  2580. for (j = 0; j < fileTypes.length; j += 1) {
  2581. typ = fileTypes[j];
  2582. func = settings[typ];
  2583. fileCount += !func || (typeof func !== 'function') ? 0 : (func(file.type, file.name) ? 1 : 0);
  2584. }
  2585. if (fileCount === 0) {
  2586. msg = self.msgInvalidFileType.setTokens({'name': caption, 'types': strTypes});
  2587. self.isError = throwError(msg, file, previewId, i);
  2588. return;
  2589. }
  2590. }
  2591. if (fileCount === 0 && !$h.isEmpty(fileExt) && $h.isArray(fileExt) && !$h.isEmpty(fileExtExpr)) {
  2592. chk = $h.compare(caption, fileExtExpr);
  2593. fileCount += $h.isEmpty(chk) ? 0 : chk.length;
  2594. if (fileCount === 0) {
  2595. msg = self.msgInvalidFileExtension.setTokens({'name': caption, 'extensions': strExt});
  2596. self.isError = throwError(msg, file, previewId, i);
  2597. return;
  2598. }
  2599. }
  2600. if (!self.showPreview) {
  2601. self.addToStack(file);
  2602. setTimeout(function () {
  2603. readFile(i + 1);
  2604. }, 100);
  2605. self._raise('fileloaded', [file, previewId, i, reader]);
  2606. return;
  2607. }
  2608. if (!canPreview && fileSize > maxPreviewSize) {
  2609. self.addToStack(file);
  2610. $container.addClass('file-thumb-loading');
  2611. self._previewDefault(file, previewId);
  2612. self._initFileActions();
  2613. self._updateFileDetails(numFiles);
  2614. readFile(i + 1);
  2615. return;
  2616. }
  2617. if ($preview.length && FileReader !== undefined) {
  2618. $status.html(msgLoading.replace('{index}', i + 1).replace('{files}', numFiles));
  2619. $container.addClass('file-thumb-loading');
  2620. reader.onerror = function (evt) {
  2621. self._errorHandler(evt, caption);
  2622. };
  2623. reader.onload = function (theFile) {
  2624. self._previewFile(i, file, theFile, previewId, previewData);
  2625. self._initFileActions();
  2626. };
  2627. reader.onloadend = function () {
  2628. msg = msgProgress.setTokens({
  2629. 'index': i + 1,
  2630. 'files': numFiles,
  2631. 'percent': 50,
  2632. 'name': caption
  2633. });
  2634. setTimeout(function () {
  2635. $status.html(msg);
  2636. self._updateFileDetails(numFiles);
  2637. readFile(i + 1);
  2638. }, 100);
  2639. self._raise('fileloaded', [file, previewId, i, reader]);
  2640. };
  2641. reader.onprogress = function (data) {
  2642. if (data.lengthComputable) {
  2643. var fact = (data.loaded / data.total) * 100, progress = Math.ceil(fact);
  2644. msg = msgProgress.setTokens({
  2645. 'index': i + 1,
  2646. 'files': numFiles,
  2647. 'percent': progress,
  2648. 'name': caption
  2649. });
  2650. setTimeout(function () {
  2651. $status.html(msg);
  2652. }, 100);
  2653. }
  2654. };
  2655. isText = settings.text;
  2656. isImage = settings.image;
  2657. if (isText(file.type, caption)) {
  2658. reader.readAsText(file, self.textEncoding);
  2659. } else {
  2660. if (isImage(file.type, caption)) {
  2661. reader.readAsDataURL(file);
  2662. } else {
  2663. reader.readAsArrayBuffer(file);
  2664. }
  2665. }
  2666. } else {
  2667. self._previewDefault(file, previewId);
  2668. setTimeout(function () {
  2669. readFile(i + 1);
  2670. self._updateFileDetails(numFiles);
  2671. }, 100);
  2672. self._raise('fileloaded', [file, previewId, i, reader]);
  2673. }
  2674. self.addToStack(file);
  2675. };
  2676. readFile(0);
  2677. self._updateFileDetails(numFiles, false);
  2678. },
  2679. _updateFileDetails: function (numFiles) {
  2680. var self = this, $el = self.$element, fileStack = self.getFileStack(),
  2681. name = ($h.isIE(9) && $h.findFileName($el.val())) ||
  2682. ($el[0].files[0] && $el[0].files[0].name) || (fileStack.length && fileStack[0].name) || '',
  2683. label = self.slug(name), n = self.isUploadable ? fileStack.length : numFiles,
  2684. nFiles = self.previewCache.count() + n, log = n > 1 ? self._getMsgSelected(nFiles) : label;
  2685. if (self.isError) {
  2686. self.$previewContainer.removeClass('file-thumb-loading');
  2687. self.$previewStatus.html('');
  2688. self.$captionContainer.find('.kv-caption-icon').hide();
  2689. } else {
  2690. self._showFileIcon();
  2691. }
  2692. self._setCaption(log, self.isError);
  2693. self.$container.removeClass('file-input-new file-input-ajax-new');
  2694. if (arguments.length === 1) {
  2695. self._raise('fileselect', [numFiles, label]);
  2696. }
  2697. if (self.previewCache.count()) {
  2698. self._initPreviewActions();
  2699. }
  2700. },
  2701. _setThumbStatus: function ($thumb, status) {
  2702. var self = this;
  2703. if (!self.showPreview) {
  2704. return;
  2705. }
  2706. var icon = 'indicator' + status, msg = icon + 'Title',
  2707. css = 'file-preview-' + status.toLowerCase(),
  2708. $indicator = $thumb.find('.file-upload-indicator'),
  2709. config = self.fileActionSettings;
  2710. $thumb.removeClass('file-preview-success file-preview-error file-preview-loading');
  2711. if (status === 'Error') {
  2712. $thumb.find('.kv-file-upload').attr('disabled', true);
  2713. }
  2714. if (status === 'Success') {
  2715. $thumb.find('.file-drag-handle').remove();
  2716. $indicator.css('margin-left', 0);
  2717. }
  2718. $indicator.html(config[icon]);
  2719. $indicator.attr('title', config[msg]);
  2720. $thumb.addClass(css);
  2721. },
  2722. _setProgressCancelled: function () {
  2723. var self = this;
  2724. self._setProgress(101, self.$progress, self.msgCancelled);
  2725. },
  2726. _setProgress: function (p, $el, error) {
  2727. var self = this, pct = Math.min(p, 100), out, pctLimit = self.progressUploadThreshold,
  2728. t = p <= 100 ? self.progressTemplate : self.progressCompleteTemplate,
  2729. template = pct < 100 ? self.progressTemplate : (error ? self.progressErrorTemplate : t);
  2730. $el = $el || self.$progress;
  2731. if (!$h.isEmpty(template)) {
  2732. if (pctLimit && pct > pctLimit && p <= 100) {
  2733. out = template.setTokens({'percent': pctLimit, 'status': self.msgUploadThreshold});
  2734. } else {
  2735. out = template.setTokens({'percent': pct, 'status': (p > 100 ? self.msgUploadEnd : pct + '%')});
  2736. }
  2737. $el.html(out);
  2738. if (error) {
  2739. $el.find('[role="progressbar"]').html(error);
  2740. }
  2741. }
  2742. },
  2743. _setFileDropZoneTitle: function () {
  2744. var self = this, $zone = self.$container.find('.file-drop-zone'), title = self.dropZoneTitle, strFiles;
  2745. if (self.isClickable) {
  2746. strFiles = $h.isEmpty(self.$element.attr('multiple')) ? self.fileSingle : self.filePlural;
  2747. title += self.dropZoneClickTitle.replace('{files}', strFiles);
  2748. }
  2749. $zone.find('.' + self.dropZoneTitleClass).remove();
  2750. if (!self.isUploadable || !self.showPreview || $zone.length === 0 || self.getFileStack().length > 0 || !self.dropZoneEnabled) {
  2751. return;
  2752. }
  2753. if ($zone.find($h.FRAMES).length === 0 && $h.isEmpty(self.defaultPreviewContent)) {
  2754. $zone.prepend('<div class="' + self.dropZoneTitleClass + '">' + title + '</div>');
  2755. }
  2756. self.$container.removeClass('file-input-new');
  2757. $h.addCss(self.$container, 'file-input-ajax-new');
  2758. },
  2759. _setAsyncUploadStatus: function (previewId, pct, total) {
  2760. var self = this, sum = 0;
  2761. self._setProgress(pct, $('#' + previewId).find('.file-thumb-progress'));
  2762. self.uploadStatus[previewId] = pct;
  2763. $.each(self.uploadStatus, function (key, value) {
  2764. sum += value;
  2765. });
  2766. self._setProgress(Math.floor(sum / total));
  2767. },
  2768. _validateMinCount: function () {
  2769. var self = this, len = self.isUploadable ? self.getFileStack().length : self.$element.get(0).files.length;
  2770. if (self.validateInitialCount && self.minFileCount > 0 && self._getFileCount(len - 1) < self.minFileCount) {
  2771. self._noFilesError({});
  2772. return false;
  2773. }
  2774. return true;
  2775. },
  2776. _getFileCount: function (fileCount) {
  2777. var self = this, addCount = 0;
  2778. if (self.validateInitialCount && !self.overwriteInitial) {
  2779. addCount = self.previewCache.count();
  2780. fileCount += addCount;
  2781. }
  2782. return fileCount;
  2783. },
  2784. _getFileId: function (file) {
  2785. var self = this, custom = self.generateFileId, relativePath;
  2786. if (typeof custom === 'function') {
  2787. return custom(file, event);
  2788. }
  2789. if (!file) {
  2790. return null;
  2791. }
  2792. /** @namespace file.webkitRelativePath */
  2793. relativePath = file.webkitRelativePath || file.fileName || file.name || null;
  2794. if (!relativePath) {
  2795. return null;
  2796. }
  2797. return (file.size + '-' + relativePath.replace(/[^0-9a-zA-Z_-]/img, ''));
  2798. },
  2799. _getFileName: function (file) {
  2800. return file && file.name ? this.slug(file.name) : undefined;
  2801. },
  2802. _getFileIds: function (skipNull) {
  2803. var self = this;
  2804. return self.fileids.filter(function (n) {
  2805. return (skipNull ? n !== undefined : n !== undefined && n !== null);
  2806. });
  2807. },
  2808. _getFileNames: function (skipNull) {
  2809. var self = this;
  2810. return self.filenames.filter(function (n) {
  2811. return (skipNull ? n !== undefined : n !== undefined && n !== null);
  2812. });
  2813. },
  2814. _setPreviewError: function ($thumb, i, val) {
  2815. var self = this;
  2816. if (i !== undefined) {
  2817. self.updateStack(i, val);
  2818. }
  2819. if (self.removeFromPreviewOnError) {
  2820. $thumb.remove();
  2821. } else {
  2822. self._setThumbStatus($thumb, 'Error');
  2823. }
  2824. },
  2825. _checkDimensions: function (i, chk, $img, $thumb, fname, type, params) {
  2826. var self = this, msg, dim, tag = chk === 'Small' ? 'min' : 'max', limit = self[tag + 'Image' + type],
  2827. $imgEl, isValid;
  2828. if ($h.isEmpty(limit) || !$img.length) {
  2829. return;
  2830. }
  2831. $imgEl = $img[0];
  2832. dim = (type === 'Width') ? $imgEl.naturalWidth || $imgEl.width : $imgEl.naturalHeight || $imgEl.height;
  2833. isValid = chk === 'Small' ? dim >= limit : dim <= limit;
  2834. if (isValid) {
  2835. return;
  2836. }
  2837. msg = self['msgImage' + type + chk].setTokens({'name': fname, 'size': limit});
  2838. self._showUploadError(msg, params);
  2839. self._setPreviewError($thumb, i, null);
  2840. },
  2841. _validateImage: function (previewId, fname, ftype, fsize) {
  2842. var self = this, $preview = self.$preview, params, w1, w2, $thumb = $preview.find("#" + previewId),
  2843. i = $thumb.attr('data-fileindex'), $img = $thumb.find('img');
  2844. fname = fname || 'Untitled';
  2845. if (!$img.length) {
  2846. return;
  2847. }
  2848. self._handler($img, 'load', function () {
  2849. w1 = $thumb.width();
  2850. w2 = $preview.width();
  2851. if (w1 > w2) {
  2852. $img.css('width', '100%');
  2853. $thumb.css('width', '97%');
  2854. }
  2855. params = {ind: i, id: previewId};
  2856. self._checkDimensions(i, 'Small', $img, $thumb, fname, 'Width', params);
  2857. self._checkDimensions(i, 'Small', $img, $thumb, fname, 'Height', params);
  2858. if (!self.resizeImage) {
  2859. self._checkDimensions(i, 'Large', $img, $thumb, fname, 'Width', params);
  2860. self._checkDimensions(i, 'Large', $img, $thumb, fname, 'Height', params);
  2861. }
  2862. self._raise('fileimageloaded', [previewId]);
  2863. self.loadedImages.push({
  2864. ind: i,
  2865. img: $img,
  2866. thumb: $thumb,
  2867. pid: previewId,
  2868. typ: ftype,
  2869. siz: fsize,
  2870. validated: false
  2871. });
  2872. self._validateAllImages();
  2873. });
  2874. },
  2875. _validateAllImages: function () {
  2876. var self = this, i, counter = {val: 0}, numImgs = self.loadedImages.length, config,
  2877. fsize, minSize = self.resizeIfSizeMoreThan;
  2878. if (numImgs !== self.totalImagesCount) {
  2879. return;
  2880. }
  2881. self._raise('fileimagesloaded');
  2882. if (!self.resizeImage) {
  2883. return;
  2884. }
  2885. for (i = 0; i < self.loadedImages.length; i++) {
  2886. config = self.loadedImages[i];
  2887. if (config.validated) {
  2888. continue;
  2889. }
  2890. fsize = config.siz;
  2891. if (fsize && fsize > minSize * 1000) {
  2892. self._getResizedImage(config, counter, numImgs);
  2893. }
  2894. self.loadedImages[i].validated = true;
  2895. }
  2896. },
  2897. _getResizedImage: function (config, counter, numImgs) {
  2898. var self = this, img = $(config.img)[0], width = img.naturalWidth, height = img.naturalHeight,
  2899. ratio = 1, maxWidth = self.maxImageWidth || width, maxHeight = self.maxImageHeight || height,
  2900. isValidImage = !!(width && height), chkWidth, chkHeight, canvas = self.imageCanvas,
  2901. context = self.imageCanvasContext, type = config.typ, pid = config.pid, ind = config.ind,
  2902. $thumb = config.thumb, throwError, msg;
  2903. throwError = function (msg, params, ev) {
  2904. if (self.isUploadable) {
  2905. self._showUploadError(msg, params, ev);
  2906. } else {
  2907. self._showError(msg, params, ev);
  2908. }
  2909. self._setPreviewError($thumb, ind);
  2910. };
  2911. if (!self.filestack[ind] || !isValidImage || (width <= maxWidth && height <= maxHeight)) {
  2912. if (isValidImage && self.filestack[ind]) {
  2913. self._raise('fileimageresized', [pid, ind]);
  2914. }
  2915. counter.val++;
  2916. if (counter.val === numImgs) {
  2917. self._raise('fileimagesresized');
  2918. }
  2919. if (!isValidImage) {
  2920. throwError(self.msgImageResizeError, {id: pid, 'index': ind}, 'fileimageresizeerror');
  2921. return;
  2922. }
  2923. }
  2924. type = type || self.resizeDefaultImageType;
  2925. chkWidth = width > maxWidth;
  2926. chkHeight = height > maxHeight;
  2927. if (self.resizePreference === 'width') {
  2928. ratio = chkWidth ? maxWidth / width : (chkHeight ? maxHeight / height : 1);
  2929. } else {
  2930. ratio = chkHeight ? maxHeight / height : (chkWidth ? maxWidth / width : 1);
  2931. }
  2932. self._resetCanvas();
  2933. width *= ratio;
  2934. height *= ratio;
  2935. canvas.width = width;
  2936. canvas.height = height;
  2937. try {
  2938. context.drawImage(img, 0, 0, width, height);
  2939. canvas.toBlob(function (blob) {
  2940. self.filestack[ind] = blob;
  2941. self._raise('fileimageresized', [pid, ind]);
  2942. counter.val++;
  2943. if (counter.val === numImgs) {
  2944. self._raise('fileimagesresized', [undefined, undefined]);
  2945. }
  2946. if (!(blob instanceof Blob)) {
  2947. throwError(self.msgImageResizeError, {id: pid, 'index': ind}, 'fileimageresizeerror');
  2948. }
  2949. }, type, self.resizeQuality);
  2950. }
  2951. catch (err) {
  2952. counter.val++;
  2953. if (counter.val === numImgs) {
  2954. self._raise('fileimagesresized', [undefined, undefined]);
  2955. }
  2956. msg = self.msgImageResizeException.replace('{errors}', err.message);
  2957. throwError(msg, {id: pid, 'index': ind}, 'fileimageresizeexception');
  2958. }
  2959. },
  2960. _initBrowse: function ($container) {
  2961. var self = this;
  2962. if (self.showBrowse) {
  2963. self.$btnFile = $container.find('.btn-file');
  2964. self.$btnFile.append(self.$element);
  2965. } else {
  2966. self.$element.hide();
  2967. }
  2968. },
  2969. _initCaption: function () {
  2970. var self = this, cap = self.initialCaption || '';
  2971. if (self.overwriteInitial || $h.isEmpty(cap)) {
  2972. self.$caption.html('');
  2973. return false;
  2974. }
  2975. self._setCaption(cap);
  2976. return true;
  2977. },
  2978. _setCaption: function (content, isError) {
  2979. var self = this, title, out, n, cap, stack = self.getFileStack();
  2980. if (!self.$caption.length) {
  2981. return;
  2982. }
  2983. if (isError) {
  2984. title = $('<div>' + self.msgValidationError + '</div>').text();
  2985. n = stack.length;
  2986. if (n) {
  2987. cap = n === 1 && stack[0] ? self._getFileNames()[0] : self._getMsgSelected(n);
  2988. } else {
  2989. cap = self._getMsgSelected(self.msgNo);
  2990. }
  2991. out = '<span class="' + self.msgValidationErrorClass + '">' + self.msgValidationErrorIcon +
  2992. ($h.isEmpty(content) ? cap : content) + '</span>';
  2993. } else {
  2994. if ($h.isEmpty(content)) {
  2995. return;
  2996. }
  2997. title = $('<div>' + content + '</div>').text();
  2998. out = self._getLayoutTemplate('fileIcon') + title;
  2999. }
  3000. self.$caption.html(out);
  3001. self.$caption.attr('title', title);
  3002. self.$captionContainer.find('.file-caption-ellipsis').attr('title', title);
  3003. },
  3004. _createContainer: function () {
  3005. var self = this, $container = $(document.createElement("div"))
  3006. .attr({"class": 'file-input file-input-new'})
  3007. .html(self._renderMain());
  3008. self.$element.before($container);
  3009. self._initBrowse($container);
  3010. if (self.theme) {
  3011. $container.addClass('theme-' + self.theme);
  3012. }
  3013. return $container;
  3014. },
  3015. _refreshContainer: function () {
  3016. var self = this, $container = self.$container;
  3017. $container.before(self.$element);
  3018. $container.html(self._renderMain());
  3019. self._initBrowse($container);
  3020. },
  3021. _renderMain: function () {
  3022. var self = this,
  3023. dropCss = (self.isUploadable && self.dropZoneEnabled) ? ' file-drop-zone' : 'file-drop-disabled',
  3024. close = !self.showClose ? '' : self._getLayoutTemplate('close'),
  3025. preview = !self.showPreview ? '' : self._getLayoutTemplate('preview')
  3026. .setTokens({'class': self.previewClass, 'dropClass': dropCss}),
  3027. css = self.isDisabled ? self.captionClass + ' file-caption-disabled' : self.captionClass,
  3028. caption = self.captionTemplate.setTokens({'class': css + ' kv-fileinput-caption'});
  3029. return self.mainTemplate.setTokens({
  3030. 'class': self.mainClass + (!self.showBrowse && self.showCaption ? ' no-browse' : ''),
  3031. 'preview': preview,
  3032. 'close': close,
  3033. 'caption': caption,
  3034. 'upload': self._renderButton('upload'),
  3035. 'remove': self._renderButton('remove'),
  3036. 'cancel': self._renderButton('cancel'),
  3037. 'browse': self._renderButton('browse')
  3038. });
  3039. },
  3040. _renderButton: function (type) {
  3041. var self = this, tmplt = self._getLayoutTemplate('btnDefault'), css = self[type + 'Class'],
  3042. title = self[type + 'Title'], icon = self[type + 'Icon'], label = self[type + 'Label'],
  3043. status = self.isDisabled ? ' disabled' : '', btnType = 'button';
  3044. switch (type) {
  3045. case 'remove':
  3046. if (!self.showRemove) {
  3047. return '';
  3048. }
  3049. break;
  3050. case 'cancel':
  3051. if (!self.showCancel) {
  3052. return '';
  3053. }
  3054. css += ' hide';
  3055. break;
  3056. case 'upload':
  3057. if (!self.showUpload) {
  3058. return '';
  3059. }
  3060. if (self.isUploadable && !self.isDisabled) {
  3061. tmplt = self._getLayoutTemplate('btnLink').replace('{href}', self.uploadUrl);
  3062. } else {
  3063. btnType = 'submit';
  3064. }
  3065. break;
  3066. case 'browse':
  3067. if (!self.showBrowse) {
  3068. return '';
  3069. }
  3070. tmplt = self._getLayoutTemplate('btnBrowse');
  3071. break;
  3072. default:
  3073. return '';
  3074. }
  3075. css += type === 'browse' ? ' btn-file' : ' fileinput-' + type + ' fileinput-' + type + '-button';
  3076. if (!$h.isEmpty(label)) {
  3077. label = ' <span class="' + self.buttonLabelClass + '">' + label + '</span>';
  3078. }
  3079. return tmplt.setTokens({
  3080. 'type': btnType, 'css': css, 'title': title, 'status': status, 'icon': icon, 'label': label
  3081. });
  3082. },
  3083. _renderThumbProgress: function () {
  3084. var self = this;
  3085. return '<div class="file-thumb-progress hide">' +
  3086. self.progressTemplate.setTokens({'percent': '0', 'status': self.msgUploadBegin}) +
  3087. '</div>';
  3088. },
  3089. _renderFileFooter: function (caption, size, width, isError) {
  3090. var self = this, config = self.fileActionSettings, rem = config.showRemove, drg = config.showDrag,
  3091. upl = config.showUpload, zoom = config.showZoom, out, template = self._getLayoutTemplate('footer'),
  3092. ind = isError ? config.indicatorError : config.indicatorNew,
  3093. tInd = self._getLayoutTemplate('indicator'),
  3094. title = isError ? config.indicatorErrorTitle : config.indicatorNewTitle,
  3095. indicator = tInd.setTokens({'indicator': ind, 'indicatorTitle': title});
  3096. size = self._getSize(size);
  3097. if (self.isUploadable) {
  3098. out = template.setTokens({
  3099. 'actions': self._renderFileActions(upl, rem, zoom, drg, false, false, false),
  3100. 'caption': caption,
  3101. 'size': size,
  3102. 'width': width,
  3103. 'progress': self._renderThumbProgress(),
  3104. 'indicator': indicator
  3105. });
  3106. } else {
  3107. out = template.setTokens({
  3108. 'actions': self._renderFileActions(false, false, zoom, drg, false, false, false),
  3109. 'caption': caption,
  3110. 'size': size,
  3111. 'width': width,
  3112. 'progress': '',
  3113. 'indicator': indicator
  3114. });
  3115. }
  3116. out = $h.replaceTags(out, self.previewThumbTags);
  3117. return out;
  3118. },
  3119. _renderFileActions: function (showUpload, showDelete, showZoom, showDrag, disabled, url, key, isInit) {
  3120. if (!showUpload && !showDelete && !showZoom && !showDrag) {
  3121. return '';
  3122. }
  3123. var self = this, vUrl = url === false ? '' : ' data-url="' + url + '"',
  3124. vKey = key === false ? '' : ' data-key="' + key + '"',
  3125. btnDelete = '', btnUpload = '', btnZoom = '', btnDrag = '', css,
  3126. template = self._getLayoutTemplate('actions'), config = self.fileActionSettings,
  3127. otherButtons = self.otherActionButtons.setTokens({'dataKey': vKey}),
  3128. removeClass = disabled ? config.removeClass + ' disabled' : config.removeClass;
  3129. if (showDelete) {
  3130. btnDelete = self._getLayoutTemplate('actionDelete').setTokens({
  3131. 'removeClass': removeClass,
  3132. 'removeIcon': config.removeIcon,
  3133. 'removeTitle': config.removeTitle,
  3134. 'dataUrl': vUrl,
  3135. 'dataKey': vKey
  3136. });
  3137. }
  3138. if (showUpload) {
  3139. btnUpload = self._getLayoutTemplate('actionUpload').setTokens({
  3140. 'uploadClass': config.uploadClass,
  3141. 'uploadIcon': config.uploadIcon,
  3142. 'uploadTitle': config.uploadTitle
  3143. });
  3144. }
  3145. if (showZoom) {
  3146. btnZoom = self._getLayoutTemplate('actionZoom').setTokens({
  3147. 'zoomClass': config.zoomClass,
  3148. 'zoomIcon': config.zoomIcon,
  3149. 'zoomTitle': config.zoomTitle
  3150. });
  3151. }
  3152. if (showDrag && isInit) {
  3153. css = 'drag-handle-init ' + config.dragClass;
  3154. btnDrag = self._getLayoutTemplate('actionDrag').setTokens({
  3155. 'dragClass': css,
  3156. 'dragTitle': config.dragTitle,
  3157. 'dragIcon': config.dragIcon
  3158. });
  3159. }
  3160. return template.setTokens({
  3161. 'delete': btnDelete,
  3162. 'upload': btnUpload,
  3163. 'zoom': btnZoom,
  3164. 'drag': btnDrag,
  3165. 'other': otherButtons
  3166. });
  3167. },
  3168. _browse: function (e) {
  3169. var self = this;
  3170. self._raise('filebrowse');
  3171. if (e && e.isDefaultPrevented()) {
  3172. return;
  3173. }
  3174. if (self.isError && !self.isUploadable) {
  3175. self.clear();
  3176. }
  3177. self.$captionContainer.focus();
  3178. },
  3179. _filterDuplicate: function (file, files, fileIds) {
  3180. var self = this, fileId = self._getFileId(file);
  3181. if (fileId && fileIds && fileIds.indexOf(fileId) > -1) {
  3182. return;
  3183. }
  3184. if (!fileIds) {
  3185. fileIds = [];
  3186. }
  3187. files.push(file);
  3188. fileIds.push(fileId);
  3189. },
  3190. _change: function (e) {
  3191. var self = this, $el = self.$element;
  3192. if (!self.isUploadable && $h.isEmpty($el.val()) && self.fileInputCleared) { // IE 11 fix
  3193. self.fileInputCleared = false;
  3194. return;
  3195. }
  3196. self.fileInputCleared = false;
  3197. var tfiles = [], msg, total, isDragDrop = arguments.length > 1, isAjaxUpload = self.isUploadable, n, len,
  3198. files = isDragDrop ? e.originalEvent.dataTransfer.files : $el.get(0).files, ctr = self.filestack.length,
  3199. isSingleUpload = $h.isEmpty($el.attr('multiple')), flagSingle = (isSingleUpload && ctr > 0),
  3200. folders = 0, fileIds = self._getFileIds(), throwError = function (mesg, file, previewId, index) {
  3201. var p1 = $.extend(true, {}, self._getOutData({}, {}, files), {id: previewId, index: index}),
  3202. p2 = {id: previewId, index: index, file: file, files: files};
  3203. return self.isUploadable ? self._showUploadError(mesg, p1) : self._showError(mesg, p2);
  3204. };
  3205. self.reader = null;
  3206. self._resetUpload();
  3207. self._hideFileIcon();
  3208. if (self.isUploadable) {
  3209. self.$container.find('.file-drop-zone .' + self.dropZoneTitleClass).remove();
  3210. }
  3211. if (isDragDrop) {
  3212. $.each(files, function (i, f) {
  3213. if (f && !f.type && f.size !== undefined && f.size % 4096 === 0) {
  3214. folders++;
  3215. } else {
  3216. self._filterDuplicate(f, tfiles, fileIds);
  3217. }
  3218. });
  3219. } else {
  3220. if (e.target && e.target.files === undefined) {
  3221. files = e.target.value ? [{name: e.target.value.replace(/^.+\\/, '')}] : [];
  3222. } else {
  3223. files = e.target.files || {};
  3224. }
  3225. if (isAjaxUpload) {
  3226. $.each(files, function (i, f) {
  3227. self._filterDuplicate(f, tfiles, fileIds);
  3228. });
  3229. } else {
  3230. tfiles = files;
  3231. }
  3232. }
  3233. if ($h.isEmpty(tfiles) || tfiles.length === 0) {
  3234. if (!isAjaxUpload) {
  3235. self.clear();
  3236. }
  3237. self._showFolderError(folders);
  3238. self._raise('fileselectnone');
  3239. return;
  3240. }
  3241. self._resetErrors();
  3242. len = tfiles.length;
  3243. total = self._getFileCount(self.isUploadable ? (self.getFileStack().length + len) : len);
  3244. if (self.maxFileCount > 0 && total > self.maxFileCount) {
  3245. if (!self.autoReplace || len > self.maxFileCount) {
  3246. n = (self.autoReplace && len > self.maxFileCount) ? len : total;
  3247. msg = self.msgFilesTooMany.replace('{m}', self.maxFileCount).replace('{n}', n);
  3248. self.isError = throwError(msg, null, null, null);
  3249. self.$captionContainer.find('.kv-caption-icon').hide();
  3250. self._setCaption('', true);
  3251. self.$container.removeClass('file-input-new file-input-ajax-new');
  3252. return;
  3253. }
  3254. if (total > self.maxFileCount) {
  3255. self._resetPreviewThumbs(isAjaxUpload);
  3256. }
  3257. } else {
  3258. if (!isAjaxUpload || flagSingle) {
  3259. self._resetPreviewThumbs(false);
  3260. if (flagSingle) {
  3261. self.clearStack();
  3262. }
  3263. } else {
  3264. if (isAjaxUpload && ctr === 0 && (!self.previewCache.count() || self.overwriteInitial)) {
  3265. self._resetPreviewThumbs(true);
  3266. }
  3267. }
  3268. }
  3269. if (self.isPreviewable) {
  3270. self._readFiles(tfiles);
  3271. } else {
  3272. self._updateFileDetails(1);
  3273. }
  3274. self._showFolderError(folders);
  3275. },
  3276. _abort: function (params) {
  3277. var self = this, data;
  3278. if (self.ajaxAborted && typeof self.ajaxAborted === "object" && self.ajaxAborted.message !== undefined) {
  3279. data = $.extend(true, {}, self._getOutData(), params);
  3280. data.abortData = self.ajaxAborted.data || {};
  3281. data.abortMessage = self.ajaxAborted.message;
  3282. self._setProgress(101, self.$progress, self.msgCancelled);
  3283. self._showUploadError(self.ajaxAborted.message, data, 'filecustomerror');
  3284. self.cancel();
  3285. return true;
  3286. }
  3287. return false;
  3288. },
  3289. _resetFileStack: function () {
  3290. var self = this, i = 0, newstack = [], newnames = [], newids = [];
  3291. self._getThumbs().each(function () {
  3292. var $thumb = $(this), ind = $thumb.attr('data-fileindex'), file = self.filestack[ind],
  3293. pid = $thumb.attr('id'), newId;
  3294. if (ind === '-1' || ind === -1) {
  3295. return;
  3296. }
  3297. if (file !== undefined) {
  3298. newstack[i] = file;
  3299. newnames[i] = self._getFileName(file);
  3300. newids[i] = self._getFileId(file);
  3301. $thumb.attr({'id': self.previewInitId + '-' + i, 'data-fileindex': i});
  3302. i++;
  3303. } else {
  3304. newId = 'uploaded-' + $h.uniqId();
  3305. $thumb.attr({'id': newId, 'data-fileindex': '-1'});
  3306. self.$preview.find('#zoom-' + pid).attr('id', 'zoom-' + newId);
  3307. }
  3308. });
  3309. self.filestack = newstack;
  3310. self.filenames = newnames;
  3311. self.fileids = newids;
  3312. },
  3313. _isFileSelectionValid: function(cnt) {
  3314. var self = this;
  3315. cnt = cnt || 0;
  3316. if (self.required && !self.getFilesCount()) {
  3317. self.$errorContainer.html('');
  3318. self._showUploadError(self.msgFileRequired);
  3319. return false;
  3320. }
  3321. if (self.minFileCount > 0 && self._getFileCount(cnt) < self.minFileCount) {
  3322. self._noFilesError({});
  3323. return false;
  3324. }
  3325. return true;
  3326. },
  3327. clearStack: function () {
  3328. var self = this;
  3329. self.filestack = [];
  3330. self.filenames = [];
  3331. self.fileids = [];
  3332. return self.$element;
  3333. },
  3334. updateStack: function (i, file) {
  3335. var self = this;
  3336. self.filestack[i] = file;
  3337. self.filenames[i] = self._getFileName(file);
  3338. self.fileids[i] = file && self._getFileId(file) || null;
  3339. return self.$element;
  3340. },
  3341. addToStack: function (file) {
  3342. var self = this;
  3343. self.filestack.push(file);
  3344. self.filenames.push(self._getFileName(file));
  3345. self.fileids.push(self._getFileId(file));
  3346. return self.$element;
  3347. },
  3348. getFileStack: function (skipNull) {
  3349. var self = this;
  3350. return self.filestack.filter(function (n) {
  3351. return (skipNull ? n !== undefined : n !== undefined && n !== null);
  3352. });
  3353. },
  3354. getFilesCount: function () {
  3355. var self = this, len = self.isUploadable ? self.getFileStack().length : self.$element.get(0).files.length;
  3356. return self._getFileCount(len);
  3357. },
  3358. lock: function () {
  3359. var self = this;
  3360. self._resetErrors();
  3361. self.disable();
  3362. if (self.showRemove) {
  3363. $h.addCss(self.$container.find('.fileinput-remove'), 'hide');
  3364. }
  3365. if (self.showCancel) {
  3366. self.$container.find('.fileinput-cancel').removeClass('hide');
  3367. }
  3368. self._raise('filelock', [self.filestack, self._getExtraData()]);
  3369. return self.$element;
  3370. },
  3371. unlock: function (reset) {
  3372. var self = this;
  3373. if (reset === undefined) {
  3374. reset = true;
  3375. }
  3376. self.enable();
  3377. if (self.showCancel) {
  3378. $h.addCss(self.$container.find('.fileinput-cancel'), 'hide');
  3379. }
  3380. if (self.showRemove) {
  3381. self.$container.find('.fileinput-remove').removeClass('hide');
  3382. }
  3383. if (reset) {
  3384. self._resetFileStack();
  3385. }
  3386. self._raise('fileunlock', [self.filestack, self._getExtraData()]);
  3387. return self.$element;
  3388. },
  3389. cancel: function () {
  3390. var self = this, xhr = self.ajaxRequests, len = xhr.length, i;
  3391. if (len > 0) {
  3392. for (i = 0; i < len; i += 1) {
  3393. self.cancelling = true;
  3394. xhr[i].abort();
  3395. }
  3396. }
  3397. self._setProgressCancelled();
  3398. self._getThumbs().each(function () {
  3399. var $thumb = $(this), ind = $thumb.attr('data-fileindex');
  3400. $thumb.removeClass('file-uploading');
  3401. if (self.filestack[ind] !== undefined) {
  3402. $thumb.find('.kv-file-upload').removeClass('disabled').removeAttr('disabled');
  3403. $thumb.find('.kv-file-remove').removeClass('disabled').removeAttr('disabled');
  3404. }
  3405. self.unlock();
  3406. });
  3407. return self.$element;
  3408. },
  3409. clear: function () {
  3410. var self = this, cap;
  3411. if (!self._raise('fileclear')) {
  3412. return;
  3413. }
  3414. self.$btnUpload.removeAttr('disabled');
  3415. self._getThumbs().find('video,audio,img').each(function () {
  3416. $h.cleanMemory($(this));
  3417. });
  3418. self._resetUpload();
  3419. self.clearStack();
  3420. self._clearFileInput();
  3421. self._resetErrors(true);
  3422. if (self._hasInitialPreview()) {
  3423. self._showFileIcon();
  3424. self._resetPreview();
  3425. self._initPreviewActions();
  3426. self.$container.removeClass('file-input-new');
  3427. } else {
  3428. self._getThumbs().each(function () {
  3429. self._clearObjects($(this));
  3430. });
  3431. if (self.isUploadable) {
  3432. self.previewCache.data = {};
  3433. }
  3434. self.$preview.html('');
  3435. cap = (!self.overwriteInitial && self.initialCaption.length > 0) ? self.initialCaption : '';
  3436. self.$caption.html(cap);
  3437. self.$caption.attr('title', '');
  3438. $h.addCss(self.$container, 'file-input-new');
  3439. self._validateDefaultPreview();
  3440. }
  3441. if (self.$container.find($h.FRAMES).length === 0) {
  3442. if (!self._initCaption()) {
  3443. self.$captionContainer.find('.kv-caption-icon').hide();
  3444. }
  3445. }
  3446. self._hideFileIcon();
  3447. self._raise('filecleared');
  3448. self.$captionContainer.focus();
  3449. self._setFileDropZoneTitle();
  3450. return self.$element;
  3451. },
  3452. reset: function () {
  3453. var self = this;
  3454. if (!self._raise('filereset')) {
  3455. return;
  3456. }
  3457. self._resetPreview();
  3458. self.$container.find('.fileinput-filename').text('');
  3459. $h.addCss(self.$container, 'file-input-new');
  3460. if (self.$preview.find($h.FRAMES).length || self.isUploadable && self.dropZoneEnabled) {
  3461. self.$container.removeClass('file-input-new');
  3462. }
  3463. self._setFileDropZoneTitle();
  3464. self.clearStack();
  3465. self.formdata = {};
  3466. return self.$element;
  3467. },
  3468. disable: function () {
  3469. var self = this;
  3470. self.isDisabled = true;
  3471. self._raise('filedisabled');
  3472. self.$element.attr('disabled', 'disabled');
  3473. self.$container.find(".kv-fileinput-caption").addClass("file-caption-disabled");
  3474. self.$container.find(".btn-file, .fileinput-remove, .fileinput-upload, .file-preview-frame button")
  3475. .attr("disabled", true);
  3476. self._initDragDrop();
  3477. return self.$element;
  3478. },
  3479. enable: function () {
  3480. var self = this;
  3481. self.isDisabled = false;
  3482. self._raise('fileenabled');
  3483. self.$element.removeAttr('disabled');
  3484. self.$container.find(".kv-fileinput-caption").removeClass("file-caption-disabled");
  3485. self.$container.find(".btn-file, .fileinput-remove, .fileinput-upload, .file-preview-frame button")
  3486. .removeAttr("disabled");
  3487. self._initDragDrop();
  3488. return self.$element;
  3489. },
  3490. upload: function () {
  3491. var self = this, totLen = self.getFileStack().length, i, outData, len,
  3492. hasExtraData = !$.isEmptyObject(self._getExtraData());
  3493. if (!self.isUploadable || self.isDisabled || !self._isFileSelectionValid(totLen)) {
  3494. return;
  3495. }
  3496. self._resetUpload();
  3497. if (totLen === 0 && !hasExtraData) {
  3498. self._showUploadError(self.msgUploadEmpty);
  3499. return;
  3500. }
  3501. self.$progress.removeClass('hide');
  3502. self.uploadCount = 0;
  3503. self.uploadStatus = {};
  3504. self.uploadLog = [];
  3505. self.lock();
  3506. self._setProgress(2);
  3507. if (totLen === 0 && hasExtraData) {
  3508. self._uploadExtraOnly();
  3509. return;
  3510. }
  3511. len = self.filestack.length;
  3512. self.hasInitData = false;
  3513. if (self.uploadAsync) {
  3514. outData = self._getOutData();
  3515. self._raise('filebatchpreupload', [outData]);
  3516. self.fileBatchCompleted = false;
  3517. self.uploadCache = {content: [], config: [], tags: [], append: true};
  3518. self.uploadAsyncCount = self.getFileStack().length;
  3519. for (i = 0; i < len; i++) {
  3520. self.uploadCache.content[i] = null;
  3521. self.uploadCache.config[i] = null;
  3522. self.uploadCache.tags[i] = null;
  3523. }
  3524. self.$preview.find('.file-preview-initial').removeClass($h.SORT_CSS);
  3525. self._initSortable();
  3526. self.cacheInitialPreview = self.getPreview();
  3527. for (i = 0; i < len; i++) {
  3528. if (self.filestack[i] !== undefined) {
  3529. self._uploadSingle(i, self.filestack, true);
  3530. }
  3531. }
  3532. return;
  3533. }
  3534. self._uploadBatch();
  3535. return self.$element;
  3536. },
  3537. destroy: function () {
  3538. var self = this, $form = self.$form, $cont = self.$container, $el = self.$element, ns = self.namespace;
  3539. $(document).off(ns);
  3540. $(window).off(ns);
  3541. if ($form && $form.length) {
  3542. $form.off(ns);
  3543. }
  3544. if (self.isUploadable) {
  3545. self._clearFileInput();
  3546. }
  3547. self._cleanup();
  3548. self._initPreviewCache();
  3549. $el.insertBefore($cont).off(ns).removeData();
  3550. $cont.off().remove();
  3551. return $el;
  3552. },
  3553. refresh: function (options) {
  3554. var self = this, $el = self.$element;
  3555. options = options ? $.extend(true, {}, self.options, options) : self.options;
  3556. self.destroy();
  3557. $el.fileinput(options);
  3558. self = $el.data('fileinput');
  3559. if (self.isUploadable) {
  3560. self._clearFileInput();
  3561. }
  3562. if ($el.val()) {
  3563. $el.trigger('change.fileinput');
  3564. }
  3565. return $el;
  3566. },
  3567. zoom: function (frameId) {
  3568. var self = this, $frame = $('#' + frameId), $modal = self.$modal;
  3569. if (!$frame.length) {
  3570. self._log('Cannot zoom to detailed preview! Invalid frame with id: "' + frameId + '".');
  3571. return;
  3572. }
  3573. $h.initModal($modal);
  3574. $modal.html(self._getModalContent());
  3575. self._setZoomContent($frame);
  3576. $modal.modal('show');
  3577. self._initZoomButtons();
  3578. },
  3579. getPreview: function () {
  3580. var self = this;
  3581. return {
  3582. content: self.initialPreview,
  3583. config: self.initialPreviewConfig,
  3584. tags: self.initialPreviewThumbTags
  3585. };
  3586. }
  3587. };
  3588. $.fn.fileinput = function (option) {
  3589. if (!$h.hasFileAPISupport() && !$h.isIE(9)) {
  3590. return;
  3591. }
  3592. var args = Array.apply(null, arguments), retvals = [];
  3593. args.shift();
  3594. this.each(function () {
  3595. var self = $(this), data = self.data('fileinput'), options = typeof option === 'object' && option,
  3596. theme = options.theme || self.data('theme'), l = {}, t = {},
  3597. lang = options.language || self.data('language') || $.fn.fileinput.defaults.language || 'en', opt;
  3598. if (!data) {
  3599. if (theme) {
  3600. t = $.fn.fileinputThemes[theme] || {};
  3601. }
  3602. if (lang !== 'en' && !$h.isEmpty($.fn.fileinputLocales[lang])) {
  3603. l = $.fn.fileinputLocales[lang] || {};
  3604. }
  3605. opt = $.extend(true, {}, $.fn.fileinput.defaults, t, $.fn.fileinputLocales.en, l, options, self.data());
  3606. data = new FileInput(this, opt);
  3607. self.data('fileinput', data);
  3608. }
  3609. if (typeof option === 'string') {
  3610. retvals.push(data[option].apply(data, args));
  3611. }
  3612. });
  3613. switch (retvals.length) {
  3614. case 0:
  3615. return this;
  3616. case 1:
  3617. return retvals[0];
  3618. default:
  3619. return retvals;
  3620. }
  3621. };
  3622. $.fn.fileinput.defaults = {
  3623. language: 'en',
  3624. showCaption: true,
  3625. showBrowse: true,
  3626. showPreview: true,
  3627. showRemove: true,
  3628. showUpload: true,
  3629. showCancel: true,
  3630. showClose: true,
  3631. showUploadedThumbs: true,
  3632. browseOnZoneClick: false,
  3633. autoReplace: false,
  3634. autoOrientImage: true, // for JPEG images based on EXIF orientation tag
  3635. required: false,
  3636. generateFileId: null,
  3637. previewClass: '',
  3638. captionClass: '',
  3639. frameClass: 'krajee-default',
  3640. mainClass: 'file-caption-main',
  3641. mainTemplate: null,
  3642. purifyHtml: true,
  3643. fileSizeGetter: null,
  3644. initialCaption: '',
  3645. initialPreview: [],
  3646. initialPreviewDelimiter: '*$$*',
  3647. initialPreviewAsData: false,
  3648. initialPreviewFileType: 'image',
  3649. initialPreviewConfig: [],
  3650. initialPreviewThumbTags: [],
  3651. previewThumbTags: {},
  3652. initialPreviewShowDelete: true,
  3653. removeFromPreviewOnError: false,
  3654. deleteUrl: '',
  3655. deleteExtraData: {},
  3656. overwriteInitial: true,
  3657. previewZoomButtonIcons: {
  3658. prev: '<i class="glyphicon glyphicon-triangle-left"></i>',
  3659. next: '<i class="glyphicon glyphicon-triangle-right"></i>',
  3660. toggleheader: '<i class="glyphicon glyphicon-resize-vertical"></i>',
  3661. fullscreen: '<i class="glyphicon glyphicon-fullscreen"></i>',
  3662. borderless: '<i class="glyphicon glyphicon-resize-full"></i>',
  3663. close: '<i class="glyphicon glyphicon-remove"></i>'
  3664. },
  3665. previewZoomButtonClasses: {
  3666. prev: 'btn btn-navigate',
  3667. next: 'btn btn-navigate',
  3668. toggleheader: 'btn btn-default btn-header-toggle',
  3669. fullscreen: 'btn btn-default',
  3670. borderless: 'btn btn-default',
  3671. close: 'btn btn-default'
  3672. },
  3673. preferIconicPreview: false,
  3674. preferIconicZoomPreview: false,
  3675. allowedPreviewTypes: undefined,
  3676. allowedPreviewMimeTypes: null,
  3677. allowedFileTypes: null,
  3678. allowedFileExtensions: null,
  3679. defaultPreviewContent: null,
  3680. customLayoutTags: {},
  3681. customPreviewTags: {},
  3682. previewFileIcon: '<i class="glyphicon glyphicon-file"></i>',
  3683. previewFileIconClass: 'file-other-icon',
  3684. previewFileIconSettings: {},
  3685. previewFileExtSettings: {},
  3686. buttonLabelClass: 'hidden-xs',
  3687. browseIcon: '<i class="glyphicon glyphicon-folder-open"></i>&nbsp;',
  3688. browseClass: 'btn btn-primary',
  3689. removeIcon: '<i class="glyphicon glyphicon-trash"></i>',
  3690. removeClass: 'btn btn-default',
  3691. cancelIcon: '<i class="glyphicon glyphicon-ban-circle"></i>',
  3692. cancelClass: 'btn btn-default',
  3693. uploadIcon: '<i class="glyphicon glyphicon-upload"></i>',
  3694. uploadClass: 'btn btn-default',
  3695. uploadUrl: null,
  3696. uploadAsync: true,
  3697. uploadExtraData: {},
  3698. zoomModalHeight: 480,
  3699. minImageWidth: null,
  3700. minImageHeight: null,
  3701. maxImageWidth: null,
  3702. maxImageHeight: null,
  3703. resizeImage: false,
  3704. resizePreference: 'width',
  3705. resizeQuality: 0.92,
  3706. resizeDefaultImageType: 'image/jpeg',
  3707. resizeIfSizeMoreThan: 0, // in KB
  3708. minFileSize: 0,
  3709. maxFileSize: 0,
  3710. maxFilePreviewSize: 25600, // 25 MB
  3711. minFileCount: 0,
  3712. maxFileCount: 0,
  3713. validateInitialCount: false,
  3714. msgValidationErrorClass: 'text-danger',
  3715. msgValidationErrorIcon: '<i class="glyphicon glyphicon-exclamation-sign"></i> ',
  3716. msgErrorClass: 'file-error-message',
  3717. progressThumbClass: "progress-bar progress-bar-success progress-bar-striped active",
  3718. progressClass: "progress-bar progress-bar-success progress-bar-striped active",
  3719. progressCompleteClass: "progress-bar progress-bar-success",
  3720. progressErrorClass: "progress-bar progress-bar-danger",
  3721. progressUploadThreshold: 99,
  3722. previewFileType: 'image',
  3723. elCaptionContainer: null,
  3724. elCaptionText: null,
  3725. elPreviewContainer: null,
  3726. elPreviewImage: null,
  3727. elPreviewStatus: null,
  3728. elErrorContainer: null,
  3729. errorCloseButton: '<span class="close kv-error-close">&times;</span>',
  3730. slugCallback: null,
  3731. dropZoneEnabled: true,
  3732. dropZoneTitleClass: 'file-drop-zone-title',
  3733. fileActionSettings: {},
  3734. otherActionButtons: '',
  3735. textEncoding: 'UTF-8',
  3736. ajaxSettings: {},
  3737. ajaxDeleteSettings: {},
  3738. showAjaxErrorDetails: true
  3739. };
  3740. $.fn.fileinputLocales.en = {
  3741. fileSingle: 'file',
  3742. filePlural: 'files',
  3743. browseLabel: 'Browse &hellip;',
  3744. removeLabel: 'Remove',
  3745. removeTitle: 'Clear selected files',
  3746. cancelLabel: 'Cancel',
  3747. cancelTitle: 'Abort ongoing upload',
  3748. uploadLabel: 'Upload',
  3749. uploadTitle: 'Upload selected files',
  3750. msgNo: 'No',
  3751. msgNoFilesSelected: 'No files selected',
  3752. msgCancelled: 'Cancelled',
  3753. msgZoomModalHeading: 'Detailed Preview',
  3754. msgFileRequired: 'You must select a file to upload.',
  3755. msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',
  3756. msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>.',
  3757. msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload.',
  3758. msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>.',
  3759. msgFileNotFound: 'File "{name}" not found!',
  3760. msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
  3761. msgFileNotReadable: 'File "{name}" is not readable.',
  3762. msgFilePreviewAborted: 'File preview aborted for "{name}".',
  3763. msgFilePreviewError: 'An error occurred while reading the file "{name}".',
  3764. msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
  3765. msgInvalidFileType: 'Invalid type for file "{name}". Only "{types}" files are supported.',
  3766. msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
  3767. msgFileTypes: {
  3768. 'image': 'image',
  3769. 'html': 'HTML',
  3770. 'text': 'text',
  3771. 'video': 'video',
  3772. 'audio': 'audio',
  3773. 'flash': 'flash',
  3774. 'pdf': 'PDF',
  3775. 'object': 'object'
  3776. },
  3777. msgUploadAborted: 'The file upload was aborted',
  3778. msgUploadThreshold: 'Processing...',
  3779. msgUploadBegin: 'Initializing...',
  3780. msgUploadEnd: 'Done',
  3781. msgUploadEmpty: 'No valid data available for upload.',
  3782. msgValidationError: 'Validation Error',
  3783. msgLoading: 'Loading file {index} of {files} &hellip;',
  3784. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  3785. msgSelected: '{n} {files} selected',
  3786. msgFoldersNotAllowed: 'Drag & drop files only! {n} folder(s) dropped were skipped.',
  3787. msgImageWidthSmall: 'Width of image file "{name}" must be at least {size} px.',
  3788. msgImageHeightSmall: 'Height of image file "{name}" must be at least {size} px.',
  3789. msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
  3790. msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
  3791. msgImageResizeError: 'Could not get the image dimensions to resize.',
  3792. msgImageResizeException: 'Error while resizing the image.<pre>{errors}</pre>',
  3793. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  3794. msgAjaxProgressError: '{operation} failed',
  3795. ajaxOperations: {
  3796. deleteThumb: 'file delete',
  3797. uploadThumb: 'file upload',
  3798. uploadBatch: 'batch file upload',
  3799. uploadExtra: 'form data upload'
  3800. },
  3801. dropZoneTitle: 'Drag & drop files here &hellip;',
  3802. dropZoneClickTitle: '<br>(or click to select {files})',
  3803. previewZoomButtonTitles: {
  3804. prev: 'View previous file',
  3805. next: 'View next file',
  3806. toggleheader: 'Toggle header',
  3807. fullscreen: 'Toggle full screen',
  3808. borderless: 'Toggle borderless mode',
  3809. close: 'Close detailed preview'
  3810. }
  3811. };
  3812. $.fn.fileinput.Constructor = FileInput;
  3813. /**
  3814. * Convert automatically file inputs with class 'file' into a bootstrap fileinput control.
  3815. */
  3816. $(document).ready(function () {
  3817. var $input = $('input.file[type=file]');
  3818. if ($input.length) {
  3819. $input.fileinput();
  3820. }
  3821. });
  3822. }));