Skip to content

Commit

Permalink
Merge pull request #577 from ethersphere/fix-calc
Browse files Browse the repository at this point in the history
Temporarily remove data value results
  • Loading branch information
NoahMaizels authored Mar 29, 2024
2 parents e779139 + 48b74e6 commit 971018f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/RedundancyCalc.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,34 +39,34 @@ export default function UploadCostCalc() {
const calculateCost = () => {
setErrorMessage("");
setResult([]);

if (!redundancy) {
setErrorMessage("Please select a redundancy level.");
return;
}

let totalChunks, sizeInKb, sizeInGb, parityDataInGb;
if (unit === "kb") {
const kbValue = parseFloat(dataSize);
if (isNaN(kbValue) || kbValue < 1) { // Validate for KB
setErrorMessage("Please input a KB value of at least 1.");
if (isNaN(kbValue) || kbValue <= 0) {
setErrorMessage("Please input a valid KB value above 0.");
return;
}
sizeInKb = kbValue;
totalChunks = Math.ceil((kbValue * 1024) / (2 ** 12));
} else if (unit === "gb") {
const gbValue = parseFloat(dataSize);
if (isNaN(gbValue) || gbValue < 0.01) { // Validate for GB
setErrorMessage("Please input a GB value of at least 0.01.");
if (isNaN(gbValue) || gbValue <= 0) {
setErrorMessage("Please input a valid GB value above 0.");
return;
}
sizeInGb = gbValue;
sizeInKb = gbValue * 1024 * 1024; // Convert GB to KB
totalChunks = Math.ceil((sizeInKb * 1024) / (2 ** 12));
} else {
const chunksValue = parseFloat(dataSize);
if (isNaN(chunksValue) || chunksValue < 1) { // Validate for chunks
setErrorMessage("Please input a chunk amount of at least 1.");
if (isNaN(chunksValue) || chunksValue <= 0) {
setErrorMessage("Please input a valid chunk amount above 0.");
return;
}
totalChunks = Math.ceil(chunksValue);
Expand Down Expand Up @@ -94,8 +94,8 @@ export default function UploadCostCalc() {
const formatNumber = (num) => new Intl.NumberFormat('en-US').format(num);

const resultsArray = [
{ name: "Source data size", value: unit === "gb" ? `${formatNumber(sizeInGb.toFixed(4))} GB` : `${formatNumber(sizeInKb.toFixed(4))} KB` },
{ name: "Parity data size", value: unit === "gb" ? `${formatNumber(parityDataInGb.toFixed(4))} GB` : `${formatNumber(parityDataInKb.toFixed(4))} KB` },
// { name: "Source data size", value: unit === "gb" ? `${formatNumber(sizeInGb.toFixed(2))} GB` : `${formatNumber(sizeInKb.toFixed(0))} KB` },
// { name: "Parity data size", value: unit === "gb" ? `${formatNumber(parityDataInGb.toFixed(2))} GB` : `${formatNumber(parityDataInKb.toFixed(0))} KB` },
{ name: "Source data in chunks", value: formatNumber(totalChunks) },
{ name: "Additional parity chunks", value: formatNumber(totalParities) },
{ name: "Percent cost increase", value: `${percentDifference.toFixed(2)}%` },
Expand Down

0 comments on commit 971018f

Please sign in to comment.