mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +08:00
101 lines
2.2 KiB
JavaScript
101 lines
2.2 KiB
JavaScript
import { pInt } from 'Common/Utils';
|
|
import { FileInfo } from 'Common/File';
|
|
|
|
import { AbstractModel } from 'Knoin/AbstractModel';
|
|
|
|
export class ComposeAttachmentModel extends AbstractModel {
|
|
/**
|
|
* @param {string} id
|
|
* @param {string} fileName
|
|
* @param {?number=} size = null
|
|
* @param {boolean=} isInline = false
|
|
* @param {boolean=} isLinked = false
|
|
* @param {string=} CID = ''
|
|
* @param {string=} contentLocation = ''
|
|
*/
|
|
constructor(id, fileName, size = null, isInline = false, isLinked = false, CID = '', contentLocation = '') {
|
|
super();
|
|
|
|
this.id = id;
|
|
this.isInline = !!isInline;
|
|
this.isLinked = !!isLinked;
|
|
this.CID = CID;
|
|
this.contentLocation = contentLocation;
|
|
this.fromMessage = false;
|
|
|
|
this.addObservables({
|
|
fileName: fileName,
|
|
size: size,
|
|
tempName: '',
|
|
|
|
progress: 0,
|
|
error: '',
|
|
waiting: true,
|
|
uploading: false,
|
|
enabled: true,
|
|
complete: false
|
|
});
|
|
|
|
this.addComputables({
|
|
progressText: () => {
|
|
const p = this.progress();
|
|
return 0 === p ? '' : '' + (98 < p ? 100 : p) + '%';
|
|
},
|
|
|
|
progressStyle: () => {
|
|
const p = this.progress();
|
|
return 0 === p ? '' : 'width:' + (98 < p ? 100 : p) + '%';
|
|
},
|
|
|
|
title: () => this.error() || this.fileName(),
|
|
|
|
friendlySize: () => {
|
|
const localSize = this.size();
|
|
return null === localSize ? '' : FileInfo.friendlySize(localSize);
|
|
},
|
|
|
|
mimeType: () => FileInfo.getContentType(this.fileName()),
|
|
fileExt: () => FileInfo.getExtension(this.fileName())
|
|
});
|
|
}
|
|
|
|
static fromAttachment(item)
|
|
{
|
|
const attachment = new ComposeAttachmentModel(
|
|
item.download,
|
|
item.fileName,
|
|
item.estimatedSize,
|
|
item.isInline,
|
|
item.isLinked,
|
|
item.cid,
|
|
item.contentLocation
|
|
);
|
|
attachment.fromMessage = true;
|
|
return attachment;
|
|
}
|
|
|
|
/**
|
|
* @param {FetchJsonComposeAttachment} json
|
|
* @returns {boolean}
|
|
*/
|
|
initByUploadJson(json) {
|
|
let bResult = false;
|
|
if (json) {
|
|
this.fileName(json.Name);
|
|
this.size(undefined === json.Size ? 0 : pInt(json.Size));
|
|
this.tempName(undefined === json.TempName ? '' : json.TempName);
|
|
this.isInline = false;
|
|
|
|
bResult = true;
|
|
}
|
|
|
|
return bResult;
|
|
}
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
iconClass() {
|
|
return FileInfo.getIconClass(this.fileExt(), this.mimeType());
|
|
}
|
|
}
|