/************************************************************************ * This file is part of EspoCRM. * * EspoCRM - Open Source CRM application. * Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko * Website: http://www.espocrm.com * * EspoCRM is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * EspoCRM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with EspoCRM. If not, see http://www.gnu.org/licenses/. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU General Public License version 3. * * In accordance with Section 7(b) of the GNU General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ Espo.define('views/fields/attachment-multiple', 'views/fields/base', function (Dep) { return Dep.extend({ type: 'attachmentMultiple', listTemplate: 'fields/attachments-multiple/detail', detailTemplate: 'fields/attachments-multiple/detail', editTemplate: 'fields/attachments-multiple/edit', nameHashName: null, idsName: null, nameHash: null, foreignScope: null, showPreviews: true, previewTypeList: [ 'image/jpeg', 'image/png', 'image/gif', ], events: { 'click a.remove-attachment': function (e) { var $div = $(e.currentTarget).parent(); var id = $div.attr('data-id'); if (id) { this.deleteAttachment(id); } $div.parent().remove(); }, 'change input.file': function (e) { var $file = $(e.currentTarget); var files = e.currentTarget.files; this.uploadFiles(files); $file.replaceWith($file.clone(true)); }, 'click a.action[data-action="insertFromSource"]': function (e) { var name = $(e.currentTarget).data('name'); this.insertFromSource(name); }, 'click a[data-action="showImagePreview"]': function (e) { e.preventDefault(); var id = $(e.currentTarget).data('id'); var attachmentIdList = this.model.get(this.idsName) || []; var typeHash = this.model.get(this.typeHashName) || {}; var imageIdListRight = []; var imageIdListLeft = []; imageIdListLeft.push(id); var met = false; attachmentIdList.forEach(function (cId) { if (cId === id) { met = true; return; } if (!this.isTypeIsImage(typeHash[cId])) { return; } if (met) { imageIdListLeft.push(cId); } else { imageIdListRight.push(cId); } }, this); var imageIdList = imageIdListLeft.concat(imageIdListRight); var imageList = []; imageIdList.forEach(function (cId) { imageList.push({ id: cId, name: this.nameHash[cId] }); }, this); this.createView('preview', 'views/modals/image-preview', { id: id, model: this.model, name: this.nameHash[id], imageList: imageList }, function (view) { view.render(); }); }, }, data: function () { var ids = this.model.get(this.idsName); var data = _.extend({ idValues: this.model.get(this.idsName), idValuesString: ids ? ids.join(',') : '', nameHash: this.model.get(this.nameHashName), foreignScope: this.foreignScope }, Dep.prototype.data.call(this)); if (this.mode == 'edit') { data.fileSystem = ~this.sourceList.indexOf('FileSystem'); data.sourceList = this.sourceList; } return data; }, setup: function () { this.nameHashName = this.name + 'Names'; this.typeHashName = this.name + 'Types'; this.idsName = this.name + 'Ids'; this.foreignScope = 'Attachment'; var self = this; this.nameHash = _.clone(this.model.get(this.nameHashName)) || {}; if ('showPreviews' in this.params) { this.showPreviews = this.params.showPreviews; } var sourceDefs = this.getMetadata().get(['clientDefs', 'Attachment', 'sourceDefs']) || {}; this.sourceList = Espo.Utils.clone(this.params.sourceList || []).filter(function (item) { if (!(item in sourceDefs)) return true; var defs = sourceDefs[item]; if (defs.configCheck) { var configCheck = defs.configCheck; if (configCheck) { var arr = configCheck.split('.'); if (this.getConfig().getByPath(arr)) { return true; } } } }, this); this.listenTo(this.model, 'change:' + this.nameHashName, function () { this.nameHash = _.clone(this.model.get(this.nameHashName)) || {}; }.bind(this)); if (!this.model.get(this.idsName)) { this.clearIds(); } }, empty: function () { this.clearIds(); this.$attachments.empty(); }, deleteAttachment: function (id) { this.removeId(id); if (this.model.isNew()) { this.getModelFactory().create('Attachment', function (attachment) { attachment.id = id; attachment.destroy(); }); } }, getImageUrl: function (id, size) { var url = this.getBasePath() + '?entryPoint=image&id=' + id; if (size) { url += '&size=' + size; } if (this.getUser().get('portalId')) { url += '&portalId=' + this.getUser().get('portalId'); } return url; }, getDownloadUrl: function (id) { var url = this.getBasePath() + '?entryPoint=download&id=' + id; if (this.getUser().get('portalId')) { url += '&portalId=' + this.getUser().get('portalId'); } return url; }, removeId: function (id) { var arr = _.clone(this.model.get(this.idsName)); var i = arr.indexOf(id); arr.splice(i, 1); this.model.set(this.idsName, arr); var nameHash = _.clone(this.model.get(this.nameHashName) || {}); delete nameHash[id]; this.model.set(this.nameHashName, nameHash); var typeHash = _.clone(this.model.get(this.typeHashName) || {}); delete typeHash[id]; this.model.set(this.typeHashName, typeHash); }, clearIds: function () { this.model.set(this.idsName, []); this.model.set(this.nameHashName, {}); this.model.set(this.typeHashName, {}) }, pushAttachment: function (attachment, link) { var arr = _.clone(this.model.get(this.idsName)); arr.push(attachment.id); this.model.set(this.idsName, arr); var typeHash = _.clone(this.model.get(this.typeHashName) || {}); typeHash[attachment.id] = attachment.get('type'); this.model.set(this.typeHashName, typeHash); var nameHash = _.clone(this.model.get(this.nameHashName) || {}); nameHash[attachment.id] = attachment.get('name'); this.model.set(this.nameHashName, nameHash); }, getEditPreview: function (name, type, id) { name = Handlebars.Utils.escapeExpression(name); var preview = name; switch (type) { case 'image/png': case 'image/jpeg': case 'image/gif': preview = ''; } return preview; }, addAttachmentBox: function (name, type, id, link) { var $attachments = this.$attachments; var removeLink = ''; var preview = name; if (this.showPreviews && id) { preview = this.getEditPreview(name, type, id); } if (link && preview === name) { preview = '' + preview + ''; } var $att = $('
').css('display', 'inline-block') .css('width', '100%') .css('max-width', '300px') .addClass('gray-box') .append(removeLink) .append($('' + preview + '').css('width', 'cacl(100% - 30px)')); var $container = $('
').append($att); $attachments.append($container); if (!id) { var $loading = $('' + this.translate('Uploading...') + ''); $container.append($loading); $att.on('ready', function () { $loading.html(this.translate('Ready')); }.bind(this)); } else { $att.attr('data-id', id); } return $att; }, uploadFiles: function (files) { var uploadedCount = 0; var totalCount = 0; this.getModelFactory().create('Attachment', function (model) { var canceledList = []; var fileList = []; for (var i = 0; i < files.length; i++) { fileList.push(files[i]); } fileList.forEach(function (file) { var $att = this.addAttachmentBox(file.name, file.type); $att.find('.remove-attachment').on('click.uploading', function () { canceledList.push(attachment.cid); totalCount--; }); var attachment = model.clone(); var fileReader = new FileReader(); fileReader.onload = function (e) { $.ajax({ type: 'POST', url: 'Attachment/action/upload', data: e.target.result, contentType: 'multipart/encrypted', timeout: 0, }).done(function (data) { attachment.id = data.attachmentId; attachment.set('name', file.name); attachment.set('type', file.type || 'text/plain'); attachment.set('role', 'Attachment'); attachment.set('size', file.size); attachment.set('parentType', this.model.name); attachment.once('sync', function () { if (canceledList.indexOf(attachment.cid) === -1) { $att.trigger('ready'); this.pushAttachment(attachment); $att.attr('data-id', attachment.id); uploadedCount++; if (uploadedCount == totalCount) { afterAttachmentsUploaded.call(this); } } }, this); attachment.save(); }.bind(this)); }.bind(this); fileReader.readAsDataURL(file); }, this); }.bind(this)); }, afterAttachmentsUploaded: function () { }, afterRender: function () { if (this.mode == 'edit') { this.$attachments = this.$el.find('div.attachments'); var ids = this.model.get(this.idsName) || []; var hameHash = this.model.get(this.nameHashName); var typeHash = this.model.get(this.typeHashName) || {}; ids.forEach(function (id) { if (hameHash) { var name = hameHash[id]; var type = typeHash[id] || null; this.addAttachmentBox(name, type, id); } }, this); this.$el.off('drop'); this.$el.off('dragover'); this.$el.off('dragleave'); this.$el.on('drop', function (e) { e.preventDefault(); e.stopPropagation(); var e = e.originalEvent; if (e.dataTransfer && e.dataTransfer.files && e.dataTransfer.files.length) { this.uploadFiles(e.dataTransfer.files); } }.bind(this)); this.$el.get(0).addEventListener('dragover', function (e) { e.preventDefault(); }.bind(this)); this.$el.get(0).addEventListener('dragleave', function (e) { e.preventDefault(); }.bind(this)); } }, isTypeIsImage: function (type) { switch (type) { case 'image/png': case 'image/jpeg': case 'image/gif': return true; } return false }, getDetailPreview: function (name, type, id) { name = Handlebars.Utils.escapeExpression(name); var preview = name; if (this.isTypeIsImage(type)) { preview = ''; } return preview; }, getValueForDisplay: function () { if (this.mode == 'detail' || this.mode == 'list') { var nameHash = this.nameHash; var typeHash = this.model.get(this.typeHashName) || {}; var previews = []; var names = []; for (var id in nameHash) { var type = typeHash[id] || false; var name = nameHash[id]; if (this.showPreviews && ~this.previewTypeList.indexOf(type)) { previews.push('
' + this.getDetailPreview(name, type, id) + '
'); continue; } var line = ''; names.push(line); } var string = previews.join('') + names.join(''); return string; } }, insertFromSource: function (source) { var viewName = this.getMetadata().get(['clientDefs', 'Attachment', 'sourceDefs', source, 'insertModalView']) || this.getMetadata().get(['clientDefs', source, 'modalViews', 'select']) || 'views/modals/select-records'; if (viewName) { this.notify('Loading...'); var filters = null; if (('getSelectFilters' + source) in this) { filters = this['getSelectFilters' + source](); if (this.model.get('parentId') && this.model.get('parentType') === 'Account') { if (this.getMetadata().get(['entityDefs', source, 'fields', 'account', 'type']) === 'link') { filters = { account: { type: 'equals', field: 'accountId', value: this.model.get('parentId'), valueName: this.model.get('parentName') } }; } } } var boolFilterList = this.getMetadata().get(['clientDefs', 'Attachment', 'sourceDefs', source, 'boolFilterList']); if (('getSelectBoolFilterList' + source) in this) { boolFilterList = this['getSelectBoolFilterList' + source](); } var primaryFilterName = this.getMetadata().get(['clientDefs', 'Attachment', 'sourceDefs', source, 'primaryFilter']); if (('getSelectPrimaryFilterName' + source) in this) { primaryFilterName = this['getSelectPrimaryFilterName' + source](); } this.createView('insertFromSource', viewName, { scope: source, createButton: false, filters: filters, boolFilterList: boolFilterList, primaryFilterName: primaryFilterName, multiple: true }, function (view) { view.render(); this.notify(false); this.listenToOnce(view, 'select', function (modelList) { if (Object.prototype.toString.call(modelList) !== '[object Array]') { modelList = [modelList]; } modelList.forEach(function (model) { if (model.name === 'Attachment') { this.pushAttachment(model); } else { this.ajaxPostRequest(source + '/action/getAttachmentList', { id: model.id }).done(function (attachmentList) { attachmentList.forEach(function (item) { this.getModelFactory().create('Attachment', function (attachment) { attachment.set(item); this.pushAttachment(attachment, true); }, this); }, this); }.bind(this)); } }, this); }); }, this); return; } }, validateRequired: function () { if (this.isRequired()) { if (this.model.get(this.idsName).length == 0) { var msg = this.translate('fieldIsRequired', 'messages').replace('{field}', this.translate(this.name, 'fields', this.model.name)); this.showValidationMessage(msg); return true; } } }, fetch: function () { return {}; }, }); });