2013-11-16 06:21:12 +08:00
|
|
|
|
2014-09-05 06:49:03 +08:00
|
|
|
(function () {
|
2014-08-25 23:49:01 +08:00
|
|
|
|
|
|
|
'use strict';
|
2014-08-20 23:03:12 +08:00
|
|
|
|
|
|
|
var
|
2014-10-04 19:58:01 +08:00
|
|
|
_ = require('_'),
|
2014-08-25 23:49:01 +08:00
|
|
|
ko = require('ko'),
|
2014-09-02 08:15:31 +08:00
|
|
|
|
2014-10-04 19:58:01 +08:00
|
|
|
Utils = require('Common/Utils'),
|
|
|
|
|
|
|
|
AbstractModel = require('Knoin/AbstractModel')
|
2014-08-20 23:03:12 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} sId
|
|
|
|
* @param {string} sEmail
|
|
|
|
* @param {boolean=} bCanBeDelete = true
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
function IdentityModel(sId, sEmail, bCanBeDelete)
|
|
|
|
{
|
2014-10-04 19:58:01 +08:00
|
|
|
AbstractModel.call(this, 'IdentityModel');
|
|
|
|
|
2014-08-20 23:03:12 +08:00
|
|
|
this.id = sId;
|
|
|
|
this.email = ko.observable(sEmail);
|
|
|
|
this.name = ko.observable('');
|
|
|
|
this.replyTo = ko.observable('');
|
|
|
|
this.bcc = ko.observable('');
|
|
|
|
|
|
|
|
this.deleteAccess = ko.observable(false);
|
|
|
|
this.canBeDalete = ko.observable(bCanBeDelete);
|
|
|
|
}
|
|
|
|
|
2014-10-04 19:58:01 +08:00
|
|
|
_.extend(IdentityModel.prototype, AbstractModel.prototype);
|
|
|
|
|
2014-08-20 23:03:12 +08:00
|
|
|
IdentityModel.prototype.formattedName = function ()
|
|
|
|
{
|
|
|
|
var sName = this.name();
|
|
|
|
return '' === sName ? this.email() : sName + ' <' + this.email() + '>';
|
|
|
|
};
|
|
|
|
|
|
|
|
IdentityModel.prototype.formattedNameForCompose = function ()
|
|
|
|
{
|
|
|
|
var sName = this.name();
|
|
|
|
return '' === sName ? this.email() : sName + ' (' + this.email() + ')';
|
|
|
|
};
|
|
|
|
|
|
|
|
IdentityModel.prototype.formattedNameForEmail = function ()
|
|
|
|
{
|
|
|
|
var sName = this.name();
|
|
|
|
return '' === sName ? this.email() : '"' + Utils.quoteName(sName) + '" <' + this.email() + '>';
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = IdentityModel;
|
|
|
|
|
2014-09-05 06:49:03 +08:00
|
|
|
}());
|