camman3d/jerboa.js

View on GitHub

Showing 29 of 29 total issues

Function createInfoBox has 103 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function createInfoBox(spot, payload) {
    function changeColor(classList, currentClassName, newClassName) {
        if (classList.contains(currentClassName)) {classList.remove(currentClassName)};
        if (!classList.contains(newClassName)) {classList.add(newClassName)};
    }
Severity: Major
Found in src/html-manip.js - About 4 hrs to fix

    File html-manip.js has 287 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import { getGlobalOffset } from './positioning';
    import { emit } from './events';
    import state from './state';
    import { isSafari } from './utils';
    /*
    Severity: Minor
    Found in src/html-manip.js - About 2 hrs to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          statusSelect.addEventListener('change', (e) => {
              payload.status = e.target.value;
              changeColor(spot.classList, `status-${currentStatus}`, `status-${payload.status}`)
              currentStatus = payload.status;
              emit('changeStatus', payload);
      Severity: Major
      Found in src/html-manip.js and 1 other location - About 2 hrs to fix
      src/html-manip.js on lines 409..414

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 90.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          ownerSelect.addEventListener('change', (e) => {
              payload.assigneeRole = e.target.value;
              changeColor(spot.classList, `owner-${currentAssigneeRole}`, `owner-${payload.assigneeRole}`)
              currentAssigneeRole = payload.assigneeRole;
              emit('changeOwner', payload);
      Severity: Major
      Found in src/html-manip.js and 1 other location - About 2 hrs to fix
      src/html-manip.js on lines 437..442

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 90.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          for (let i = 0; i < ownerOptionsArr.length; i++) {
              let option = document.createElement('option');
              option.value = ownerOptions[ownerOptionsArr[i]];
              option.text = ownerOptionsArr[i];
              ownerSelect.appendChild(option);
      Severity: Major
      Found in src/html-manip.js and 1 other location - About 2 hrs to fix
      src/html-manip.js on lines 424..429

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 87.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          for (let i = 0; i < statusOptionsArr.length; i++) {
              let option = document.createElement('option');
              option.value = statusOptions[statusOptionsArr[i]];
              option.text = statusOptionsArr[i];
              statusSelect.appendChild(option);
      Severity: Major
      Found in src/html-manip.js and 1 other location - About 2 hrs to fix
      src/html-manip.js on lines 396..401

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 87.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Function addText has 59 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export function addText(container, payload, className) {
          let text = document.createElement('div');
          text.classList.add('feedback-text');
          if (className) {
              text.classList.add(className);
      Severity: Major
      Found in src/html-manip.js - About 2 hrs to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

            if (payload.status && (payload.status !== defaultStatus)) {
                statusSelect.value = payload.status;
                changeColor(spot.classList, null, `status-${payload.status}`)
            } else {
                statusSelect.value = defaultStatus;
        Severity: Major
        Found in src/html-manip.js and 1 other location - About 2 hrs to fix
        src/html-manip.js on lines 403..408

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 79.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

            if (payload.assigneeRole && (payload.assigneeRole !== defaultOwner)) {
                ownerSelect.value = payload.assigneeRole;
                changeColor(spot.classList, null, `owner-${payload.assigneeRole}`)
            } else {
                ownerSelect.value = defaultOwner;
        Severity: Major
        Found in src/html-manip.js and 1 other location - About 2 hrs to fix
        src/html-manip.js on lines 431..436

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 79.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                if (state.active) {
                    buttonDiv.classList.add('toggle-button-selected');
                    buttonLabel.textContent = 'Feedback On';
                    Array.prototype.forEach.call(feedbackSpots, (feedbackSpotElement) => {
                        feedbackSpotElement.classList.remove('off');
        Severity: Major
        Found in src/jerboa.js and 1 other location - About 1 hr to fix
        src/jerboa.js on lines 143..149

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 70.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                } else {
                    buttonDiv.classList.remove('toggle-button-selected');
                    buttonLabel.textContent = 'Feedback Off';
                    Array.prototype.forEach.call(feedbackSpots, (feedbackSpotElement) => {
                        feedbackSpotElement.classList.add('off');
        Severity: Major
        Found in src/jerboa.js and 1 other location - About 1 hr to fix
        src/jerboa.js on lines 137..143

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 70.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

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

        function createToggleButton() {
            let bottom = '25px';
            let left = '25px';
        
            let buttonContainer = document.createElement('div');
        Severity: Minor
        Found in src/jerboa.js - About 1 hr to fix

          Function createInfoBox has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

          export function createInfoBox(spot, payload) {
              function changeColor(classList, currentClassName, newClassName) {
                  if (classList.contains(currentClassName)) {classList.remove(currentClassName)};
                  if (!classList.contains(newClassName)) {classList.add(newClassName)};
              }
          Severity: Minor
          Found in src/html-manip.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 generatePayload has 34 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function generatePayload(event) {
              const container = resolveContainer(event.target, state.currentStrategy);
              if (!container) {
                  return;
              }
          Severity: Minor
          Found in src/jerboa.js - About 1 hr to fix

            Function clickListener has 34 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function clickListener(event) {
                if (!state.active) {
                    return;
                }
                closeInfoBox();
            Severity: Minor
            Found in src/jerboa.js - About 1 hr to fix

              Function addBox has 28 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              export function addBox(spot, toggled) {
                  spot.addEventListener('click', event => {
                      if (!state.active) {
                          return;
                      }
              Severity: Minor
              Found in src/html-manip.js - About 1 hr to fix

                Function init has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    init(options) {
                        console.log('options', options);
                        options = options || {};
                        state.active = options.active || false
                        state.currentStrategy = options.strategy || strategies.global;
                Severity: Minor
                Found in src/jerboa.js - About 1 hr to fix

                  Function getSelector has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                  Open

                  export function getSelector(e, child) {
                      if (e.tagName === 'BODY') {
                          return 'body' + (child ? " > " + child : "");
                      }
                      if (e.id) {
                  Severity: Minor
                  Found in src/positioning.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 addTextField has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  export function addTextField(boxContainer, label, containerClass) {
                      let container = document.createElement('div');
                      if (containerClass) {
                          container.classList.add(containerClass)
                      };
                  Severity: Minor
                  Found in src/html-manip.js - About 1 hr to fix

                    Identical blocks of code found in 2 locations. Consider refactoring.
                    Open

                            } else {
                                const comment = generateComment(parts.textarea.value);
                                parts.textarea.value = '';
                                emit('cancelComment', comment);
                                closeInfoBox();
                    Severity: Minor
                    Found in src/html-manip.js and 1 other location - About 50 mins to fix
                    src/html-manip.js on lines 451..456

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 51.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Severity
                    Category
                    Status
                    Source
                    Language