Sha256: d1e064f2acf681ec3d8cf53809faaf3d0c3b10f189fac76162ffdb1ac85cd4ab

Contents?: true

Size: 1.84 KB

Versions: 7

Compression:

Stored size: 1.84 KB

Contents

module LatoCore

  class Elements::Pagination::Cell < Cell

    @@requested_args = [:total]

    @@default_args = {
      current: 1,
      max_visible: 5,
      url: '#',
      param: 'page',
      remote: false,
      extra_params: {}
    }

    def initialize(args = {})
      @args = validate_args(
        args: args,
        requested_args: @@requested_args,
        default_args: @@default_args
      )

      set_conditions
    end

    def show
      render 'show.html'
    end

    private

    def set_conditions
      @prev_disabled_class = @args[:current] > 1 ? '' : 'elements-pagination__arrows--disabled'
      @next_disabled_class = @args[:current] < @args[:total] ? '' : 'elements-pagination__arrows--disabled'
      @pages_range_init = generate_pages_range_init
      @pages_range_end = generate_pages_range_end
      @prev_page_number = @args[:current] > 1 ? (@args[:current] - 1) : 1
      @next_page_number = @args[:current] < @args[:total] ? (@args[:current] + 1) : @args[:total] 
    end

    # This function generates the first page number to show on the range.
    def generate_pages_range_init
      init_candidate = @args[:current] - (@args[:max_visible] / 2)
      return 1 if init_candidate < 1
      init_candidate
    end

    # This function generates the last page number to show on the range.
    def generate_pages_range_end
      end_candidate = @pages_range_init + @args[:max_visible] -1
      return @args[:total] if end_candidate > @args[:total]
      end_candidate
    end

    # This function generate the link to go to a specific page number
    def generate_page_link page_number
      url = core__add_param_to_url(@args[:url], @args[:param], page_number)
      if @args[:extra_params]
        @args[:extra_params].each do |key, value|
          url = core__add_param_to_url(url, key, value)
        end
      end
      url
    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
lato_core-2.2.2 app/cells/lato_core/elements/pagination/cell.rb
lato_core-2.2.0 app/cells/lato_core/elements/pagination/cell.rb
lato_core-2.1.4 app/cells/lato_core/elements/pagination/cell.rb
lato_core-2.1.3 app/cells/lato_core/elements/pagination/cell.rb
lato_core-2.1.2 app/cells/lato_core/elements/pagination/cell.rb
lato_core-2.1.1 app/cells/lato_core/elements/pagination/cell.rb
lato_core-2.1 app/cells/lato_core/elements/pagination/cell.rb