JumpstartLab/tracks

View on GitHub

Showing 244 of 244 total issues

Method determine_start has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

  def determine_start(previous, offset=0.day)

    if previous.nil?
      start = self.start_from.nil? ? Time.zone.now : self.start_from
      # skip to present
Severity: Minor
Found in app/models/recurring_todo.rb - 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

Method set_locale has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

  def set_locale
    locale = params[:locale] # specifying a locale in the request takes precedence
    locale = locale || prefs.locale unless current_user.nil? # otherwise, the locale of the currently logged in user takes over
    locale = locale || request.env['HTTP_ACCEPT_LANGUAGE'].scan(/^[a-z]{2}/).first if request.env['HTTP_ACCEPT_LANGUAGE']
    I18n.locale = locale.nil? ? I18n.default_locale : (I18n::available_locales.include?(locale.to_sym) ? locale : I18n.default_locale)
Severity: Minor
Found in app/controllers/application_controller.rb - 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

Method create has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

  def create
    p = RecurringTodoCreateParamsHelper.new(params)
    p.attributes['end_date']=parse_date_per_user_prefs(p.attributes['end_date'])
    p.attributes['start_from']=parse_date_per_user_prefs(p.attributes['start_from'])

Severity: Minor
Found in app/controllers/recurring_todos_controller.rb - 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

Method results has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def results
    @source_view = params['_source_view'] || 'search'
    @page_title = "TRACKS::Search Results for #{params[:search]}"
    terms = "%#{params[:search]}%"

Severity: Minor
Found in app/controllers/search_controller.rb - About 1 hr to fix

    Function default_ajax_options_for_submit has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function default_ajax_options_for_submit(ajax_type, element_to_block) {
        // the complete is not a function but an array so you can push other
        // functions that will be executed after the ajax call completes
        var options = {
            type: ajax_type,
    Severity: Minor
    Found in app/assets/javascripts/tracks.js - About 1 hr to fix

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

              $(document).on("click", ".item-container input.item-checkbox", function(ev){
                  put_with_ajax_and_block_element(this.value, $(this).parents(".item-container"));
                  return false;
              });
      Severity: Minor
      Found in app/assets/javascripts/tracks.js and 1 other location - About 55 mins to fix
      app/assets/javascripts/tracks.js on lines 1041..1044

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

      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

            $(document).on("click",".item-container a.edit_icon", function(evt){
                get_with_ajax_and_block_element(this.href, $(this).parents(".item-container"));
                return false;
            });
      Severity: Minor
      Found in app/assets/javascripts/tracks.js and 1 other location - About 55 mins to fix
      app/assets/javascripts/tracks.js on lines 526..529

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

      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

      Method add_predecessor has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        def add_predecessor
          @source_view = params['_source_view'] || 'todo'
          @predecessor = current_user.todos.find(params['predecessor'])
          @predecessors = @predecessor.predecessors
          @todo = current_user.todos.includes(Todo::DEFAULT_INCLUDES).find(params['successor'])
      Severity: Minor
      Found in app/controllers/todos_controller.rb - About 55 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 get_daily_date has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        def get_daily_date(previous)
          # previous is the due date of the previous todo or it is the completed_at
          # date when the completed_at date is after due_date (i.e. you did not make
          # the due date in time)
          #
      Severity: Minor
      Found in app/models/recurring_todo.rb - About 55 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 starts_and_ends_on_validations has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        def starts_and_ends_on_validations
          errors[:base] << "The start date needs to be filled in" if start_from.blank?
          case self.ends_on
          when 'ends_on_number_of_times'
            errors[:base] << "The number of recurrences needs to be filled in for 'Ends on'" if number_of_occurences.blank?
      Severity: Minor
      Found in app/models/recurring_todo.rb - About 55 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 update_project has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        def update_project
          @project_changed = false;
          if params['todo']['project_id'].blank? && !params['project_name'].nil?
            if params['project_name'] == 'None'
              project = Project.null_object
      Severity: Minor
      Found in app/controllers/todos_controller.rb - About 55 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 monthly_recurrence_pattern has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        def monthly_recurrence_pattern
          return "invalid repeat pattern" if every_other2.nil?
          if self.recurrence_selector == 0
            on_day = " #{I18n.t('todos.recurrence.pattern.on_day_n', :n => self.every_other1)}"
            if self.every_other2>1
      Severity: Minor
      Found in app/models/recurring_todo.rb - About 55 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 toggle has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          toggle: function(toggleLinkId, formContainerId, formId, hideLinkText,
              hideLinkTitle, showLinkText, showLinkTitle) {
      Severity: Major
      Found in app/assets/javascripts/tracks.js - About 50 mins to fix

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

          def all_done_todos
            @source_view = 'project'
            @project = current_user.projects.find(params[:id])
            @page_title = t('projects.all_completed_tasks_title', :project_name => @project.name)
        
        
        Severity: Minor
        Found in app/controllers/projects_controller.rb and 1 other location - About 50 mins to fix
        app/controllers/contexts_controller.rb on lines 180..188

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

        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

          def all_done_todos
            @source_view = 'context'
            @context = current_user.contexts.find(params[:id])
            @page_title = t('contexts.all_completed_tasks_title', :context_name => @context.name)
        
        
        Severity: Minor
        Found in app/controllers/contexts_controller.rb and 1 other location - About 50 mins to fix
        app/controllers/projects_controller.rb on lines 316..324

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

        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

        Method feed_content_for_todo has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          def feed_content_for_todo(todo)
            item_notes = todo.notes ? todo.rendered_notes : ''
            due = todo.due ? content_tag(:div, t('todos.feeds.due', :date => format_date(todo.due))) : ''
            done = todo.completed? ? content_tag(:div, t('todos.feeds.completed', :date => format_date(todo.completed_at))) : ''
            context_link = link_to(context_url(todo.context), todo.context.name)
        Severity: Minor
        Found in app/helpers/todos_helper.rb - 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 enable_dependency_delete has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            enable_dependency_delete: function() {
                $(document).on("click", 'a[class=icon_delete_dep]', function() {
                    var form = $(this).parents('form').get(0);
                    var predecessor_list = $(form).find('input[name=predecessor_list]');
                    var id_list = split( predecessor_list.val() );
        Severity: Minor
        Found in app/assets/javascripts/tracks.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

        Method add_predecessor_list has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          def add_predecessor_list(predecessor_list)
            return unless predecessor_list.kind_of? String
        
            @predecessor_array=predecessor_list.split(",").inject([]) do |list, todo_id|
              predecessor = self.user.todos.find( todo_id.to_i ) unless todo_id.blank?
        Severity: Minor
        Found in app/models/todo.rb - 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 item_container_id has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          def item_container_id (todo)
            return "hiddenitems"              if source_view_is(:tag) && todo.hidden?
            return "c#{todo.context_id}items" if source_view_is :deferred
            return @new_due_id                if source_view_is :calendar
            return "tickleritems"             if !source_view_is(:todo) && (todo.deferred? || todo.pending?)
        Severity: Minor
        Found in app/helpers/todos_helper.rb - 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 check_create_user_params has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          def check_create_user_params
            return false unless params.has_key?(:user)
            return false unless params[:user].has_key?(:login)
            return false if params[:user][:login].empty?
            return false unless params[:user].has_key?(:password)
        Severity: Minor
        Found in app/controllers/users_controller.rb - 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

        Severity
        Category
        Status
        Source
        Language