nexxtway/react-rainbow

View on GitHub
src/components/MultiSelect/index.js

Summary

Maintainability
F
3 days
Test Coverage

Function MultiSelect has 254 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const MultiSelect = React.forwardRef((props, ref) => {
    const {
        id,
        className,
        style,
Severity: Major
Found in src/components/MultiSelect/index.js - About 1 day to fix

    Function MultiSelect has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
    Open

    const MultiSelect = React.forwardRef((props, ref) => {
        const {
            id,
            className,
            style,
    Severity: Minor
    Found in src/components/MultiSelect/index.js - About 5 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

    File index.js has 343 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /* eslint-disable react/no-unused-prop-types */
    import React, { useState, useRef, useImperativeHandle } from 'react';
    import PropTypes from 'prop-types';
    import { useOutsideClick } from '@rainbow-modules/hooks';
    import Label from '../Input/label';
    Severity: Minor
    Found in src/components/MultiSelect/index.js - About 4 hrs to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          const {
              id,
              className,
              style,
              label,
      Severity: Major
      Found in src/components/MultiSelect/index.js and 1 other location - About 5 hrs to fix
      src/components/TimePicker/index.js on lines 19..46

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 142.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 16 locations. Consider refactoring.
      Open

          useImperativeHandle(ref, () => ({
              focus: () => {
                  triggerRef.current.focus();
              },
              click: () => {
      Severity: Major
      Found in src/components/MultiSelect/index.js and 15 other locations - About 2 hrs to fix
      src/components/ColorPicker/commons/rgba/index.js on lines 20..30
      src/components/ColorPicker/variants/colorsFixed.js on lines 7..17
      src/components/ColorPicker/variants/default.js on lines 18..28
      src/components/PrimitiveMenu/index.js on lines 49..59
      src/components/CodeInput/index.js on lines 43..53
      src/components/CounterInput/index.js on lines 62..72
      src/components/CurrencyInput/index.js on lines 77..87
      src/components/DatePicker/index.js on lines 62..72
      src/components/DateTimePicker/index.js on lines 56..66
      src/components/FileSelector/index.js on lines 60..70
      src/components/PercentInput/index.js on lines 73..83
      src/components/PhoneInput/index.js on lines 69..79
      src/components/StrongPasswordInput/index.js on lines 58..68
      src/components/TimePicker/index.js on lines 51..61
      src/components/WeekDayPicker/index.js on lines 44..54

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 84.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          value: PropTypes.arrayOf(
              PropTypes.shape({
                  name: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
                  label: PropTypes.string,
                  value: PropTypes.any,
      Severity: Major
      Found in src/components/MultiSelect/index.js and 1 other location - About 1 hr to fix
      src/components/RadioButtonGroup/index.js on lines 190..196

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 66.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

                      <RenderIf isTrue={shouldRenderCount}>
                          <StyledCountText readOnly={readOnly} size={size}>
                              ({selectedCount})
                          </StyledCountText>
                      </RenderIf>
      Severity: Minor
      Found in src/components/MultiSelect/index.js and 1 other location - About 45 mins to fix
      src/components/ServerApplication/index.js on lines 27..31

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 50.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      There are no issues that match your filters.

      Category
      Status