mobile-app/app/components/OceanInterface/TransactionError.tsx
Function errorMessageMapping
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
Open
function errorMessageMapping(err: string): ErrorMapping {
if (err === "not enough balance after combing all prevouts") {
return {
code: ErrorCodes.InsufficientUTXO,
message: "Insufficient UTXO DFI.",
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function TransactionError
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
export function TransactionError({
errMsg,
onClose,
}: TransactionErrorProps): JSX.Element {
const logger = useLogger();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.InsufficientDFIInVault,
message: "Insufficient DFI collateral. (≥50%)",
};
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.LackOfLiquidity,
message: "Insufficient liquidity.",
};
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.DustValue,
message: "Input amount is too low. Increase the amount to continue.",
};
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.UnknownError,
message: getErrorMessage(err),
};
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.NoLiveFixedPrices,
message: "No live fixed prices for loan token.",
};
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.VaultNotEnoughCollateralization,
message:
"Vault does not meet min. collateral ratio. Add collateral to proceed.",
};
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.CfpProposalExceedAmount,
message: "Requested amount is higher than available amount.",
};
Avoid too many return
statements within this function. Open
Open
return {
code: ErrorCodes.PaybackLoanInvalidPrice,
message: "Unable to payback loan due to invalid price.",
};