studpad/studpad

View on GitHub

Showing 118 of 280 total issues

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

  render: function() {

    var className;
    if (this.props.className) {
      className = this.props.className;
Severity: Minor
Found in app/assets/javascripts/react-dropzone.js.jsx - About 35 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 too many return statements within this function.
Open

        return false;
Severity: Major
Found in app/assets/javascripts/components/post_modal_form.js.jsx - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

              return;
    Severity: Major
    Found in app/assets/javascripts/selectize_fixed.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                return;
      Severity: Major
      Found in app/assets/javascripts/selectize_fixed.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                  return;
        Severity: Major
        Found in app/assets/javascripts/selectize_fixed.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                    return;
          Severity: Major
          Found in app/assets/javascripts/selectize_fixed.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                return false
            Severity: Major
            Found in app/assets/javascripts/bootstrap.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

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

                Avoid too many return statements within this function.
                Open

                        return;
                Severity: Major
                Found in app/assets/javascripts/selectize_fixed.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                            return;
                  Severity: Major
                  Found in app/assets/javascripts/selectize_fixed.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                              return;
                    Severity: Major
                    Found in app/assets/javascripts/selectize_fixed.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                          if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
                      Severity: Major
                      Found in app/assets/javascripts/bootstrap.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                              return false;
                        Severity: Major
                        Found in app/assets/javascripts/components/post_modal_form.js.jsx - About 30 mins to fix

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

                            removeComment: function(post_id, comment_id){
                              CI('PostBox::removeComment', post_id, comment_id);
                              var delete_url;
                              var newPosts = this.state.posts.map(function (n) {
                                if (n.id == post_id){
                          Severity: Minor
                          Found in app/assets/javascripts/explore_grid.js.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

                          Method page_description has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            def page_description
                              url_string = params.require(:url)
                              url = URI.parse(url_string)
                              url = URI.parse('http://' + url_string) unless url.scheme
                              page = Nokogiri::HTML(open(url))
                          Severity: Minor
                          Found in app/controllers/ajax_controller.rb - 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 removeComment has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            removeComment: function(post_id, comment_id){
                              CI('PostBox::removeComment', post_id, comment_id);
                              var delete_url;
                              var newPosts = this.state.posts.map(function (n) {
                                if (n.id == post_id){
                          Severity: Minor
                          Found in app/assets/javascripts/components/post_box.js.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 updateComment has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            updateComment: function(post_id, comment_id, text){
                              CI('PostBox::removeComment', post_id, comment_id, text);
                              var comment_url;
                              var newPosts = this.state.posts.map(function (n) {
                                if (n.id == post_id){
                          Severity: Minor
                          Found in app/assets/javascripts/explore_grid.js.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 updateComment has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            updateComment: function(post_id, comment_id, text){
                              CI('PostBox::removeComment', post_id, comment_id, text);
                              var comment_url;
                              var newPosts = this.state.posts.map(function (n) {
                                if (n.id == post_id){
                          Severity: Minor
                          Found in app/assets/javascripts/components/post_box.js.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

                          Severity
                          Category
                          Status
                          Source
                          Language