feat(mail): handle multiple mail identities

Fixes #768, fixes #4602
pull/284/head
Francis Lachapelle 2020-07-10 17:07:01 -04:00
parent 3d25b8b571
commit b4f76a7932
3 changed files with 8 additions and 13 deletions

View File

@ -49,7 +49,7 @@
md-highlight-flags="gi">{{ identity.full }}</span>
</div>
<div class="sg-md-body">
<i ng-bind-html="editor.account.getTextSignature($index)"><!-- signature --></i>
<i ng-bind-html="editor.account.getTextSignature(identity)"><!-- signature --></i>
</div>
</div>
</md-item-template>

View File

@ -118,7 +118,7 @@
</div>
</div>
<div class="sg-md-body">
<i ng-bind-html="$AccountDialogController.account.getTextSignature($index)"><!-- signature --></i>
<i ng-bind-html="$AccountDialogController.account.getTextSignature(identity)"><!-- signature --></i>
</div>
</div>
<md-button class="sg-icon-button" type="button"

View File

@ -327,19 +327,14 @@
* @desc Create a plain text representation of the signature for the specified identity index.
* @returns a plain text version of the signature
*/
Account.prototype.getTextSignature = function(index) {
if (index < this.identities.length) {
var identity = this.identities[index];
if (identity.signature) {
var element = angular.element('<div>' + identity.signature + '</div>');
identity.textSignature = _.map(element.contents(), 'textContent').join(' ').trim();
} else {
identity.textSignature = '';
}
return identity.textSignature;
Account.prototype.getTextSignature = function(identity) {
if (identity.signature) {
var element = angular.element('<div>' + identity.signature + '</div>');
identity.textSignature = _.map(element.contents(), 'textContent').join(' ').trim();
} else {
throw Error('Index of identity is out of range');
identity.textSignature = '';
}
return identity.textSignature;
};
/**