mambax7/extcal

View on GitHub

Showing 691 of 1,163 total issues

Avoid deeply nested control flow statements.
Open

                        if (!groups[g]) groups[g] = [];
Severity: Major
Found in assets/js/highslide-with-gallery.js - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                            for (var dim in hs.oPos) for (var i = 0; i < 5; i++) {
                                p = this[dim];
                                if (pos.match(hs.oPos[dim][i])) {
                                    p.pos = this.last[dim].pos
                                        + (this.last[dim].p1 - p.p1)
    Severity: Major
    Found in assets/js/highslide-with-gallery.js - About 45 mins to fix

      Function addEventListener has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

              addEventListener: function (el, event, func) {
                  if (el == document && event == 'ready') {
                      hs.push(hs.onReady, func);
                  }
                  try {
      Severity: Minor
      Found in assets/js/highslide.js - About 45 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

      Function preloadImages has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

              preloadImages: function (number) {
                  if (number && typeof number != 'object') hs.numberOfImagesToPreload = number;
      
                  var arr = hs.getAnchors();
                  for (var i = 0; i < arr.images.length && i < hs.numberOfImagesToPreload; i++) {
      Severity: Minor
      Found in assets/js/highslide-with-gallery.js - About 45 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

      Function showLoading has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

              showLoading: function () {
                  if (this.onLoadStarted || this.loading) return;
      
                  this.loading = hs.loading;
                  var exp = this;
      Severity: Minor
      Found in assets/js/highslide-with-gallery.js - About 45 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

      Function reuseOverlay has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

              reuseOverlay: function (o, el) {
                  if (!this.last) return false;
                  for (var i = 0; i < this.last.overlays.length; i++) {
                      var oDiv = hs.$('hsId' + this.last.overlays[i]);
                      if (oDiv && oDiv.hsId == o.hsId) {
      Severity: Minor
      Found in assets/js/highslide-with-gallery.js - About 45 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

      Avoid deeply nested control flow statements.
      Open

                          if (!moveOnly && hasMovedMin && allowReduce) {
                              p.size = Math.min(p.size, p.get(dim == 'y' ? 'fitsize' : 'maxsize'));
                          } else if (p.get('wsize') < p.get('fitsize')) {
                              p.pos = p.scroll + p.clientSize - p.marginMax - p.get('wsize');
                          } else { // image larger than viewport
      Severity: Major
      Found in assets/js/highslide-with-gallery.js - About 45 mins to fix

        Function preloadImages has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

                preloadImages: function (number) {
                    if (number && typeof number != 'object') hs.numberOfImagesToPreload = number;
        
                    var arr = hs.getAnchors();
                    for (var i = 0; i < arr.images.length && i < hs.numberOfImagesToPreload; i++) {
        Severity: Minor
        Found in assets/js/highslide.js - About 45 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

        Function doFullExpand has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

                doFullExpand: function () {
                    try {
                        if (this.fullExpandLabel) hs.discardElement(this.fullExpandLabel);
        
                        this.focus();
        Severity: Minor
        Found in assets/js/highslide-with-gallery.js - About 45 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

        Avoid deeply nested control flow statements.
        Open

                        } else if (/highslide-image-blur/.test(el.className)) {
                            el.style.cursor = hs.styleRestoreCursor;
                        }
        Severity: Major
        Found in assets/js/highslide-with-gallery.js - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if (!groups[g]) groups[g] = [];
          Severity: Major
          Found in assets/js/highslide.js - About 45 mins to fix

            Function updateEventFile has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                public function updateEventFile($eventId)
                {
                    $criteria = new \CriteriaCompo();
                    $criteria->add(new \Criteria('file_approved', 1));
                    $criteria->add(new \Criteria('event_id', $eventId));
            Severity: Minor
            Found in class/FileHandler.php - About 45 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

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

            function spinSetValue(prefixe, prefixe2, suffixe, newValue, delai, newImg) {
            Severity: Minor
            Found in class/Form/Spin/js/spin.js - About 45 mins to fix

              Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  public function __construct($y, $m, $d, $h, $i, $s)
              Severity: Minor
              Found in class/pear/Calendar/Second.php - About 45 mins to fix

                Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    public function __construct($y = 2000, $m = 1, $d = 1, $h = 0, $i = 0, $s = 0)
                Severity: Minor
                Found in class/pear/Calendar/Calendar.php - About 45 mins to fix

                  Function agenda_getCanevas has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function agenda_getCanevas($ts, $hStart, $hEnd, $mPlage = 15, $nbJours = 1, $formatDate = '', $formatJour = 'H:i')
                  {
                      $helper = Helper::getInstance();
                      $jour   = date('d', $ts);
                      $mois   = date('m', $ts);
                  Severity: Minor
                  Found in include/agenda_fnc.php - About 45 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

                  Function render has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function render()
                      {
                          $ret = '<table><tr>';
                          $i   = 0;
                          if (\count($this->getOptions()) > 1 && '[]' !== mb_substr($this->getName(), -2, 2)) {
                  Severity: Minor
                  Found in class/Form/FormRRuleCheckBox.php - About 45 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

                  Method setFragments has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      public function setFragments($y, $m = null, $d = null, $h = null, $i = null, $s = null)
                  Severity: Minor
                  Found in class/pear/Calendar/Decorator/Uri.php - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                        if (!hasDragged && !hs.hasFocused && !/(move|resize)/.test(hs.dragArgs.type)) {
                                            exp.close();
                                        }
                                        else if (hasDragged || (!hasDragged && hs.hasHtmlExpanders)) {
                                            hs.dragArgs.exp.doShowHide('hidden');
                    Severity: Major
                    Found in assets/js/highslide.js - About 45 mins to fix

                      Method setOrder has 6 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          function setOrder($bid, $title, $weight, $visible, $side, $bcachetime)
                      Severity: Minor
                      Found in admin/blocksadmin.php - About 45 mins to fix
                        Severity
                        Category
                        Status
                        Source
                        Language