snappymail/dev/Stores/User/Quota.js
RainLoop Team e5af98b04b Update ckeditor
Move e2e tests
Code refactoring
2016-09-12 23:50:21 +03:00

34 lines
601 B
JavaScript

import window from 'window';
import ko from 'ko';
import {Magics} from 'Common/Enums';
class QuotaUserStore
{
constructor() {
this.quota = ko.observable(0);
this.usage = ko.observable(0);
this.percentage = ko.computed(() => {
const
quota = this.quota(),
usage = this.usage();
return 0 < quota ? window.Math.ceil((usage / quota) * 100) : 0;
});
}
/**
* @param {number} quota
* @param {number} usage
*/
populateData(quota, usage) {
this.quota(quota * Magics.BitLength1024);
this.usage(usage * Magics.BitLength1024);
}
}
export default new QuotaUserStore();