UnlyEd/next-right-now-admin

View on GitHub

Showing 4 of 47 total issues

Function getValueFallback has a Cognitive Complexity of 25 (exceeds 10 allowed). Consider refactoring.
Open

export const getValueFallback = (fallbacks: Array<FallbackConfig>, defaultValue: null | any = null, missingPropStrategy: LOGGING_STRATEGY = STRATEGY_LOG_ERROR): any => {
  let value = defaultValue;
  let foundFallback;

  if (isArray(fallbacks)) {
Severity: Minor
Found in src/utils/record.ts - About 2 hrs 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

Consider simplifying this complex logical expression.
Open

  if ((value === NOT_FOUND || value === '' || value === '<p></p>' || (typeof value === 'object' && isEmpty(value))) && value !== 0 && value !== false) {
    return false;
  } else {
    return !!value;
  }
Severity: Major
Found in src/utils/record.ts - About 1 hr to fix

    Avoid deeply nested control flow statements.
    Open

              if (transform) {
                value = transform(getValue(record, key, defaultValue), { fallbacks, record, key, defaultValue });
              } else {
                value = getValue(record, key, defaultValue);
              }
    Severity: Major
    Found in src/utils/record.ts - About 45 mins to fix

      Function render has a Cognitive Complexity of 12 (exceeds 10 allowed). Consider refactoring.
      Open

        render(): JSX.Element {
          const {
            Component,
            pageProps, // Type of AppPageProps
            router,
      Severity: Minor
      Found in src/pages/_app.tsx - About 35 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

      Severity
      Category
      Status
      Source
      Language