Sieabah/feathersjs-couchbase

View on GitHub
lib/querybuilder/queryinterpreter.js

Summary

Maintainability
A
0 mins
Test Coverage

Function determineWhereClause has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
Wontfix

function determineWhereClause (field, segments) {
  const whereDirectives = ['in', 'nin', 'lt', 'lte', 'gt', 'gte', 'ne'];
  const components = [];

  if (segments != null && (Array.isArray(segments) || typeof segments === 'object')) {
Severity: Minor
Found in lib/querybuilder/queryinterpreter.js - About 4 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

Function interpretQuery has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
Wontfix

function interpretQuery (query) {
  const components = [];
  const where = [];

  // Evaluate query per-key
Severity: Minor
Found in lib/querybuilder/queryinterpreter.js - About 2 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

Function or has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Wontfix

  or: (values) => {
    const components = [];
    for (let component of values) {
      for (let field in component) {
        /* istanbul ignore next */
Severity: Minor
Found in lib/querybuilder/queryinterpreter.js - 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 determineWhereClause has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Wontfix

function determineWhereClause (field, segments) {
  const whereDirectives = ['in', 'nin', 'lt', 'lte', 'gt', 'gte', 'ne'];
  const components = [];

  if (segments != null && (Array.isArray(segments) || typeof segments === 'object')) {
Severity: Minor
Found in lib/querybuilder/queryinterpreter.js - About 1 hr to fix

    Function interpretQuery has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Wontfix

    function interpretQuery (query) {
      const components = [];
      const where = [];
    
      // Evaluate query per-key
    Severity: Minor
    Found in lib/querybuilder/queryinterpreter.js - About 1 hr to fix

      Avoid deeply nested control flow statements.
      Wontfix

                for (const component of subcomponents) {
                  components.push(component);
                }
      Severity: Major
      Found in lib/querybuilder/queryinterpreter.js - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Wontfix

                  if (!Array.isArray(subcomponents)) {
                    subcomponents = [subcomponents];
                  }
        Severity: Major
        Found in lib/querybuilder/queryinterpreter.js - About 45 mins to fix

          There are no issues that match your filters.

          Category
          Status