cibernox/ember-power-select

View on GitHub

Showing 36 of 86 total issues

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

export function countOptions(collection: any): number {
  let counter = 0;
  (function walk(collection): void {
    if (!collection) {
      return;
Severity: Minor
Found in ember-power-select/src/utils/group-utils.ts - 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 exports has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function (environment) {
  const ENV = {
    modulePrefix: 'docs',
    environment,
    rootURL: '/',
Severity: Minor
Found in docs/config/environment.js - About 1 hr to fix

    Function exports has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    module.exports = function (environment) {
      const ENV = {
        modulePrefix: 'test-app',
        environment,
        rootURL: '/',
    Severity: Minor
    Found in test-app/config/environment.js - About 1 hr to fix

      Function handleKeydown has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

        @action
        handleKeydown(select: Select, e: KeyboardEvent): false | void {
          if (this.args.onKeydown && this.args.onKeydown(select, e) === false) {
            e.stopPropagation();
            return false;
      Severity: Minor
      Found in ember-power-select/src/components/power-select-multiple.ts - 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 walk has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        (function walk(options: any, ancestorIsDisabled: boolean): any {
          const length = options.length;
      
          for (let i = 0; i < length; i++) {
            const entry = options.objectAt ? options.objectAt(i) : options[i];
      Severity: Minor
      Found in ember-power-select/src/utils/group-utils.ts - About 1 hr to fix

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

            (function walk(
              collection,
              ancestorIsDisabled,
            ): { disabled: boolean; option: any } | void {
              if (!collection || index < 0) {
        Severity: Minor
        Found in ember-power-select/src/utils/group-utils.ts - About 1 hr to fix

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

          export async function getDropdownItems(cssPathOrTrigger: string | HTMLElement) {
            let trigger: HTMLElement | null = null;
          
            if (cssPathOrTrigger instanceof HTMLElement) {
              if (cssPathOrTrigger.classList.contains('ember-power-select-trigger')) {
          Severity: Minor
          Found in ember-power-select/src/test-support.ts - About 1 hr to fix

            Function emberPowerSelectIsEqual has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

            export function emberPowerSelectIsEqual(
              [option, selected]: [any, any] /* , hash*/,
            ): boolean {
              if (selected === undefined || selected === null) {
                return false;
            Severity: Minor
            Found in ember-power-select/src/helpers/ember-power-select-is-equal.ts - About 55 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 getDropdownItems has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            export async function getDropdownItems(cssPathOrTrigger: string | HTMLElement) {
              let trigger: HTMLElement | null = null;
            
              if (cssPathOrTrigger instanceof HTMLElement) {
                if (cssPathOrTrigger.classList.contains('ember-power-select-trigger')) {
            Severity: Minor
            Found in ember-power-select/src/test-support.ts - About 45 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 deeply nested control flow statements.
            Open

                      if (counter < offset) {
                        if (!foundBeforeOffset) {
                          foundBeforeOffset = entry;
                        }
                      } else {
            Severity: Major
            Found in ember-power-select/src/utils/group-utils.ts - About 45 mins to fix

              Function findOptionWithOffset has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                options: any,
                text: string,
                matcher: MatcherFn,
                offset: number,
                skipDisabled = false,
              Severity: Minor
              Found in ember-power-select/src/utils/group-utils.ts - About 35 mins to fix

                Avoid too many return statements within this function.
                Open

                        if (optionIndex === null) return;
                Severity: Major
                Found in ember-power-select/src/components/power-select/options.ts - About 30 mins to fix

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

                    get currentSection() {
                      let currentRouteName = this.router.currentRouteName;
                      for (let i = 0; i < groupedSections.length; i++) {
                        let group = groupedSections[i];
                        for (let j = 0; j < group.options.length; j++) {
                  Severity: Minor
                  Found in docs/app/controllers/public-pages/docs.js - 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

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

                    _hasMoved(endEvent: TouchEvent): boolean {
                      const moveEvent = this.touchMoveEvent;
                      if (!moveEvent) {
                        return false;
                      }
                  Severity: Minor
                  Found in ember-power-select/src/components/power-select/options.ts - 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

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

                    get currentSection() {
                      let currentRouteName = this.router.currentRouteName;
                      for (let i = 0; i < groupedSections.length; i++) {
                        let group = groupedSections[i];
                        for (let j = 0; j < group.options.length; j++) {
                  Severity: Minor
                  Found in docs/app/controllers/public-pages/cookbook.js - 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

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

                    defaultBuildSelection(option: any, select: Select) {
                      const newSelection = Array.isArray(select.selected)
                        ? select.selected.slice(0)
                        : [];
                      let idx = -1;
                  Severity: Minor
                  Found in ember-power-select/src/components/power-select-multiple.ts - 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