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,
Function render
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
render() {
let {
location,
navigate,
basepath,
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}"`
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}"`
- Read upRead up
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,
- Read upRead up
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!
- Read upRead up
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"