snappymail/dev/Model/Identity.js

52 lines
985 B
JavaScript
Raw Normal View History

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-10-04 19:58:01 +08:00
AbstractModel = require('Knoin/AbstractModel')
2014-08-20 23:03:12 +08:00
;
/**
* @param {string} sId
* @param {string} sEmail
* @constructor
*/
function IdentityModel(sId, sEmail)
2014-08-20 23:03:12 +08:00
{
2014-10-04 19:58:01 +08:00
AbstractModel.call(this, 'IdentityModel');
this.id = ko.observable(sId);
2014-08-20 23:03:12 +08:00
this.email = ko.observable(sEmail);
this.name = ko.observable('');
2014-08-20 23:03:12 +08:00
this.replyTo = ko.observable('');
this.bcc = ko.observable('');
this.signature = ko.observable('');
this.signatureInsertBefore = ko.observable(false);
2014-08-20 23:03:12 +08:00
this.deleteAccess = ko.observable(false);
this.canBeDeleted = ko.computed(function () {
return '' !== this.id();
}, this);
2014-08-20 23:03:12 +08:00
}
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(),
sEmail = this.email()
;
2014-08-20 23:03:12 +08:00
return ('' !== sName) ? sName + ' (' + sEmail + ')' : sEmail;
2014-08-20 23:03:12 +08:00
};
module.exports = IdentityModel;
2014-09-05 06:49:03 +08:00
}());