LearnPAd/learnpad

View on GitHub
lp-simulation-environment/simulator/src/main/resources/static/TaskReceiver.js

Summary

Maintainability
F
3 days
Test Coverage

Function taskReceiver has a Cognitive Complexity of 71 (exceeds 5 allowed). Consider refactoring.
Open

function taskReceiver(address, user, integratedMode, sessionid, platformAddress) {
    if (typeof integratedMode == 'undefined') {
        integratedMode = false;
    }

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 taskReceiver has 202 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function taskReceiver(address, user, integratedMode, sessionid, platformAddress) {
    if (typeof integratedMode == 'undefined') {
        integratedMode = false;
    }

    Function _onmessage has 163 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        newTaskReceiver._onmessage = function(m) {
            var msg = JSON.parse(m.data);
            if(sessionid != null && sessionid != msg.sessionid) {
                // ignore message
            } else {

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

      function taskReceiver(address, user, integratedMode, sessionid, platformAddress) {

        There are no issues that match your filters.

        Category
        Status