mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
31 lines
852 B
JavaScript
31 lines
852 B
JavaScript
import { AbstractCollectionModel } from 'Model/AbstractCollection';
|
|
import { AttachmentModel } from 'Model/Attachment';
|
|
|
|
'use strict';
|
|
|
|
export class AttachmentCollectionModel extends AbstractCollectionModel
|
|
{
|
|
/**
|
|
* @param {?Array} json
|
|
* @returns {AttachmentCollectionModel}
|
|
*/
|
|
static reviveFromJson(items) {
|
|
return super.reviveFromJson(items, attachment => AttachmentModel.reviveFromJson(attachment));
|
|
/*
|
|
const attachments = super.reviveFromJson(items, attachment => AttachmentModel.reviveFromJson(attachment));
|
|
if (attachments) {
|
|
attachments.InlineCount = attachments.reduce((accumulator, a) => accumulator + (a.isInline ? 1 : 0), 0);
|
|
}
|
|
return attachments;
|
|
*/
|
|
}
|
|
|
|
/**
|
|
* @param {string} cid
|
|
* @returns {*}
|
|
*/
|
|
findByCid(cid) {
|
|
cid = cid.replace(/^<+|>+$/g, '');
|
|
return this.find(item => cid === item.contentId());
|
|
}
|
|
}
|