piotrmurach/tty-prompt

View on GitHub

Showing 43 of 49 total issues

Class List has 43 methods (exceeds 20 allowed). Consider refactoring.
Open

    class List
      # Allowed keys for filter, along with backspace and canc.
      FILTER_KEYS_MATCHER = /\A([[:alnum:]]|[[:punct:]])\Z/.freeze

      # Checks type of default parameter to be integer
Severity: Minor
Found in lib/tty/prompt/list.rb - About 5 hrs to fix

    File list.rb has 344 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require "English"
    
    require_relative "choices"
    require_relative "paginator"
    require_relative "block_paginator"
    Severity: Minor
    Found in lib/tty/prompt/list.rb - About 4 hrs to fix

      Class EnumList has 33 methods (exceeds 20 allowed). Consider refactoring.
      Open

          class EnumList
            PAGE_HELP = "(Press tab/right or left to reveal more choices)"
      
            # Checks type of default parameter to be integer
            INTEGER_MATCHER = /\A[-+]?\d+\Z/.freeze
      Severity: Minor
      Found in lib/tty/prompt/enum_list.rb - About 4 hrs to fix

        Class Question has 28 methods (exceeds 20 allowed). Consider refactoring.
        Open

            class Question
              include Checks
        
              UndefinedSetting = Class.new do
                def to_s
        Severity: Minor
        Found in lib/tty/prompt/question.rb - About 3 hrs to fix

          Class Prompt has 28 methods (exceeds 20 allowed). Consider refactoring.
          Open

            class Prompt
              extend Forwardable
          
              # @api private
              attr_reader :input
          Severity: Minor
          Found in lib/tty/prompt.rb - About 3 hrs to fix

            Class Expander has 25 methods (exceeds 20 allowed). Consider refactoring.
            Open

                class Expander
                  HELP_CHOICE = {
                    key: "h",
                    name: "print help",
                    value: :help
            Severity: Minor
            Found in lib/tty/prompt/expander.rb - About 2 hrs to fix

              Class Slider has 25 methods (exceeds 20 allowed). Consider refactoring.
              Open

                  class Slider
                    HELP = "(Use %s arrow keys, press Enter to select)"
              
                    FORMAT = ":slider %s"
              
              
              Severity: Minor
              Found in lib/tty/prompt/slider.rb - About 2 hrs to fix

                Method paginate has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
                Open

                      def paginate(list, active, per_page = nil, &block)
                        current_index = active - 1
                        default_size = (list.size <= DEFAULT_PAGE_SIZE ? list.size : DEFAULT_PAGE_SIZE)
                        @per_page = @per_page || per_page || default_size
                        check_page_size!
                Severity: Minor
                Found in lib/tty/prompt/paginator.rb - About 2 hrs 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 render_header has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
                Open

                      def render_header
                        instructions = @prompt.decorate(help, @help_color)
                        minmax_suffix = @min || @max ? minmax_help : ""
                        print_selected = @selected.size.nonzero? && @echo
                
                
                Severity: Minor
                Found in lib/tty/prompt/multi_list.rb - About 2 hrs 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 render_menu has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
                Open

                      def render_menu
                        output = []
                
                        sync_paginators if @paging_changed
                        paginator.paginate(choices, @active, @per_page) do |choice, index|
                Severity: Minor
                Found in lib/tty/prompt/multi_list.rb - About 2 hrs 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 paginate has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                Open

                      def paginate(list, active, per_page = nil, &block)
                        default_size = (list.size <= DEFAULT_PAGE_SIZE ? list.size : DEFAULT_PAGE_SIZE)
                        @per_page = @per_page || per_page || default_size
                
                        check_page_size!
                Severity: Minor
                Found in lib/tty/prompt/block_paginator.rb - About 2 hrs 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 render_menu has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                Open

                      def render_menu
                        output = []
                
                        sync_paginators if @paging_changed
                        paginator.paginate(choices, @active, @per_page) do |choice, index|
                Severity: Minor
                Found in lib/tty/prompt/list.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 distance has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                Open

                      def distance(first, second)
                        distances = []
                        rows      = first.to_s.length
                        cols      = second.to_s.length
                
                
                Severity: Minor
                Found in lib/tty/prompt/distance.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 paginate has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                      def paginate(list, active, per_page = nil, &block)
                        current_index = active - 1
                        default_size = (list.size <= DEFAULT_PAGE_SIZE ? list.size : DEFAULT_PAGE_SIZE)
                        @per_page = @per_page || per_page || default_size
                        check_page_size!
                Severity: Minor
                Found in lib/tty/prompt/paginator.rb - About 1 hr to fix

                  Method paginate has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                        def paginate(list, active, per_page = nil, &block)
                          default_size = (list.size <= DEFAULT_PAGE_SIZE ? list.size : DEFAULT_PAGE_SIZE)
                          @per_page = @per_page || per_page || default_size
                  
                          check_page_size!
                  Severity: Minor
                  Found in lib/tty/prompt/block_paginator.rb - About 1 hr to fix

                    Method validate_choices has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                          def validate_choices
                            errors = []
                            keys = []
                            @choices.each do |choice|
                              if choice.key.nil?
                    Severity: Minor
                    Found in lib/tty/prompt/expander.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 keyright has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                          def keyright(*)
                            choices_size = choices.size
                            if (@active + page_size) <= choices_size
                              searchable = ((@active + page_size)..choices_size)
                              @active = search_choice_in(searchable)
                    Severity: Minor
                    Found in lib/tty/prompt/list.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 distance has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                          def distance(first, second)
                            distances = []
                            rows      = first.to_s.length
                            cols      = second.to_s.length
                    
                    
                    Severity: Minor
                    Found in lib/tty/prompt/distance.rb - About 1 hr to fix

                      Method initialize has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                            def initialize(prompt, **options)
                              # Option deprecation
                              if options[:validation]
                                warn "[DEPRECATION] The `:validation` option is deprecated. Use `:validate` instead."
                                options[:validate] = options[:validation]
                      Severity: Minor
                      Found in lib/tty/prompt/question.rb - About 1 hr to fix

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

                              def validate_defaults
                                @default.each do |d|
                                  msg = if d.nil? || d.to_s.empty?
                                          "default index must be an integer in range (1 - #{choices.size})"
                                        elsif d.to_s !~ INTEGER_MATCHER
                        Severity: Minor
                        Found in lib/tty/prompt/list.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

                        Severity
                        Category
                        Status
                        Source
                        Language