RubyLouvre/anu

View on GitHub
packages/router/index.jsx

Summary

Maintainability
D
1 day
Test Coverage

File index.jsx has 486 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/* eslint-disable jsx-a11y/anchor-has-content */
import { miniCreateClass, getWindow } from "react-core/util";

import {
    startsWith,
Severity: Minor
Found in packages/router/index.jsx - About 7 hrs to fix

    Function render has 47 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            render() {
                let {
                    location,
                    navigate,
                    basepath,
    Severity: Minor
    Found in packages/router/index.jsx - About 1 hr to fix

      Function createRoute has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      let createRoute = basepath => element => {
          invariant(
              element.props.path || element.props.default || element.type === Redirect,
              `<Router>: Children of <Router> must have a "path" or "default" prop, or be a "<Redirect>". 
               None found on element type "${element.type}"`
      Severity: Minor
      Found in packages/router/index.jsx - About 1 hr to fix

        Function createRoute has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        let createRoute = basepath => element => {
            invariant(
                element.props.path || element.props.default || element.type === Redirect,
                `<Router>: Children of <Router> must have a "path" or "default" prop, or be a "<Redirect>". 
                 None found on element type "${element.type}"`
        Severity: Minor
        Found in packages/router/index.jsx - 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 render has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

                render() {
                    let {
                        location,
                        navigate,
                        basepath,
        Severity: Minor
        Found in packages/router/index.jsx - 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 focus has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

                focus() {
                    if (getWindow().process) {
                        // getting cannot read property focus of null in the tests
                        // and that bit of global `initialRender` state causes problems
                        // should probably figure it out!
        Severity: Minor
        Found in packages/router/index.jsx - 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

        There are no issues that match your filters.

        Category
        Status