pankod/refine

View on GitHub
packages/kbar/src/hooks/useRefineKbar/index.tsx

Summary

Maintainability
F
3 days
Test Coverage

Function useRefineKbar has a Cognitive Complexity of 117 (exceeds 5 allowed). Consider refactoring.
Open

export const useRefineKbar = (): void => {
  const t = useTranslate();
  const {
    resource: resourceFromParams,
    resources,
Severity: Minor
Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 2 days 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 useRefineKbar has 290 lines of code (exceeds 25 allowed). Consider refactoring.
Invalid

export const useRefineKbar = (): void => {
  const t = useTranslate();
  const {
    resource: resourceFromParams,
    resources,
Severity: Major
Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 1 day to fix

    Function createActionWithResource has 234 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      const createActionWithResource = async (resource: IResourceItem) => {
        const {
          name,
          label: deprecatedLabel,
          list,
    Severity: Major
    Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 1 day to fix

      Avoid deeply nested control flow statements.
      Open

                        if (routerType === "legacy") {
                          push(p);
                        } else {
                          go({ to: p });
                        }
      Severity: Major
      Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                          if (routerType === "legacy") {
                            push(p);
                          } else {
                            go({ to: p });
                          }
        Severity: Major
        Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if (routerType === "legacy") {
                                    push(p);
                                  } else {
                                    go({ to: p });
                                  }
          Severity: Major
          Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 45 mins to fix

            Consider simplifying this complex logical expression.
            Open

                if (
                  list &&
                  ((resourceFromParams !== undefined &&
                    resourceFromParams?.name !== name) ||
                    (actionFromParams !== undefined && resourceFromParams?.name === name))
            Severity: Major
            Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 40 mins to fix

              Consider simplifying this complex logical expression.
              Open

                  if (
                    (canCreate || !!create) &&
                    create &&
                    (RefineKbarActionType.Create !== actionFromParams ||
                      resourceFromParams?.name !== name)
              Severity: Major
              Found in packages/kbar/src/hooks/useRefineKbar/index.tsx - About 40 mins to fix

                There are no issues that match your filters.

                Category
                Status