WikiEducationFoundation/WikiEduDashboard

View on GitHub
app/assets/javascripts/utils/model_utils.js

Summary

Maintainability
A
2 hrs
Test Coverage
A
90%

Function sortByKey has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

export const sortByKey = (models, sortKey, previousKey = null, desc = false, absolute = false, refresh = false) => {
  const sameKey = sortKey === previousKey;
  let newKey;
  if (sameKey) {
    newKey = null;
Severity: Minor
Found in app/assets/javascripts/utils/model_utils.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 sortByKey has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const sortByKey = (models, sortKey, previousKey = null, desc = false, absolute = false, refresh = false) => {
  const sameKey = sortKey === previousKey;
  let newKey;
  if (sameKey) {
    newKey = null;
Severity: Minor
Found in app/assets/javascripts/utils/model_utils.js - About 1 hr to fix

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

    export const getFiltered = (models, options) => {
      const filteredModels = [];
      for (let i = 0; i < models.length; i += 1) {
        const model = models[i];
        let add = true;
    Severity: Minor
    Found in app/assets/javascripts/utils/model_utils.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

    Parsing error: Cannot find module 'babel-plugin-root-import' Require stack: - /usr/local/node_modules/@babel/core/lib/config/files/plugins.js - /usr/local/node_modules/@babel/core/lib/config/files/index.js - /usr/local/node_modules/@babel/core/lib/index.js - /usr/local/node_modules/@babel/eslint-parser/lib/worker/babel-core.cjs - /usr/local/node_modules/@babel/eslint-parser/lib/worker/handle-message.cjs - /usr/local/node_modules/@babel/eslint-parser/lib/client.cjs - /usr/local/node_modules/@babel/eslint-parser/lib/index.cjs - /usr/local/node_modules/eslint/lib/cli-engine/config-array-factory.js - /usr/src/app/lib/eslint6-patch.js - /usr/src/app/lib/eslint.js - /usr/src/app/bin/eslint.js
    Open

    import { sortBy } from 'lodash-es';

    For more information visit Source: http://eslint.org/docs/rules/

    There are no issues that match your filters.

    Category
    Status