TF-1014: add covert bytes to gb and edit UI

This commit is contained in:
ManhNTX
2022-11-14 18:33:33 +07:00
committed by Dat H. Pham
parent b9a8e5deed
commit 3d23f3fa2d
10 changed files with 130 additions and 100 deletions
@@ -1,4 +1,5 @@
import 'package:core/core.dart';
import 'package:core/utils/double_convert.dart';
import 'package:get/get.dart';
import 'package:jmap_dart_client/jmap/account_id.dart';
import 'package:jmap_dart_client/jmap/core/capability/capability_identifier.dart';
@@ -17,8 +18,7 @@ class QuotasController extends BaseController {
final usedCapacity = Rx<num>(0);
final limitCapacity = Rx<num>(0);
final warningLimitCapacity = Rx<num>(0);
final enableShowQuotas = false.obs;
final quotasState = QuotasState.normal.obs;
final quotasState = QuotasState.notAvailable.obs;
final warningProgressConstant = 0.9;
late Worker accountIdWorker;
@@ -27,7 +27,7 @@ class QuotasController extends BaseController {
: 0;
bool get enableShowWarningQuotas =>
enableShowQuotas.isTrue &&
quotasState.value != QuotasState.notAvailable &&
(quotasState.value == QuotasState.runningOutOfStorage
|| quotasState.value == QuotasState.runOutOfStorage);
@@ -36,14 +36,6 @@ class QuotasController extends BaseController {
QuotasController(this._getQuotasInteractor);
void _initWorker() {
accountIdWorker = ever(mailboxDashBoardController.accountId, (accountId) {
if (accountId is AccountId && mailboxDashBoardController.sessionCurrent!= null) {
_getQuotasAction(accountId, mailboxDashBoardController.sessionCurrent!);
}
});
}
void _getQuotasAction(AccountId accountId, Session session) {
try {
requireCapability(session, accountId, [CapabilityIdentifier.jmapQuota]);
@@ -72,9 +64,9 @@ class QuotasController extends BaseController {
void _handleGetQuotasSuccess(GetQuotasSuccess success) {
try {
final quotas = success.quotas.firstWhere((e) => e.resourceType == ResourceType.octets);
usedCapacity.value = quotas.used.value;
warningLimitCapacity.value = quotas.limit.value * warningProgressConstant;
limitCapacity.value = quotas.limit.value;
usedCapacity.value = DoubleConvert.bytesToGigaBytes(quotas.used.value);
warningLimitCapacity.value = DoubleConvert.bytesToGigaBytes(quotas.limit.value * warningProgressConstant);
limitCapacity.value = DoubleConvert.bytesToGigaBytes(quotas.limit.value);
if(usedCapacity.value >= limitCapacity.value) {
quotasState.value = QuotasState.runOutOfStorage;
} else if (usedCapacity.value >= warningLimitCapacity.value) {
@@ -82,13 +74,24 @@ class QuotasController extends BaseController {
} else {
quotasState.value = QuotasState.normal;
}
enableShowQuotas.value = true;
} catch (e) {
enableShowQuotas.value = false;
quotasState.value = QuotasState.notAvailable;
logError('QuotasController::_handleGetQuotasSuccess():[NotFoundException]: $e');
}
}
void covertBytesToGB() {
}
void _initWorker() {
accountIdWorker = ever(mailboxDashBoardController.accountId, (accountId) {
if (accountId is AccountId && mailboxDashBoardController.sessionCurrent!= null) {
_getQuotasAction(accountId, mailboxDashBoardController.sessionCurrent!);
}
});
}
@override
void onInit() {
_initWorker();