attachment.js 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. /**
  2. * User: Jinqn
  3. * Date: 14-04-08
  4. * Time: 下午16:34
  5. * 上传图片对话框逻辑代码,包括tab: 远程图片/上传图片/在线图片/搜索图片
  6. */
  7. (function () {
  8. var uploadFile,
  9. onlineFile;
  10. window.onload = function () {
  11. initTabs();
  12. initButtons();
  13. };
  14. /* 初始化tab标签 */
  15. function initTabs() {
  16. var tabs = $G('tabhead').children;
  17. for (var i = 0; i < tabs.length; i++) {
  18. domUtils.on(tabs[i], "click", function (e) {
  19. var target = e.target || e.srcElement;
  20. setTabFocus(target.getAttribute('data-content-id'));
  21. });
  22. }
  23. setTabFocus('upload');
  24. }
  25. /* 初始化tabbody */
  26. function setTabFocus(id) {
  27. if(!id) return;
  28. var i, bodyId, tabs = $G('tabhead').children;
  29. for (i = 0; i < tabs.length; i++) {
  30. bodyId = tabs[i].getAttribute('data-content-id')
  31. if (bodyId == id) {
  32. domUtils.addClass(tabs[i], 'focus');
  33. domUtils.addClass($G(bodyId), 'focus');
  34. } else {
  35. domUtils.removeClasses(tabs[i], 'focus');
  36. domUtils.removeClasses($G(bodyId), 'focus');
  37. }
  38. }
  39. switch (id) {
  40. case 'upload':
  41. uploadFile = uploadFile || new UploadFile('queueList');
  42. break;
  43. case 'online':
  44. onlineFile = onlineFile || new OnlineFile('fileList');
  45. break;
  46. }
  47. }
  48. /* 初始化onok事件 */
  49. function initButtons() {
  50. dialog.onok = function () {
  51. var list = [], id, tabs = $G('tabhead').children;
  52. for (var i = 0; i < tabs.length; i++) {
  53. if (domUtils.hasClass(tabs[i], 'focus')) {
  54. id = tabs[i].getAttribute('data-content-id');
  55. break;
  56. }
  57. }
  58. switch (id) {
  59. case 'upload':
  60. list = uploadFile.getInsertList();
  61. var count = uploadFile.getQueueCount();
  62. if (count) {
  63. $('.info', '#queueList').html('<span style="color:red;">' + '还有2个未上传文件'.replace(/[\d]/, count) + '</span>');
  64. return false;
  65. }
  66. break;
  67. case 'online':
  68. list = onlineFile.getInsertList();
  69. break;
  70. }
  71. editor.execCommand('insertfile', list);
  72. };
  73. }
  74. /* 上传附件 */
  75. function UploadFile(target) {
  76. this.$wrap = target.constructor == String ? $('#' + target) : $(target);
  77. this.init();
  78. }
  79. UploadFile.prototype = {
  80. init: function () {
  81. this.fileList = [];
  82. this.initContainer();
  83. this.initUploader();
  84. },
  85. initContainer: function () {
  86. this.$queue = this.$wrap.find('.filelist');
  87. },
  88. /* 初始化容器 */
  89. initUploader: function () {
  90. var _this = this,
  91. $ = jQuery, // just in case. Make sure it's not an other libaray.
  92. $wrap = _this.$wrap,
  93. // 图片容器
  94. $queue = $wrap.find('.filelist'),
  95. // 状态栏,包括进度和控制按钮
  96. $statusBar = $wrap.find('.statusBar'),
  97. // 文件总体选择信息。
  98. $info = $statusBar.find('.info'),
  99. // 上传按钮
  100. $upload = $wrap.find('.uploadBtn'),
  101. // 上传按钮
  102. $filePickerBtn = $wrap.find('.filePickerBtn'),
  103. // 上传按钮
  104. $filePickerBlock = $wrap.find('.filePickerBlock'),
  105. // 没选择文件之前的内容。
  106. $placeHolder = $wrap.find('.placeholder'),
  107. // 总体进度条
  108. $progress = $statusBar.find('.progress').hide(),
  109. // 添加的文件数量
  110. fileCount = 0,
  111. // 添加的文件总大小
  112. fileSize = 0,
  113. // 优化retina, 在retina下这个值是2
  114. ratio = window.devicePixelRatio || 1,
  115. // 缩略图大小
  116. thumbnailWidth = 113 * ratio,
  117. thumbnailHeight = 113 * ratio,
  118. // 可能有pedding, ready, uploading, confirm, done.
  119. state = '',
  120. // 所有文件的进度信息,key为file id
  121. percentages = {},
  122. supportTransition = (function () {
  123. var s = document.createElement('p').style,
  124. r = 'transition' in s ||
  125. 'WebkitTransition' in s ||
  126. 'MozTransition' in s ||
  127. 'msTransition' in s ||
  128. 'OTransition' in s;
  129. s = null;
  130. return r;
  131. })(),
  132. // WebUploader实例
  133. uploader,
  134. actionUrl = editor.getActionUrl(editor.getOpt('fileActionName')),
  135. fileMaxSize = editor.getOpt('fileMaxSize'),
  136. acceptExtensions = (editor.getOpt('fileAllowFiles') || []).join('').replace(/\./g, ',').replace(/^[,]/, '');;
  137. if (!WebUploader.Uploader.support()) {
  138. $('#filePickerReady').after($('<div>').html(lang.errorNotSupport)).hide();
  139. return;
  140. } else if (!editor.getOpt('fileActionName')) {
  141. $('#filePickerReady').after($('<div>').html(lang.errorLoadConfig)).hide();
  142. return;
  143. }
  144. uploader = _this.uploader = WebUploader.create({
  145. pick: {
  146. id: '#filePickerReady',
  147. label: lang.uploadSelectFile
  148. },
  149. dnd: '#dndArea',
  150. disableGlobalDnd: true,
  151. paste :document.body,
  152. swf: '../../third-party/webuploader/Uploader.swf',
  153. server: actionUrl,
  154. fileVal: editor.getOpt('fileFieldName'),
  155. duplicate: true,
  156. fileSingleSizeLimit: fileMaxSize,
  157. compress: false,
  158. chunked: true,//开启分片
  159. chunkSize: 512 * 1024,// 单位B
  160. // 禁掉全局的拖拽功能。这样不会出现图片拖进页面的时候,把图片打开。
  161. disableGlobalDnd: true
  162. });
  163. uploader.addButton({
  164. id: '#filePickerBlock'
  165. });
  166. uploader.addButton({
  167. id: '#filePickerBtn',
  168. label: lang.uploadAddFile
  169. });
  170. setState('pedding');
  171. // 当有文件添加进来时执行,负责view的创建
  172. function addFile(file) {
  173. var $li = $('<li id="' + file.id + '">' +
  174. '<p class="title">' + file.name + '</p>' +
  175. '<p class="imgWrap"></p>' +
  176. '<p class="progress"><span></span></p>' +
  177. '</li>'),
  178. $btns = $('<div class="file-panel">' +
  179. '<span class="cancel">' + lang.uploadDelete + '</span>' +
  180. '<span class="rotateRight">' + lang.uploadTurnRight + '</span>' +
  181. '<span class="rotateLeft">' + lang.uploadTurnLeft + '</span></div>').appendTo($li),
  182. $prgress = $li.find('p.progress span'),
  183. $wrap = $li.find('p.imgWrap'),
  184. $info = $('<p class="error"></p>').hide().appendTo($li),
  185. showError = function (code) {
  186. switch (code) {
  187. case 'exceed_size':
  188. text = lang.errorExceedSize;
  189. break;
  190. case 'interrupt':
  191. text = lang.errorInterrupt;
  192. break;
  193. case 'http':
  194. text = lang.errorHttp;
  195. break;
  196. case 'not_allow_type':
  197. text = lang.errorFileType;
  198. break;
  199. default:
  200. text = lang.errorUploadRetry;
  201. break;
  202. }
  203. $info.text(text).show();
  204. };
  205. if (file.getStatus() === 'invalid') {
  206. showError(file.statusText);
  207. } else {
  208. $wrap.text(lang.uploadPreview);
  209. if ('|png|jpg|jpeg|bmp|gif|'.indexOf('|'+file.ext.toLowerCase()+'|') == -1) {
  210. $wrap.empty().addClass('notimage').append('<i class="file-preview file-type-' + file.ext.toLowerCase() + '"></i>' +
  211. '<span class="file-title" title="' + file.name + '">' + file.name + '</span>');
  212. } else {
  213. if (browser.ie && browser.version <= 7) {
  214. $wrap.text(lang.uploadNoPreview);
  215. } else {
  216. uploader.makeThumb(file, function (error, src) {
  217. if (error || !src) {
  218. $wrap.text(lang.uploadNoPreview);
  219. } else {
  220. var $img = $('<img src="' + src + '">');
  221. $wrap.empty().append($img);
  222. $img.on('error', function () {
  223. $wrap.text(lang.uploadNoPreview);
  224. });
  225. }
  226. }, thumbnailWidth, thumbnailHeight);
  227. }
  228. }
  229. percentages[ file.id ] = [ file.size, 0 ];
  230. file.rotation = 0;
  231. /* 检查文件格式 */
  232. if (!file.ext || acceptExtensions.indexOf(file.ext.toLowerCase()) == -1) {
  233. showError('not_allow_type');
  234. uploader.removeFile(file);
  235. }
  236. }
  237. file.on('statuschange', function (cur, prev) {
  238. if (prev === 'progress') {
  239. $prgress.hide().width(0);
  240. } else if (prev === 'queued') {
  241. $li.off('mouseenter mouseleave');
  242. $btns.remove();
  243. }
  244. // 成功
  245. if (cur === 'error' || cur === 'invalid') {
  246. showError(file.statusText);
  247. percentages[ file.id ][ 1 ] = 1;
  248. } else if (cur === 'interrupt') {
  249. showError('interrupt');
  250. } else if (cur === 'queued') {
  251. percentages[ file.id ][ 1 ] = 0;
  252. } else if (cur === 'progress') {
  253. $info.hide();
  254. $prgress.css('display', 'block');
  255. } else if (cur === 'complete') {
  256. }
  257. $li.removeClass('state-' + prev).addClass('state-' + cur);
  258. });
  259. $li.on('mouseenter', function () {
  260. $btns.stop().animate({height: 30});
  261. });
  262. $li.on('mouseleave', function () {
  263. $btns.stop().animate({height: 0});
  264. });
  265. $btns.on('click', 'span', function () {
  266. var index = $(this).index(),
  267. deg;
  268. switch (index) {
  269. case 0:
  270. uploader.removeFile(file);
  271. return;
  272. case 1:
  273. file.rotation += 90;
  274. break;
  275. case 2:
  276. file.rotation -= 90;
  277. break;
  278. }
  279. if (supportTransition) {
  280. deg = 'rotate(' + file.rotation + 'deg)';
  281. $wrap.css({
  282. '-webkit-transform': deg,
  283. '-mos-transform': deg,
  284. '-o-transform': deg,
  285. 'transform': deg
  286. });
  287. } else {
  288. $wrap.css('filter', 'progid:DXImageTransform.Microsoft.BasicImage(rotation=' + (~~((file.rotation / 90) % 4 + 4) % 4) + ')');
  289. }
  290. });
  291. $li.insertBefore($filePickerBlock);
  292. }
  293. // 负责view的销毁
  294. function removeFile(file) {
  295. var $li = $('#' + file.id);
  296. delete percentages[ file.id ];
  297. updateTotalProgress();
  298. $li.off().find('.file-panel').off().end().remove();
  299. }
  300. function updateTotalProgress() {
  301. var loaded = 0,
  302. total = 0,
  303. spans = $progress.children(),
  304. percent;
  305. $.each(percentages, function (k, v) {
  306. total += v[ 0 ];
  307. loaded += v[ 0 ] * v[ 1 ];
  308. });
  309. percent = total ? loaded / total : 0;
  310. spans.eq(0).text(Math.round(percent * 100) + '%');
  311. spans.eq(1).css('width', Math.round(percent * 100) + '%');
  312. updateStatus();
  313. }
  314. function setState(val, files) {
  315. if (val != state) {
  316. var stats = uploader.getStats();
  317. $upload.removeClass('state-' + state);
  318. $upload.addClass('state-' + val);
  319. switch (val) {
  320. /* 未选择文件 */
  321. case 'pedding':
  322. $queue.addClass('element-invisible');
  323. $statusBar.addClass('element-invisible');
  324. $placeHolder.removeClass('element-invisible');
  325. $progress.hide(); $info.hide();
  326. uploader.refresh();
  327. break;
  328. /* 可以开始上传 */
  329. case 'ready':
  330. $placeHolder.addClass('element-invisible');
  331. $queue.removeClass('element-invisible');
  332. $statusBar.removeClass('element-invisible');
  333. $progress.hide(); $info.show();
  334. $upload.text(lang.uploadStart);
  335. uploader.refresh();
  336. break;
  337. /* 上传中 */
  338. case 'uploading':
  339. $progress.show(); $info.hide();
  340. $upload.text(lang.uploadPause);
  341. break;
  342. /* 暂停上传 */
  343. case 'paused':
  344. $progress.show(); $info.hide();
  345. $upload.text(lang.uploadContinue);
  346. break;
  347. case 'confirm':
  348. $progress.show(); $info.hide();
  349. $upload.text(lang.uploadStart);
  350. stats = uploader.getStats();
  351. if (stats.successNum && !stats.uploadFailNum) {
  352. setState('finish');
  353. return;
  354. }
  355. break;
  356. case 'finish':
  357. $progress.hide(); $info.show();
  358. if (stats.uploadFailNum) {
  359. $upload.text(lang.uploadRetry);
  360. } else {
  361. $upload.text(lang.uploadStart);
  362. }
  363. break;
  364. }
  365. state = val;
  366. updateStatus();
  367. }
  368. if (!_this.getQueueCount()) {
  369. $upload.addClass('disabled')
  370. } else {
  371. $upload.removeClass('disabled')
  372. }
  373. }
  374. function updateStatus() {
  375. var text = '', stats;
  376. if (state === 'ready') {
  377. text = lang.updateStatusReady.replace('_', fileCount).replace('_KB', WebUploader.formatSize(fileSize));
  378. } else if (state === 'confirm') {
  379. stats = uploader.getStats();
  380. if (stats.uploadFailNum) {
  381. text = lang.updateStatusConfirm.replace('_', stats.successNum).replace('_', stats.successNum);
  382. }
  383. } else {
  384. stats = uploader.getStats();
  385. text = lang.updateStatusFinish.replace('_', fileCount).
  386. replace('_KB', WebUploader.formatSize(fileSize)).
  387. replace('_', stats.successNum);
  388. if (stats.uploadFailNum) {
  389. text += lang.updateStatusError.replace('_', stats.uploadFailNum);
  390. }
  391. }
  392. $info.html(text);
  393. }
  394. uploader.on('fileQueued', function (file) {
  395. fileCount++;
  396. fileSize += file.size;
  397. if (fileCount === 1) {
  398. $placeHolder.addClass('element-invisible');
  399. $statusBar.show();
  400. }
  401. addFile(file);
  402. });
  403. uploader.on('fileDequeued', function (file) {
  404. fileCount--;
  405. fileSize -= file.size;
  406. removeFile(file);
  407. updateTotalProgress();
  408. });
  409. uploader.on('filesQueued', function (file) {
  410. if (!uploader.isInProgress() && (state == 'pedding' || state == 'finish' || state == 'confirm' || state == 'ready')) {
  411. setState('ready');
  412. }
  413. updateTotalProgress();
  414. });
  415. uploader.on('all', function (type, files) {
  416. switch (type) {
  417. case 'uploadFinished':
  418. setState('confirm', files);
  419. break;
  420. case 'startUpload':
  421. /* 添加额外的GET参数 */
  422. var params = utils.serializeParam(editor.queryCommandValue('serverparam')) || '',
  423. url = utils.formatUrl(actionUrl + (actionUrl.indexOf('?') == -1 ? '?':'&') + 'encode=utf-8&' + params);
  424. uploader.option('server', url);
  425. setState('uploading', files);
  426. break;
  427. case 'stopUpload':
  428. setState('paused', files);
  429. break;
  430. }
  431. });
  432. uploader.on('uploadBeforeSend', function (file, data, header) {
  433. //这里可以通过data对象添加POST参数
  434. header['X_Requested_With'] = 'XMLHttpRequest';
  435. });
  436. uploader.on('uploadProgress', function (file, percentage) {
  437. var $li = $('#' + file.id),
  438. $percent = $li.find('.progress span');
  439. $percent.css('width', percentage * 100 + '%');
  440. percentages[ file.id ][ 1 ] = percentage;
  441. updateTotalProgress();
  442. });
  443. uploader.on('uploadSuccess', function (file, ret) {
  444. var $file = $('#' + file.id);
  445. try {
  446. var responseText = (ret._raw || ret),
  447. json = utils.str2json(responseText);
  448. if (json.state == 'SUCCESS') {
  449. _this.fileList.push(json);
  450. $file.append('<span class="success"></span>');
  451. } else {
  452. $file.find('.error').text(json.state).show();
  453. }
  454. } catch (e) {
  455. $file.find('.error').text(lang.errorServerUpload).show();
  456. }
  457. });
  458. uploader.on('uploadError', function (file, code) {
  459. });
  460. uploader.on('error', function (code, file) {
  461. if (code == 'Q_TYPE_DENIED' || code == 'F_EXCEED_SIZE') {
  462. addFile(file);
  463. }
  464. });
  465. uploader.on('uploadComplete', function (file, ret) {
  466. });
  467. $upload.on('click', function () {
  468. if ($(this).hasClass('disabled')) {
  469. return false;
  470. }
  471. if (state === 'ready') {
  472. uploader.upload();
  473. } else if (state === 'paused') {
  474. uploader.upload();
  475. } else if (state === 'uploading') {
  476. uploader.stop();
  477. }
  478. });
  479. $upload.addClass('state-' + state);
  480. updateTotalProgress();
  481. },
  482. getQueueCount: function () {
  483. var file, i, status, readyFile = 0, files = this.uploader.getFiles();
  484. for (i = 0; file = files[i++]; ) {
  485. status = file.getStatus();
  486. if (status == 'queued' || status == 'uploading' || status == 'progress') readyFile++;
  487. }
  488. return readyFile;
  489. },
  490. getInsertList: function () {
  491. var i, link, data, list = [],
  492. prefix = editor.getOpt('fileUrlPrefix');
  493. for (i = 0; i < this.fileList.length; i++) {
  494. data = this.fileList[i];
  495. link = data.url;
  496. list.push({
  497. title: data.original || link.substr(link.lastIndexOf('/') + 1),
  498. url: prefix + link
  499. });
  500. }
  501. return list;
  502. }
  503. };
  504. /* 在线附件 */
  505. function OnlineFile(target) {
  506. this.container = utils.isString(target) ? document.getElementById(target) : target;
  507. this.init();
  508. }
  509. OnlineFile.prototype = {
  510. init: function () {
  511. this.initContainer();
  512. this.initEvents();
  513. this.initData();
  514. },
  515. /* 初始化容器 */
  516. initContainer: function () {
  517. this.container.innerHTML = '';
  518. this.list = document.createElement('ul');
  519. this.clearFloat = document.createElement('li');
  520. domUtils.addClass(this.list, 'list');
  521. domUtils.addClass(this.clearFloat, 'clearFloat');
  522. this.list.appendChild(this.clearFloat);
  523. this.container.appendChild(this.list);
  524. },
  525. /* 初始化滚动事件,滚动到地步自动拉取数据 */
  526. initEvents: function () {
  527. var _this = this;
  528. /* 滚动拉取图片 */
  529. domUtils.on($G('fileList'), 'scroll', function(e){
  530. var panel = this;
  531. if (panel.scrollHeight - (panel.offsetHeight + panel.scrollTop) < 10) {
  532. _this.getFileData();
  533. }
  534. });
  535. /* 选中图片 */
  536. domUtils.on(this.list, 'click', function (e) {
  537. var target = e.target || e.srcElement,
  538. li = target.parentNode;
  539. if (li.tagName.toLowerCase() == 'li') {
  540. if (domUtils.hasClass(li, 'selected')) {
  541. domUtils.removeClasses(li, 'selected');
  542. } else {
  543. domUtils.addClass(li, 'selected');
  544. }
  545. }
  546. });
  547. },
  548. /* 初始化第一次的数据 */
  549. initData: function () {
  550. /* 拉取数据需要使用的值 */
  551. this.state = 0;
  552. this.listSize = editor.getOpt('fileManagerListSize');
  553. this.listIndex = 0;
  554. this.listEnd = false;
  555. /* 第一次拉取数据 */
  556. this.getFileData();
  557. },
  558. /* 向后台拉取图片列表数据 */
  559. getFileData: function () {
  560. var _this = this;
  561. if(!_this.listEnd && !this.isLoadingData) {
  562. this.isLoadingData = true;
  563. ajax.request(editor.getActionUrl(editor.getOpt('fileManagerActionName')), {
  564. timeout: 100000,
  565. data: utils.extend({
  566. start: this.listIndex,
  567. size: this.listSize
  568. }, editor.queryCommandValue('serverparam')),
  569. method: 'get',
  570. onsuccess: function (r) {
  571. try {
  572. var json = eval('(' + r.responseText + ')');
  573. if (json.state == 'SUCCESS') {
  574. _this.pushData(json.list);
  575. _this.listIndex = parseInt(json.start) + parseInt(json.list.length);
  576. if(_this.listIndex >= json.total) {
  577. _this.listEnd = true;
  578. }
  579. _this.isLoadingData = false;
  580. }
  581. } catch (e) {
  582. if(r.responseText.indexOf('ue_separate_ue') != -1) {
  583. var list = r.responseText.split(r.responseText);
  584. _this.pushData(list);
  585. _this.listIndex = parseInt(list.length);
  586. _this.listEnd = true;
  587. _this.isLoadingData = false;
  588. }
  589. }
  590. },
  591. onerror: function () {
  592. _this.isLoadingData = false;
  593. }
  594. });
  595. }
  596. },
  597. /* 添加图片到列表界面上 */
  598. pushData: function (list) {
  599. var i, item, img, filetype, preview, icon, _this = this,
  600. urlPrefix = editor.getOpt('fileManagerUrlPrefix');
  601. for (i = 0; i < list.length; i++) {
  602. if(list[i] && list[i].url) {
  603. item = document.createElement('li');
  604. icon = document.createElement('span');
  605. filetype = list[i].url.substr(list[i].url.lastIndexOf('.') + 1);
  606. if ( "png|jpg|jpeg|gif|bmp".indexOf(filetype) != -1 ) {
  607. preview = document.createElement('img');
  608. domUtils.on(preview, 'load', (function(image){
  609. return function(){
  610. _this.scale(image, image.parentNode.offsetWidth, image.parentNode.offsetHeight);
  611. };
  612. })(preview));
  613. preview.width = 113;
  614. preview.setAttribute('src', urlPrefix + list[i].url + (list[i].url.indexOf('?') == -1 ? '?noCache=':'&noCache=') + (+new Date()).toString(36) );
  615. } else {
  616. var ic = document.createElement('i'),
  617. textSpan = document.createElement('span');
  618. textSpan.innerHTML = list[i].url.substr(list[i].url.lastIndexOf('/') + 1);
  619. preview = document.createElement('div');
  620. preview.appendChild(ic);
  621. preview.appendChild(textSpan);
  622. domUtils.addClass(preview, 'file-wrapper');
  623. domUtils.addClass(textSpan, 'file-title');
  624. domUtils.addClass(ic, 'file-type-' + filetype);
  625. domUtils.addClass(ic, 'file-preview');
  626. }
  627. domUtils.addClass(icon, 'icon');
  628. item.setAttribute('data-url', urlPrefix + list[i].url);
  629. if (list[i].original) {
  630. item.setAttribute('data-title', list[i].original);
  631. }
  632. item.appendChild(preview);
  633. item.appendChild(icon);
  634. this.list.insertBefore(item, this.clearFloat);
  635. }
  636. }
  637. },
  638. /* 改变图片大小 */
  639. scale: function (img, w, h, type) {
  640. var ow = img.width,
  641. oh = img.height;
  642. if (type == 'justify') {
  643. if (ow >= oh) {
  644. img.width = w;
  645. img.height = h * oh / ow;
  646. img.style.marginLeft = '-' + parseInt((img.width - w) / 2) + 'px';
  647. } else {
  648. img.width = w * ow / oh;
  649. img.height = h;
  650. img.style.marginTop = '-' + parseInt((img.height - h) / 2) + 'px';
  651. }
  652. } else {
  653. if (ow >= oh) {
  654. img.width = w * ow / oh;
  655. img.height = h;
  656. img.style.marginLeft = '-' + parseInt((img.width - w) / 2) + 'px';
  657. } else {
  658. img.width = w;
  659. img.height = h * oh / ow;
  660. img.style.marginTop = '-' + parseInt((img.height - h) / 2) + 'px';
  661. }
  662. }
  663. },
  664. getInsertList: function () {
  665. var i, lis = this.list.children, list = [];
  666. for (i = 0; i < lis.length; i++) {
  667. if (domUtils.hasClass(lis[i], 'selected')) {
  668. var url = lis[i].getAttribute('data-url');
  669. var title = lis[i].getAttribute('data-title') || url.substr(url.lastIndexOf('/') + 1);
  670. list.push({
  671. title: title,
  672. url: url
  673. });
  674. }
  675. }
  676. return list;
  677. }
  678. };
  679. })();