[ADD] Drag & Drop Single or Multiple file(s) for Attachment(s) (Form View)
This commit is contained in:
parent
07d7f19efa
commit
dbdbad7ab1
@ -18,6 +18,7 @@ var FormController = BasicController.extend({
|
||||
open_one2many_record: '_onOpenOne2ManyRecord',
|
||||
open_record: '_onOpenRecord',
|
||||
toggle_column_order: '_onToggleColumnOrder',
|
||||
update_sidebar_attachments: '_updateSidebarAttachments',
|
||||
}),
|
||||
/**
|
||||
* @override
|
||||
@ -351,6 +352,12 @@ var FormController = BasicController.extend({
|
||||
this.sidebar.do_toggle(this.mode === 'readonly');
|
||||
}
|
||||
},
|
||||
_updateSidebarAttachments: function (attachments) {
|
||||
if (this.sidebar) {
|
||||
this.sidebar.items.files = attachments.data.files;
|
||||
this.sidebar._redraw();
|
||||
}
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Handlers
|
||||
|
@ -5,6 +5,8 @@ var BasicRenderer = require('web.BasicRenderer');
|
||||
var config = require('web.config');
|
||||
var core = require('web.core');
|
||||
var dom = require('web.dom');
|
||||
var framework = require('web.framework');
|
||||
var field_utils = require('web.field_utils');
|
||||
|
||||
var _t = core._t;
|
||||
var qweb = core.qweb;
|
||||
@ -14,6 +16,10 @@ var FormRenderer = BasicRenderer.extend({
|
||||
events: _.extend({}, BasicRenderer.prototype.events, {
|
||||
'click .o_notification_box .oe_field_translate': '_onTranslate',
|
||||
'click .oe_title, .o_inner_group': '_onClick',
|
||||
'change .o_input_file': '_onChangeInputFile',
|
||||
'dragover .o_form_sheet_bg': '_onDragEnterForm',
|
||||
'dragleave .o_input_file': '_onDragLeaveForm',
|
||||
'drop .o_input_file': '_onDropFile',
|
||||
}),
|
||||
/**
|
||||
* @override
|
||||
@ -21,6 +27,10 @@ var FormRenderer = BasicRenderer.extend({
|
||||
init: function (parent, state, params) {
|
||||
this._super.apply(this, arguments);
|
||||
this.idsForLabels = {};
|
||||
if (this.activeActions && this.activeActions.edit) {
|
||||
this.fileuploadId = _.uniqueId('oe_fileupload');
|
||||
$(window).on(this.fileuploadId, this._onFileUploaded.bind(this));
|
||||
}
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
@ -838,7 +848,102 @@ var FormRenderer = BasicRenderer.extend({
|
||||
widget.renderWithLabel($label);
|
||||
}
|
||||
});
|
||||
this.$el.find('.o_notebook ul.nav-tabs').tabCollapse();
|
||||
this.$el.find('.o_notebook ul.nav-tabs').tabCollapse();
|
||||
// for Drag and Drop Attachment(s)
|
||||
if (this.activeActions.edit) {
|
||||
this.$attach_form = $(qweb.render('DragAndDropAttachment', {widget: this}));
|
||||
this.$el.find('.o_form_sheet_bg').prepend(this.$attach_form);
|
||||
this.$el.find('.o_form_sheet_bg .o_input_file').addClass('hide');
|
||||
}
|
||||
},
|
||||
_onChangeInputFile: function (event) {
|
||||
if (!this.activeActions.edit) return;
|
||||
var $event = $(event.target);
|
||||
if ($event.val() !== '') {
|
||||
var $binaryForm = this.$el.find('.o_form_sheet_bg form.o_form_binary_form');
|
||||
$binaryForm.submit();
|
||||
framework.blockUI();
|
||||
}
|
||||
},
|
||||
_onDragEnterForm: function (e) {
|
||||
if (!this.activeActions.edit) return;
|
||||
var $input = this.$el.find('.o_form_sheet_bg .o_input_file');
|
||||
$input.removeClass('hide').addClass('f_attachment_input');
|
||||
$input.parent().parent().addClass('f_attachment')
|
||||
},
|
||||
_onDragLeaveForm: function (e) {
|
||||
if (!this.activeActions.edit) return;
|
||||
var $input = this.$el.find('.o_form_sheet_bg .o_input_file');
|
||||
$input.addClass('hide').removeClass('f_attachment_input');
|
||||
$input.parent().parent().removeClass('f_attachment')
|
||||
},
|
||||
_onDropFile: function (event) {
|
||||
if (!this.activeActions.edit) return;
|
||||
var $event = $(event.target);
|
||||
if ($event.val() !== '') {
|
||||
var $binaryForm = this.$el.find('.o_form_sheet_bg form.o_form_binary_form');
|
||||
$binaryForm.submit();
|
||||
framework.blockUI();
|
||||
}
|
||||
},
|
||||
_onFileUploaded: function () {
|
||||
var self = this;
|
||||
var attachments = Array.prototype.slice.call(arguments, 1);
|
||||
var uploadErrors = _.filter(attachments, function (attachment) {
|
||||
return attachment.error;
|
||||
});
|
||||
if (uploadErrors.length) {
|
||||
this.do_warn(_t('Uploading Error'), uploadErrors[0].error);
|
||||
}
|
||||
framework.unblockUI();
|
||||
this._getAttachments().then(function (attachments) {
|
||||
self.trigger_up('update_sidebar_attachments', {files: attachments});
|
||||
var $input = self.$el.find('.o_form_sheet_bg .o_input_file');
|
||||
$input.addClass('hide').removeClass('f_attachment_input');
|
||||
$input.parent().parent().removeClass('f_attachment')
|
||||
});
|
||||
},
|
||||
_processAttachments: function (attachments) {
|
||||
//to display number in name if more then one attachment which has same name.
|
||||
var self = this;
|
||||
_.chain(attachments)
|
||||
.groupBy(function (attachment) {
|
||||
return attachment.name;
|
||||
})
|
||||
.each(function (attachment) {
|
||||
if (attachment.length > 1) {
|
||||
_.map(attachment, function (attachment, i) {
|
||||
attachment.name = _.str.sprintf(_t("%s (%s)"), attachment.name, i + 1);
|
||||
});
|
||||
}
|
||||
});
|
||||
_.each(attachments, function (a) {
|
||||
a.label = a.name;
|
||||
if (a.type === "binary") {
|
||||
a.url = '/web/content/' + a.id + '?download=true';
|
||||
}
|
||||
a.create_date = field_utils.parse.datetime(a.create_date, 'create_date', {isUTC: true});
|
||||
a.create_date_string = field_utils.format.datetime(a.create_date, 'create_date', self.state.context.params);
|
||||
a.write_date = field_utils.parse.datetime(a.write_date, 'write_date', {isUTC: true});
|
||||
a.write_date_string = field_utils.format.datetime(a.write_date, 'write_date', self.state.context.params);
|
||||
});
|
||||
return attachments;
|
||||
},
|
||||
_getAttachments: function () {
|
||||
var domain = [
|
||||
['res_model', '=', this.state.model],
|
||||
['res_id', '=', this.state.res_id],
|
||||
['type', 'in', ['binary', 'url']]
|
||||
];
|
||||
var fields = ['name', 'url', 'type',
|
||||
'create_uid', 'create_date', 'write_uid', 'write_date'];
|
||||
return this._rpc({
|
||||
model: 'ir.attachment',
|
||||
method: 'search_read',
|
||||
context: this.state.context,
|
||||
domain: domain,
|
||||
fields: fields,
|
||||
}).then(this._processAttachments.bind(this));
|
||||
},
|
||||
/**
|
||||
* Sets id attribute of given widget to idForLabel
|
||||
|
16
addons/web/static/src/less/drag_n_drop_attachment.less
Normal file
16
addons/web/static/src/less/drag_n_drop_attachment.less
Normal file
@ -0,0 +1,16 @@
|
||||
.f_attachment {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
background: fade(@brand-primary, 50%);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.f_attachment_input {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
background: fade(@brand-primary, 50%);
|
||||
z-index: 1;
|
||||
}
|
@ -35,4 +35,14 @@
|
||||
<div class="mt8" style="font-size: 22px;">Sorry, unable to find your content!</div>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
<t t-name="DragAndDropAttachment">
|
||||
<t t-call="HiddenInputFile">
|
||||
<t t-set="fileupload_id" t-value="widget.fileuploadId"/>
|
||||
<t t-set="fileupload_action" t-translation="off">/web/binary/upload_attachment</t>
|
||||
<t t-set="multi_upload" t-value="true"/>
|
||||
<input type="hidden" name="model" t-att-value="widget.state.model"/>
|
||||
<input type="hidden" name="id" t-att-value="widget.state.res_id"/>
|
||||
</t>
|
||||
</t>
|
||||
</templates>
|
||||
|
@ -259,6 +259,7 @@
|
||||
<link rel="stylesheet" type="text/less" href="/web/static/src/less/backend_theme/form_view.less"/>
|
||||
<link rel="stylesheet" type="text/less" href="/web/static/src/less/backend_theme/list_view.less"/>
|
||||
<link rel="stylesheet" type="text/less" href="/web/static/src/less/backend_theme/control_panel.less"/>
|
||||
<link rel="stylesheet" type="text/less" href="/web/static/src/less/drag_n_drop_attachment.less"/>
|
||||
|
||||
<link rel="stylesheet" type="text/less" href="/web/static/src/less/backend_theme_customizer/colors.less"/>
|
||||
<link rel="stylesheet" type="text/less" href="/web/static/src/less/backend_theme_customizer/customize_model.less"/>
|
||||
|
Loading…
Reference in New Issue
Block a user