mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
ccbf04cb67
Fixed languages popup Release commit
141 lines
No EOL
2.7 KiB
JavaScript
141 lines
No EOL
2.7 KiB
JavaScript
|
|
(function (module, require) {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
ko = require('ko'),
|
|
|
|
Enums = require('Enums'),
|
|
Utils = require('Utils'),
|
|
LinkBuilder = require('LinkBuilder')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function ContactModel()
|
|
{
|
|
this.idContact = 0;
|
|
this.display = '';
|
|
this.properties = [];
|
|
this.tags = '';
|
|
this.readOnly = false;
|
|
|
|
this.focused = ko.observable(false);
|
|
this.selected = ko.observable(false);
|
|
this.checked = ko.observable(false);
|
|
this.deleted = ko.observable(false);
|
|
}
|
|
|
|
/**
|
|
* @return {Array|null}
|
|
*/
|
|
ContactModel.prototype.getNameAndEmailHelper = function ()
|
|
{
|
|
var
|
|
sName = '',
|
|
sEmail = ''
|
|
;
|
|
|
|
if (Utils.isNonEmptyArray(this.properties))
|
|
{
|
|
_.each(this.properties, function (aProperty) {
|
|
if (aProperty)
|
|
{
|
|
if (Enums.ContactPropertyType.FirstName === aProperty[0])
|
|
{
|
|
sName = Utils.trim(aProperty[1] + ' ' + sName);
|
|
}
|
|
else if (Enums.ContactPropertyType.LastName === aProperty[0])
|
|
{
|
|
sName = Utils.trim(sName + ' ' + aProperty[1]);
|
|
}
|
|
else if ('' === sEmail && Enums.ContactPropertyType.Email === aProperty[0])
|
|
{
|
|
sEmail = aProperty[1];
|
|
}
|
|
}
|
|
}, this);
|
|
}
|
|
|
|
return '' === sEmail ? null : [sEmail, sName];
|
|
};
|
|
|
|
ContactModel.prototype.parse = function (oItem)
|
|
{
|
|
var bResult = false;
|
|
if (oItem && 'Object/Contact' === oItem['@Object'])
|
|
{
|
|
this.idContact = Utils.pInt(oItem['IdContact']);
|
|
this.display = Utils.pString(oItem['Display']);
|
|
this.readOnly = !!oItem['ReadOnly'];
|
|
this.tags = '';
|
|
|
|
if (Utils.isNonEmptyArray(oItem['Properties']))
|
|
{
|
|
_.each(oItem['Properties'], function (oProperty) {
|
|
if (oProperty && oProperty['Type'] && Utils.isNormal(oProperty['Value']) && Utils.isNormal(oProperty['TypeStr']))
|
|
{
|
|
this.properties.push([Utils.pInt(oProperty['Type']), Utils.pString(oProperty['Value']), Utils.pString(oProperty['TypeStr'])]);
|
|
}
|
|
}, this);
|
|
}
|
|
|
|
if (Utils.isNonEmptyArray(oItem['Tags']))
|
|
{
|
|
this.tags = oItem['Tags'].join(',');
|
|
}
|
|
|
|
bResult = true;
|
|
}
|
|
|
|
return bResult;
|
|
};
|
|
|
|
/**
|
|
* @return {string}
|
|
*/
|
|
ContactModel.prototype.srcAttr = function ()
|
|
{
|
|
return LinkBuilder.emptyContactPic();
|
|
};
|
|
|
|
/**
|
|
* @return {string}
|
|
*/
|
|
ContactModel.prototype.generateUid = function ()
|
|
{
|
|
return '' + this.idContact;
|
|
};
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
ContactModel.prototype.lineAsCcc = function ()
|
|
{
|
|
var aResult = [];
|
|
if (this.deleted())
|
|
{
|
|
aResult.push('deleted');
|
|
}
|
|
if (this.selected())
|
|
{
|
|
aResult.push('selected');
|
|
}
|
|
if (this.checked())
|
|
{
|
|
aResult.push('checked');
|
|
}
|
|
if (this.focused())
|
|
{
|
|
aResult.push('focused');
|
|
}
|
|
|
|
return aResult.join(' ');
|
|
};
|
|
|
|
module.exports = ContactModel;
|
|
|
|
}(module, require)); |