Codeminer42/cm42-central

View on GitHub
app/assets/javascripts/views/story_view.jsx

Summary

Maintainability
F
1 wk
Test Coverage

File story_view.jsx has 1020 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React from 'react';
import ReactDOM from 'react-dom';
import StoryControls from 'components/story/StoryControls';
import StoryDescription from 'components/story/StoryDescription';
import StoryHistoryLocation from 'components/story/StoryHistoryLocation';
Severity: Major
Found in app/assets/javascripts/views/story_view.jsx - About 2 days to fix

    StoryView has 73 functions (exceeds 20 allowed). Consider refactoring.
    Open

    const StoryView = FormView.extend({
      template: storyTemplate,
      alert: alertTemplate,
    
      tagName: 'div',
    Severity: Major
    Found in app/assets/javascripts/views/story_view.jsx - About 1 day to fix

      Function renderSelects has 107 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        renderSelects: function () {
          const $storyEstimateSelect = this.$('[data-story-estimate]');
          if ($storyEstimateSelect.length) {
            const storyEstimateOptions = this.model
              .point_values()
      Severity: Major
      Found in app/assets/javascripts/views/story_view.jsx - About 4 hrs to fix

        Function sortUpdate has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

          sortUpdate: function (ev, ui) {
            // The target element, i.e. the StoryView.el element
            var target = $(ev.target);
        
            // Initially, try and get the id's of the previous and / or next stories
        Severity: Minor
        Found in app/assets/javascripts/views/story_view.jsx - 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 initialize has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          initialize: function (options) {
            _.extend(this, _.pick(options, 'isSearchResult'));
        
            _.bindAll(
              this,
        Severity: Minor
        Found in app/assets/javascripts/views/story_view.jsx - About 1 hr to fix

          Function sortUpdate has 43 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            sortUpdate: function (ev, ui) {
              // The target element, i.e. the StoryView.el element
              var target = $(ev.target);
          
              // Initially, try and get the id's of the previous and / or next stories
          Severity: Minor
          Found in app/assets/javascripts/views/story_view.jsx - About 1 hr to fix

            Function renderCollapsed has 38 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              renderCollapsed: function (isGuest) {
                this.$el.removeClass('editing');
                this.$el.html(this.template({ story: this.model, view: this }));
                this.$el.toggleClass(
                  'collapsed-iteration',
            Severity: Minor
            Found in app/assets/javascripts/views/story_view.jsx - About 1 hr to fix

              Function renderReleaseStory has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                renderReleaseStory: function () {
                  this.$el.append(this.makeFormControl(this.makeTitle()));
              
                  if (this.model.get('editing')) {
                    this.$el.append(
              Severity: Minor
              Found in app/assets/javascripts/views/story_view.jsx - About 1 hr to fix

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

                  transition: function (ev) {
                    // The name of the function that needs to be called on the model is the
                    // value of the form button that was clicked.
                    var transitionEvent = ev.target.value;
                    _.each(I18n.t('story.events'), function (value, key) {
                Severity: Minor
                Found in app/assets/javascripts/views/story_view.jsx - About 1 hr to fix

                  Avoid too many return statements within this function.
                  Open

                      return true;
                  Severity: Major
                  Found in app/assets/javascripts/views/story_view.jsx - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                        if ($(e.target).parent().is('button')) return false;
                    Severity: Major
                    Found in app/assets/javascripts/views/story_view.jsx - About 30 mins to fix

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

                        renderNotes: function () {
                          const $storyNotes = this.$('[data-story-notes]');
                          if ($storyNotes.length && !this.model.isNew()) {
                            const isReadonly = this.isReadonly();
                            const notes = this.model.notes;
                      Severity: Minor
                      Found in app/assets/javascripts/views/story_view.jsx - 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

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

                        renderSelects: function () {
                          const $storyEstimateSelect = this.$('[data-story-estimate]');
                          if ($storyEstimateSelect.length) {
                            const storyEstimateOptions = this.model
                              .point_values()
                      Severity: Minor
                      Found in app/assets/javascripts/views/story_view.jsx - 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

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

                        canEdit: function () {
                          var isEditable = this.model.get('editing');
                          var isSearchResultContainer = this.$el.hasClass('searchResult');
                          var clickFromSearchResult = this.model.get('clickFromSearchResult');
                          if (_.isUndefined(isEditable)) isEditable = false;
                      Severity: Minor
                      Found in app/assets/javascripts/views/story_view.jsx - 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

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

                          return this.model.save(null, {
                            success: function (model, response) {
                              that.saveInProgress = false;
                              that.render();
                            },
                      Severity: Major
                      Found in app/assets/javascripts/views/story_view.jsx and 1 other location - About 5 hrs to fix
                      app/assets/javascripts/views/story_view.jsx on lines 203..217

                      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 143.

                      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

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

                          return this.model.save(null, {
                            success: function (model, response) {
                              that.saveInProgress = false;
                              that.render();
                            },
                      Severity: Major
                      Found in app/assets/javascripts/views/story_view.jsx and 1 other location - About 5 hrs to fix
                      app/assets/javascripts/views/story_view.jsx on lines 226..240

                      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 143.

                      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

                        appendTags: function () {
                          this.$el.append(
                            this.makeFormControl(function (div) {
                              const $storyTags = $('<div class="form-group" data-tags></div>');
                              $(div).append($storyTags);
                      Severity: Major
                      Found in app/assets/javascripts/views/story_view.jsx and 1 other location - About 1 hr to fix
                      app/assets/javascripts/views/story_view.jsx on lines 536..543

                      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 65.

                      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

                        appendDescription: function () {
                          this.$el.append(
                            this.makeFormControl(function (div) {
                              var $storyDescription = $('<div class="story-description"><div>');
                              $(div).append($storyDescription);
                      Severity: Major
                      Found in app/assets/javascripts/views/story_view.jsx and 1 other location - About 1 hr to fix
                      app/assets/javascripts/views/story_view.jsx on lines 527..534

                      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 65.

                      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

                            noteTextArea.keyup(function () {
                              if ($.trim(noteTextArea.val())) {
                                addNoteButton.removeAttr('disabled');
                              } else {
                                addNoteButton.attr('disabled', 'disabled');
                      Severity: Major
                      Found in app/assets/javascripts/views/story_view.jsx and 1 other location - About 1 hr to fix
                      app/assets/javascripts/views/story_view.jsx on lines 909..915

                      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 65.

                      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

                            taskTextArea.keyup(function () {
                              if ($.trim(taskTextArea.val())) {
                                addTaskButton.removeAttr('disabled');
                              } else {
                                addTaskButton.attr('disabled', 'disabled');
                      Severity: Major
                      Found in app/assets/javascripts/views/story_view.jsx and 1 other location - About 1 hr to fix
                      app/assets/javascripts/views/story_view.jsx on lines 847..853

                      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 65.

                      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

                      There are no issues that match your filters.

                      Category
                      Status