WikiEducationFoundation/WikiEduDashboard

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

Summary

Maintainability
B
5 hrs
Test Coverage
B
87%

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

const fetchAll = async (API_URL, params, continue_str) => {
  const allData = [];
  let continueToken;
  let hasMore = true;
  while (hasMore) {
Severity: Minor
Found in app/assets/javascripts/utils/mediawiki_revisions_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 fetchRevisionsFromUsers has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

export const fetchRevisionsFromUsers = async (course, users, days, last_date, filter) => {
  const usernames = users.map(user => user.username);

  let revisions = [];
  const wikiPromises = [];
Severity: Minor
Found in app/assets/javascripts/utils/mediawiki_revisions_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 fetchAllRevisions has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const fetchAllRevisions = async (API_URL, days, usernames, wiki, course_start, last_date) => {
  let ucend;
  let exitNext = false;
  if (isBefore(subDays(toDate(last_date), days), toDate(course_start))) {
    ucend = formatISO(toDate(course_start));
Severity: Minor
Found in app/assets/javascripts/utils/mediawiki_revisions_utils.js - About 1 hr to fix

    Function fetchAll has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const fetchAll = async (API_URL, params, continue_str) => {
      const allData = [];
      let continueToken;
      let hasMore = true;
      while (hasMore) {
    Severity: Minor
    Found in app/assets/javascripts/utils/mediawiki_revisions_utils.js - About 1 hr to fix

      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

      /* eslint-disable no-restricted-syntax */

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

      There are no issues that match your filters.

      Category
      Status