DocSpace-client/packages/common/store/PaymentQuotasStore.js

77 lines
1.7 KiB
JavaScript

import { makeAutoObservable, runInAction } from "mobx";
import api from "../api";
const MANAGER = "manager";
const TOTAL_SIZE = "total_size";
class PaymentQuotasStore {
portalPaymentQuotas = {};
portalPaymentQuotasFeatures = [];
isLoaded = false;
constructor() {
makeAutoObservable(this);
}
setIsLoaded = (isLoaded) => {
this.isLoaded = isLoaded;
};
get planCost() {
if (this.portalPaymentQuotas.price) return this.portalPaymentQuotas.price;
else return { value: 0, currencySymbol: "" };
}
get stepAddingQuotaManagers() {
const result = this.portalPaymentQuotasFeatures.find(
(obj) => obj.id === MANAGER
);
return result.value;
}
get stepAddingQuotaTotalSize() {
const result = this.portalPaymentQuotasFeatures.find(
(obj) => obj.id === TOTAL_SIZE
);
return result.value;
}
get tariffTitle() {
return this.portalPaymentQuotas?.title;
}
get usedTotalStorageSizeTitle() {
const result = this.portalPaymentQuotasFeatures.find(
(obj) => obj.id === TOTAL_SIZE
);
return result.priceTitle;
}
get addedManagersCountTitle() {
const result = this.portalPaymentQuotasFeatures.find(
(obj) => obj.id === MANAGER
);
return result.priceTitle;
}
get tariffPlanTitle() {
return this.portalPaymentQuotas.title;
}
setPortalPaymentQuotas = async (t) => {
if (this.isLoaded) return;
const res = await api.portal.getPortalPaymentQuotas();
if (!res) return;
runInAction(() => {
this.portalPaymentQuotas = res[0];
this.portalPaymentQuotasFeatures = res[0].features;
});
this.setIsLoaded(true);
};
}
export default PaymentQuotasStore;