Neovici/cosmoz-omnitable

View on GitHub
lib/cosmoz-omnitable-amount-range-input.js

Summary

Maintainability
C
1 day
Test Coverage
B
89%

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

    render() {
        const onOpenedChanged = (event) => {
            this.headerFocused = event.detail.value;
            this._onDropdownOpenedChanged(event);
        };
Severity: Major
Found in lib/cosmoz-omnitable-amount-range-input.js - About 2 hrs to fix

    File cosmoz-omnitable-amount-range-input.js has 252 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import { _ } from '@neovici/cosmoz-i18next';
    import { PolymerElement } from '@polymer/polymer';
    import { html } from 'lit-html';
    import { ifDefined } from 'lit-html/directives/if-defined.js';
    import '@neovici/cosmoz-input';
    Severity: Minor
    Found in lib/cosmoz-omnitable-amount-range-input.js - About 2 hrs to fix

      Function toAmount has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          toAmount(value, limit, limitFunc) {
              // eslint-disable-line max-statements
              if (value == null || value === '') {
                  return;
              }
      Severity: Minor
      Found in lib/cosmoz-omnitable-amount-range-input.js - About 1 hr to fix

        Function toAmount has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            toAmount(value, limit, limitFunc) {
                // eslint-disable-line max-statements
                if (value == null || value === '') {
                    return;
                }
        Severity: Minor
        Found in lib/cosmoz-omnitable-amount-range-input.js - About 35 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

        Function _valuesChanged has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            _valuesChanged(autodetect, currency, values) {
                if (!Array.isArray(values) || values.length < 1) {
                    return;
                }
                if (!autodetect && currency) {
        Severity: Minor
        Found in lib/cosmoz-omnitable-amount-range-input.js - About 35 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

        Avoid too many return statements within this function.
        Open

                    return amount;
        Severity: Major
        Found in lib/cosmoz-omnitable-amount-range-input.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return lNumber === valAmount ? amount : lAmount;
          Severity: Major
          Found in lib/cosmoz-omnitable-amount-range-input.js - About 30 mins to fix

            There are no issues that match your filters.

            Category
            Status