Skip to content
Snippets Groups Projects

Issue #415 - Refactor Events to prevent continous state changes causing slowness

Merged Issue #415 - Refactor Events to prevent continous state changes causing slowness
All threads resolved!
Merged Dima Rifai requested to merge delrifai/#415_handle_slowness_search_range into develop
All threads resolved!
1 file
+ 6
6
Compare changes
  • Side-by-side
  • Inline
@@ -188,11 +188,11 @@ const SearchRanges: React.FC<SearchRangesProps> = ({
data-testid="headblock-number"
type="text"
defaultValue={toBlock || ""}
onChange={(e) => handleNumericInput(e)} // Keep cleaning logic here on change
onChange={(e) => handleNumericInput(e)}
placeholder={"To"}
onBlur={(e: React.FocusEvent<HTMLInputElement>) => {
const value = e.target.value;
const numericValue = value ? Number(value) : undefined; // Default to NaN if empty string
const numericValue = value ? Number(value) : undefined;
if (
numericValue &&
fromBlock &&
@@ -201,13 +201,13 @@ const SearchRanges: React.FC<SearchRangesProps> = ({
numericValue < Number(fromBlock)
) {
setBlockRangeError("To block must be greater than From block");
e.target.value = ""; // Clear the 'toBlock' field if validation fails
e.target.value = "";
} else if (numericValue !=undefined && numericValue <= 0 && fromBlock) {
setBlockRangeError("To block must be greater than From block");
e.target.value = ""; // Clear the 'toBlock' field if validation fails
e.target.value = "";
} else {
setToBlock(numericValue); // Set the state only when validation passes
setBlockRangeError(null); // Clear error if valid
setToBlock(numericValue);
setBlockRangeError(null);
}
}
}
Loading