konsultaner/jsonOdm

View on GitHub

Showing 175 of 272 total issues

Avoid deeply nested control flow statements.
Open

                    if (!inside) {
                        break;
                    }
Severity: Major
Found in src/geo.js - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                                if (foreignKeyValue == childCollection[j][privateKeyField]) {
                                    foreignModel = childCollection[j];
                                    break;
                                }
    Severity: Major
    Found in src/collection.js - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                          if (jsonOdm.Geo.edgeIntersectsPolygon([multiLineString.coordinates[j][k], multiLineString.coordinates[j][k + 1]], geometry.coordinates[i][0])) {
                              return true;
                          }
      Severity: Major
      Found in src/geo.js - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                    for (var j = 0; j < childCollection.length; j++) {
                                        if (foreignKeyMap[i] == childCollection[j][privateKeyField]) {
                                            foreignModel = childCollection[j];
                                            break;
                                        }
        Severity: Major
        Found in src/collection.js - About 45 mins to fix

          Function edgeIntersectsPolygon has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

          jsonOdm.Geo.edgeIntersectsPolygon = function (edge, polygon) {
              if (!(jsonOdm.util.isArray(edge) && edge.length === 2 && jsonOdm.util.isArray(polygon) && polygon.length >= 2)) {
                  return false;
              }
          
          
          Severity: Minor
          Found in src/geo.js - 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 (jsonOdm.Geo.edgeIntersectsLineString([multiLineString.coordinates[j][k], multiLineString.coordinates[j][k + 1]], geometry.coordinates[i])) {
                                  return true;
                              }
          Severity: Major
          Found in src/geo.js - About 45 mins to fix

            Consider simplifying this complex logical expression.
            Open

                    if (
                        polygon[i][0] < point[0] && polygon[i + 1][0] < point[0] || // the vector is only in section 1 or 4 of the coordinate system normalized to the point, so it does not intersect the positive x-axis
                        polygon[i][1] < point[1] && polygon[i + 1][1] < point[1] || // the vector is only in section 1 or 2 of the coordinate system normalized to the point, so it does not intersect the positive x-axis
                        polygon[i][1] > point[1] && polygon[i + 1][1] > point[1]    // the vector is only in section 3 or 4 of the coordinate system normalized to the point, so it does not intersect the positive x-axis
                    ) {
            Severity: Major
            Found in src/geo.js - About 40 mins to fix

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

              jsonOdm.Query.prototype.$modifyField = function (modifier) {
                  var $modifier = (function (currentModifier, lastCommand) {
                      /**
                       * @param {*} The collection to go down
                       * @return {Query|boolean} The query object with the sub collection or false if querying was impossible
              Severity: Minor
              Found in src/query.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 edgeWithinPolygon has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

              jsonOdm.Geo.edgeWithinPolygon = function (edge, polygon) {
                  if (!(jsonOdm.util.isArray(edge) && edge.length === 2 && jsonOdm.util.isArray(polygon) && polygon.length >= 2)) {
                      return false;
                  }
              
              
              Severity: Minor
              Found in src/geo.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 true;
              Severity: Major
              Found in src/geo.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                        return true;
                Severity: Major
                Found in src/geo.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                          return true;
                  Severity: Major
                  Found in src/geo.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                    return false;
                    Severity: Major
                    Found in src/geo.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                  return true;
                      Severity: Major
                      Found in src/geo.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                            return true;
                        Severity: Major
                        Found in src/geo.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                  return false;
                          Severity: Major
                          Found in src/geo.js - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                    return true;
                            Severity: Major
                            Found in src/geo.js - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                                  return true;
                              Severity: Major
                              Found in src/geo.js - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                                return true;
                                Severity: Major
                                Found in src/geo.js - About 30 mins to fix

                                  Avoid too many return statements within this function.
                                  Open

                                              return false;
                                  Severity: Major
                                  Found in src/geo.js - About 30 mins to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language