DeFiCh/wallet

View on GitHub
mobile-app/app/components/OceanInterface/TransactionError.tsx

Summary

Maintainability
B
6 hrs
Test Coverage

Function errorMessageMapping has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

function errorMessageMapping(err: string): ErrorMapping {
  if (err === "not enough balance after combing all prevouts") {
    return {
      code: ErrorCodes.InsufficientUTXO,
      message: "Insufficient UTXO DFI.",
Severity: Minor
Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 1 hr to fix

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

export function TransactionError({
  errMsg,
  onClose,
}: TransactionErrorProps): JSX.Element {
  const logger = useLogger();
Severity: Minor
Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 55 mins to fix

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

    return {
      code: ErrorCodes.PaybackLoanInvalidPrice,
      message: "Unable to payback loan due to invalid price.",
    };
Severity: Major
Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

        return {
          code: ErrorCodes.DustValue,
          message: "Input amount is too low. Increase the amount to continue.",
        };
    Severity: Major
    Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return {
            code: ErrorCodes.NoLiveFixedPrices,
            message: "No live fixed prices for loan token.",
          };
      Severity: Major
      Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

          return {
            code: ErrorCodes.UnknownError,
            message: getErrorMessage(err),
          };
        Severity: Major
        Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return {
                code: ErrorCodes.VaultNotEnoughCollateralization,
                message:
                  "Vault does not meet min. collateral ratio. Add collateral to proceed.",
              };
          Severity: Major
          Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                return {
                  code: ErrorCodes.CfpProposalExceedAmount,
                  message: "Requested amount is higher than available amount.",
                };
            Severity: Major
            Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                  return {
                    code: ErrorCodes.InsufficientDFIInVault,
                    message: "Insufficient DFI collateral. (≥50%)",
                  };
              Severity: Major
              Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                    return {
                      code: ErrorCodes.LackOfLiquidity,
                      message: "Insufficient liquidity.",
                    };
                Severity: Major
                Found in mobile-app/app/components/OceanInterface/TransactionError.tsx - About 30 mins to fix

                  There are no issues that match your filters.

                  Category
                  Status