react18-tools/nextjs-themes-ultra

View on GitHub

Showing 5 of 17 total issues

Function getNestedRouteActions has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

function getNestedRouteActions(data) {
  const { isClient } = data;
  const name = data.name.replace(/\/+/g, "/").replace(/\/$/, "").trim();
  const root = `${data.pkgPath}/src/${isClient ? "client/" : "server/"}`;
  const nestedRouteActions = [];
Severity: Minor
Found in scripts/rc.js - 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 getNestedRouteActions has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function getNestedRouteActions(data) {
  const { isClient } = data;
  const name = data.name.replace(/\/+/g, "/").replace(/\/$/, "").trim();
  const root = `${data.pkgPath}/src/${isClient ? "client/" : "server/"}`;
  const nestedRouteActions = [];
Severity: Minor
Found in scripts/rc.js - About 1 hr to fix

    Function ThemeSwitch has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export default function ThemeSwitch() {
      const { colorSchemePreference, setColorSchemePreference } = useTheme();
      const toggle = useCallback(() => {
        switch (colorSchemePreference) {
          case "dark":
    Severity: Minor
    Found in packages/shared/src/client/header/theme-switch.tsx - About 1 hr to fix

      Function getActions has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function getActions(data) {
        const actions = [];
        if (!fs.existsSync(path.resolve(__dir, `${data.pkgPath}/src/hooks`, "index.ts"))) {
          actions.push({
            type: "add",
      Severity: Minor
      Found in scripts/hook.js - About 1 hr to fix

        Function ColorSwitch has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        export function ColorSwitch({ targetId, skipSystem, size, ...props }: ColorSwitchProps) {
          const {
            setColorSchemePreference,
            resolvedColorScheme: rcs,
            colorSchemePreference: csp,
        Severity: Minor
        Found in lib/src/client/color-switch/color-switch.tsx - About 25 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