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/fields/email.js
T
2023-07-08 14:22:05 +03:00

611 lines
20 KiB
JavaScript

/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://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.
************************************************************************/
import VarcharFieldView from 'views/fields/varchar';
class EmailFieldView extends VarcharFieldView {
type = 'email'
editTemplate = 'fields/email/edit'
detailTemplate = 'fields/email/detail'
listTemplate = 'fields/email/list'
validations = ['required', 'emailData']
events = {
/** @this EmailFieldView */
'click [data-action="mailTo"]': function (e) {
this.mailTo($(e.currentTarget).data('email-address'));
},
/** @this EmailFieldView */
'click [data-action="switchEmailProperty"]': function (e) {
let $target = $(e.currentTarget);
let $block = $(e.currentTarget).closest('div.email-address-block');
let property = $target.data('property-type');
if (property === 'primary') {
if (!$target.hasClass('active')) {
if ($block.find('input.email-address').val() !== '') {
this.$el.find('button.email-property[data-property-type="primary"]')
.removeClass('active').children().addClass('text-muted');
$target.addClass('active').children().removeClass('text-muted');
}
}
} else {
if ($target.hasClass('active')) {
$target.removeClass('active').children().addClass('text-muted');
} else {
$target.addClass('active').children().removeClass('text-muted');
}
}
this.trigger('change');
},
/** @this EmailFieldView */
'click [data-action="removeEmailAddress"]': function (e) {
let $block = $(e.currentTarget).closest('div.email-address-block');
this.removeEmailAddress($block);
let $last = this.$el.find('.email-address').last();
if ($last.length) {
$last[0].focus({preventScroll: true});
}
},
/** @this EmailFieldView */
'change input.email-address': function (e) {
let $input = $(e.currentTarget);
let $block = $input.closest('div.email-address-block');
if (this._itemJustRemoved) {
return;
}
if ($input.val() === '' && $block.length) {
this.removeEmailAddress($block);
}
else {
this.trigger('change');
}
this.trigger('change');
this.manageAddButton();
},
/** @this EmailFieldView */
'keypress input.email-address': function () {
this.manageAddButton();
},
/** @this EmailFieldView */
'paste input.email-address': function () {
setTimeout(() => this.manageAddButton(), 10);
},
/** @this EmailFieldView */
'click [data-action="addEmailAddress"]': function () {
this.addEmailAddress();
},
/** @this EmailFieldView */
'keydown input.email-address': function (e) {
let key = Espo.Utils.getKeyFromKeyEvent(e);
let $target = $(e.currentTarget);
if (key === 'Enter') {
if (!this.$el.find('[data-action="addEmailAddress"]').hasClass('disabled')) {
this.addEmailAddress();
e.stopPropagation();
}
return;
}
if (key === 'Backspace' && $target.val() === '') {
let $block = $target.closest('div.email-address-block');
this._itemJustRemoved = true;
setTimeout(() => this._itemJustRemoved = false, 100);
e.stopPropagation();
this.removeEmailAddress($block);
setTimeout(() => this.focusOnLast(true), 50);
}
},
}
validateEmailData() {
let data = this.model.get(this.dataFieldName);
if (!data || !data.length) {
return;
}
let addressList = [];
let regExp = new RegExp(
/^[-!#$%&'*+/=?^_`{|}~A-Za-z0-9]+(?:\.[-!#$%&'*+/=?^_`{|}~A-Za-z0-9]+)*/.source +
/@([A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?\.)+[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z0-9]/.source
);
let notValid = false;
data.forEach((row, i) => {
let address = row.emailAddress || '';
let addressLowerCase = String(address).toLowerCase();
if (!regExp.test(addressLowerCase) && address.indexOf(this.erasedPlaceholder) !== 0) {
let msg = this.translate('fieldShouldBeEmail', 'messages')
.replace('{field}', this.getLabelText());
this.reRender();
this.showValidationMessage(msg, 'div.email-address-block:nth-child(' + (i + 1)
.toString() + ') input');
notValid = true;
return;
}
if (~addressList.indexOf(addressLowerCase)) {
let msg = this.translate('fieldValueDuplicate', 'messages')
.replace('{field}', this.getLabelText());
this.showValidationMessage(msg, 'div.email-address-block:nth-child(' + (i + 1)
.toString() + ') input');
notValid = true;
return;
}
addressList.push(addressLowerCase);
});
if (notValid) {
return true;
}
}
validateRequired() {
if (this.isRequired()) {
if (!this.model.get(this.name)) {
let msg = this.translate('fieldIsRequired', 'messages')
.replace('{field}', this.getLabelText());
this.showValidationMessage(msg, 'div.email-address-block:nth-child(1) input');
return true;
}
}
}
data() {
let emailAddressData;
if (this.mode === this.MODE_EDIT) {
emailAddressData = Espo.Utils.clone(this.model.get(this.dataFieldName));
if (this.model.isNew() || !this.model.get(this.name)) {
if (!emailAddressData || !emailAddressData.length) {
let optOut;
if (this.model.isNew()) {
optOut = this.emailAddressOptedOutByDefault && this.model.entityType !== 'User';
} else {
optOut = this.model.get(this.isOptedOutFieldName)
}
emailAddressData = [{
emailAddress: this.model.get(this.name) || '',
primary: true,
optOut: optOut,
invalid: false,
}];
}
}
} else {
emailAddressData = this.model.get(this.dataFieldName) || false;
}
if ((!emailAddressData || emailAddressData.length === 0) && this.model.get(this.name)) {
emailAddressData = [{
emailAddress: this.model.get(this.name),
primary: true,
optOut: false,
invalid: false,
}];
}
if (emailAddressData) {
emailAddressData = Espo.Utils.cloneDeep(emailAddressData);
emailAddressData.forEach(item => {
let address = item.emailAddress || '';
item.erased = address.indexOf(this.erasedPlaceholder) === 0;
item.lineThrough = item.optOut || item.invalid;
});
}
let data = {
...super.data(),
emailAddressData: emailAddressData,
};
if (this.isReadMode()) {
data.isOptedOut = this.model.get(this.isOptedOutFieldName);
data.isInvalid = this.model.get(this.isInvalidFieldName);
if (this.model.get(this.name)) {
data.isErased = this.model.get(this.name).indexOf(this.erasedPlaceholder) === 0
}
data.valueIsSet = this.model.has(this.name);
}
data.itemMaxLength = this.itemMaxLength;
return data;
}
getAutocompleteMaxCount() {
if (this.autocompleteMaxCount) {
return this.autocompleteMaxCount;
}
return this.getConfig().get('recordsPerPage');
}
focusOnLast(cursorAtEnd) {
let $item = this.$el.find('input.form-control').last();
$item.focus();
if (cursorAtEnd && $item[0]) {
// Not supported for email inputs.
// $item[0].setSelectionRange($item[0].value.length, $item[0].value.length);
}
}
removeEmailAddress($block) {
if ($block.parent().children().length === 1) {
$block.find('input.email-address').val('');
} else {
this.removeEmailAddressBlock($block);
}
this.trigger('change');
}
addEmailAddress() {
let data = Espo.Utils.cloneDeep(this.fetchEmailAddressData());
let o = {
emailAddress: '',
primary: !data.length,
optOut: this.emailAddressOptedOutByDefault,
invalid: false,
lower: '',
};
data.push(o);
this.model.set(this.dataFieldName, data, {silent: true});
this.reRender()
.then(() => this.focusOnLast());
}
removeEmailAddressBlock($block) {
let changePrimary = false;
if ($block.find('button[data-property-type="primary"]').hasClass('active')) {
changePrimary = true;
}
$block.remove();
if (changePrimary) {
this.$el.find('button[data-property-type="primary"]')
.first().addClass('active').children().removeClass('text-muted');
}
this.manageButtonsVisibility();
this.manageAddButton();
}
afterRender() {
super.afterRender();
this.manageButtonsVisibility();
this.manageAddButton();
if (this.mode === this.MODE_SEARCH && this.getAcl().check('Email', 'create')) {
this.$element.autocomplete({
serviceUrl: () => {
return `EmailAddress/search` +
`?maxSize=${this.getAutocompleteMaxCount()}`
},
paramName: 'q',
minChars: 1,
autoSelectFirst: true,
triggerSelectOnValidInput: false,
formatResult: (suggestion) => {
return this.getHelper().escapeString(suggestion.name) + ' <' +
this.getHelper().escapeString(suggestion.id) + '>';
},
transformResult: (response) => {
response = JSON.parse(response);
let list = [];
response.forEach(item => {
list.push({
id: item.emailAddress,
name: item.entityName,
emailAddress: item.emailAddress,
entityId: item.entityId,
entityName: item.entityName,
entityType: item.entityType,
data: item.emailAddress,
value: item.emailAddress,
});
});
return {suggestions: list};
},
onSelect: (s) => {
this.$element.val(s.emailAddress);
this.$element.focus();
},
});
}
}
manageAddButton() {
let $input = this.$el.find('input.email-address');
let c = 0;
$input.each((i, input) => {
if (input.value !== '') {
c++;
}
});
if (c === $input.length) {
this.$el.find('[data-action="addEmailAddress"]')
.removeClass('disabled')
.removeAttr('disabled');
return;
}
this.$el.find('[data-action="addEmailAddress"]')
.addClass('disabled')
.attr('disabled', 'disabled');
}
manageButtonsVisibility() {
let $primary = this.$el.find('button[data-property-type="primary"]');
let $remove = this.$el.find('button[data-action="removeEmailAddress"]');
if ($primary.length > 1) {
$primary.removeClass('hidden');
$remove.removeClass('hidden');
} else {
$primary.addClass('hidden');
$remove.addClass('hidden');
}
}
mailTo(emailAddress) {
let attributes = {
status: 'Draft',
to: emailAddress
};
let scope = this.model.entityType;
switch (scope) {
case 'Account':
case 'Lead':
attributes.parentType = scope;
attributes.parentName = this.model.get('name');
attributes.parentId = this.model.id;
break;
case 'Contact':
if (this.getConfig().get('b2cMode')) {
attributes.parentType = 'Contact';
attributes.parentName = this.model.get('name');
attributes.parentId = this.model.id;
} else {
if (this.model.get('accountId')) {
attributes.parentType = 'Account';
attributes.parentName = this.model.get('accountName');
attributes.parentId = this.model.get('accountId');
}
}
break;
}
if (this.model.collection && this.model.collection.parentModel) {
if (this.checkParentTypeAvailability(this.model.collection.parentModel.entityType)) {
attributes.parentType = this.model.collection.parentModel.entityType;
attributes.parentId = this.model.collection.parentModel.id;
attributes.parentName = this.model.collection.parentModel.get('name');
}
}
if (!attributes.parentId) {
if (this.checkParentTypeAvailability(this.model.entityType)) {
attributes.parentType = this.model.entityType;
attributes.parentId = this.model.id;
attributes.parentName = this.model.get('name');
}
} else {
if (attributes.parentType && !this.checkParentTypeAvailability(attributes.parentType)) {
attributes.parentType = null;
attributes.parentId = null;
attributes.parentName = null;
}
}
if (~['Contact', 'Lead', 'Account'].indexOf(this.model.entityType)) {
attributes.nameHash = {};
attributes.nameHash[emailAddress] = this.model.get('name');
}
if (
this.getConfig().get('emailForceUseExternalClient') ||
this.getPreferences().get('emailUseExternalClient') ||
!this.getAcl().checkScope('Email', 'create')
) {
Espo.loader.require('email-helper', EmailHelper => {
let emailHelper = new EmailHelper();
document.location.href = emailHelper
.composeMailToLink(attributes, this.getConfig().get('outboundEmailBccAddress'));
});
return;
}
let viewName = this.getMetadata()
.get('clientDefs.' + this.scope + '.modalViews.compose') || 'views/modals/compose-email';
Espo.Ui.notify(' ... ');
this.createView('quickCreate', viewName, {
attributes: attributes,
}, view => {
view.render();
view.notify(false);
});
}
checkParentTypeAvailability(parentType) {
return ~(this.getMetadata()
.get(['entityDefs', 'Email', 'fields', 'parent', 'entityList']) || []).indexOf(parentType);
}
setup() {
this.dataFieldName = this.name + 'Data';
this.isOptedOutFieldName = this.name + 'IsOptedOut';
this.isInvalidFieldName = this.name + 'IsInvalid';
this.erasedPlaceholder = 'ERASED:';
this.emailAddressOptedOutByDefault = this.getConfig().get('emailAddressIsOptedOutByDefault');
this.itemMaxLength = this.getMetadata()
.get(['entityDefs', 'EmailAddress', 'fields', 'name', 'maxLength']) || 255;
}
fetchEmailAddressData() {
let data = [];
let $list = this.$el.find('div.email-address-block');
if ($list.length) {
$list.each((i, d) => {
let row = {};
let $d = $(d);
row.emailAddress = $d.find('input.email-address').val().trim();
if (row.emailAddress === '') {
return;
}
row.primary = $d.find('button[data-property-type="primary"]').hasClass('active');
row.optOut = $d.find('button[data-property-type="optOut"]').hasClass('active');
row.invalid = $d.find('button[data-property-type="invalid"]').hasClass('active');
row.lower = row.emailAddress.toLowerCase();
data.push(row);
});
}
return data;
}
fetch() {
let data = {};
let addressData = this.fetchEmailAddressData() || [];
data[this.dataFieldName] = addressData;
data[this.name] = null;
data[this.isOptedOutFieldName] = false;
data[this.isInvalidFieldName] = false;
let primaryIndex = 0;
addressData.forEach((item, i) => {
if (item.primary) {
primaryIndex = i;
if (item.optOut) {
data[this.isOptedOutFieldName] = true;
}
if (item.invalid) {
data[this.isInvalidFieldName] = true;
}
}
});
if (addressData.length && primaryIndex > 0) {
let t = addressData[0];
addressData[0] = addressData[primaryIndex];
addressData[primaryIndex] = t;
}
if (addressData.length) {
data[this.name] = addressData[0].emailAddress;
} else {
data[this.isOptedOutFieldName] = null;
data[this.isInvalidFieldName] = null;
}
return data;
}
}
export default EmailFieldView;