Rominou34/soft-css

View on GitHub

Showing 10 of 2,566 total issues

Function Papillon has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
Open

function Papillon() {

  /*
  * An array containing the notifications ( used so they can pile up without
  * covering each other )
Severity: Minor
Found in src/js/papillon.js - About 5 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 Papillon has 97 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function Papillon() {

  /*
  * An array containing the notifications ( used so they can pile up without
  * covering each other )
Severity: Major
Found in src/js/papillon.js - About 3 hrs to fix

    Function addToolTipListeners has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var addToolTipListeners = function() {
      var toolTips = document.querySelectorAll(".soft-tooltip");
      var toolTipItems = [].slice.call(toolTips);
      toolTipItems.forEach(function (item) {
        //Event listener for hover
    Severity: Minor
    Found in src/js/dom.js - About 1 hr to fix

      Function old_notif has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        this.old_notif = function(type, msg, t) {
          var not = document.createElement("div");
          var id = randomId(8);
          not.className = "soft-notif " + type;
          not.innerHTML = msg;
      Severity: Minor
      Found in src/js/papillon.js - About 1 hr to fix

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

        window.onload = function() {
          // Add event listeners to display tooltips on hover
          addToolTipListeners();
        
          // Add event listeners to display dropdown menus on action
        Severity: Minor
        Found in src/js/dom.js - About 1 hr to fix

          Function animateStep has 8 arguments (exceeds 4 allowed). Consider refactoring.
          Open

            this.animateStep = function(timestamp, start, el, prop, st, en, un, dur) {
          Severity: Major
          Found in src/js/papillon.js - About 1 hr to fix

            Function softRequestAnimationFrame has 8 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                window.softRequestAnimationFrame = function(callback, startTime, element, property, start, end, unit, duration) {
            Severity: Major
            Found in src/js/misc.js - About 1 hr to fix

              Avoid deeply nested control flow statements.
              Open

                          if(notifs[j][1]===i) {
                            b=true;
                          }
              Severity: Major
              Found in src/js/papillon.js - About 45 mins to fix

                Function animate has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                  this.animate = function(el, prop, st, en, un, dura) {
                Severity: Minor
                Found in src/js/papillon.js - About 45 mins to fix

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

                  var inputValidate = function(inp) {
                    if(inp.checkValidity()) {
                      if(inp.classList.contains("invalid")) {
                        inp.classList.remove("invalid");
                      }
                  Severity: Minor
                  Found in src/js/dom.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

                  Severity
                  Category
                  Status
                  Source
                  Language