This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/client/src/views/modals/edit.js
T
2017-03-24 16:19:35 +02:00

220 lines
7.8 KiB
JavaScript

/************************************************************************
* 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/modals/edit', 'views/modal', function (Dep) {
return Dep.extend({
cssName: 'edit-modal',
header: false,
template: 'modals/edit',
saveDisabled: false,
fullFormDisabled: false,
editView: null,
columnCount: 2,
escapeDisabled: true,
fitHeight: true,
className: 'dialog dialog-record',
sideDisabled: false,
bottomDisabled: false,
setup: function () {
var self = this;
this.buttonList = [];
if ('saveDisabled' in this.options) {
this.saveDisabled = this.options.saveDisabled;
}
if (!this.saveDisabled) {
this.buttonList.push({
name: 'save',
label: 'Save',
style: 'primary',
});
}
this.fullFormDisabled = this.options.fullFormDisabled || this.fullFormDisabled;
this.layoutName = this.options.layoutName || this.layoutName;
if (!this.fullFormDisabled) {
this.buttonList.push({
name: 'fullForm',
label: 'Full Form'
});
}
this.buttonList.push({
name: 'cancel',
label: 'Cancel'
});
this.scope = this.scope || this.options.scope;
this.id = this.options.id;
if (!this.id) {
this.header = this.getLanguage().translate('Create ' + this.scope, 'labels', this.scope);
} else {
this.header = this.getLanguage().translate('Edit');
this.header += ': ' + this.getLanguage().translate(this.scope, 'scopeNames');
}
if (!this.fullFormDisabled) {
if (!this.id) {
this.header = '<a href="#' + this.scope + '/create" class="action" title="'+this.translate('Full Form')+'" data-action="fullForm">' + this.header + '</a>';
} else {
this.header = '<a href="#' + this.scope + '/edit/' + this.id+'" class="action" title="'+this.translate('Full Form')+'" data-action="fullForm">' + this.header + '</a>';
}
}
this.sourceModel = this.model;
this.waitForView('edit');
this.getModelFactory().create(this.scope, function (model) {
if (this.id) {
if (this.sourceModel) {
model = this.model = this.sourceModel.clone();
} else {
this.model = model;
model.id = this.id;
}
model.once('sync', function () {
this.createRecordView(model);
}, this);
model.fetch();
} else {
if (this.options.relate) {
model.setRelate(this.options.relate);
}
if (this.options.attributes) {
model.set(this.options.attributes);
}
this.createRecordView(model);
}
}.bind(this));
},
createRecordView: function (model, callback) {
var viewName =
this.editViewName ||
this.editView ||
this.getMetadata().get(['clientDefs', model.name, 'recordViews', 'editSmall']) ||
this.getMetadata().get(['clientDefs', model.name, 'recordViews', 'editQuick']) ||
'views/record/edit-small';
var options = {
model: model,
el: this.containerSelector + ' .edit-container',
type: 'editSmall',
layoutName: this.layoutName || 'detailSmall',
columnCount: this.columnCount,
buttonsPosition: false,
sideDisabled: this.sideDisabled,
bottomDisabled: this.bottomDisabled,
exit: function () {}
};
this.createView('edit', viewName, options, callback);
},
actionSave: function () {
var editView = this.getView('edit');
var model = editView.model;
editView.once('after:save', function () {
this.trigger('after:save', model);
this.dialog.close();
}, this);
var $buttons = this.dialog.$el.find('.modal-footer button');
$buttons.addClass('disabled').attr('disabled', 'disabled');
editView.once('cancel:save', function () {
$buttons.removeClass('disabled').removeAttr('disabled');
}, this);
editView.save();
},
actionFullForm: function (dialog) {
var url;
var router = this.getRouter();
if (!this.id) {
url = '#' + this.scope + '/create';
var attributes = this.getView('edit').fetch();
var model = this.getView('edit').model;
attributes = _.extend(attributes, model.getClonedAttributes());
setTimeout(function () {
router.dispatch(this.scope, 'create', {
attributes: attributes,
relate: this.options.relate,
returnUrl: this.options.returnUrl || Backbone.history.fragment,
});
router.navigate(url, {trigger: false});
}.bind(this), 10);
} else {
url = '#' + this.scope + '/edit/' + this.id;
var attributes = this.getView('edit').fetch();
var model = this.getView('edit').model;
attributes = _.extend(attributes, model.getClonedAttributes());
setTimeout(function () {
router.dispatch(this.scope, 'edit', {
attributes: attributes,
returnUrl: this.options.returnUrl || Backbone.history.fragment,
returnDispatchParams: this.options.returnDispatchParams || null,
model: this.sourceModel,
id: this.id
});
router.navigate(url, {trigger: false});
}.bind(this), 10);
}
this.trigger('leave');
this.dialog.close();
}
});
});