end
def next_path
- api_v1_trends_links_url pagination_params(offset: offset_param + limit_param(DEFAULT_LINKS_LIMIT))
+ api_v1_trends_links_url pagination_params(offset: offset_param + limit_param(DEFAULT_LINKS_LIMIT)) if records_continue?
end
def prev_path
api_v1_trends_links_url pagination_params(offset: offset_param - limit_param(DEFAULT_LINKS_LIMIT)) if offset_param > limit_param(DEFAULT_LINKS_LIMIT)
end
+ def records_continue?
+ @links.size == limit_param(DEFAULT_LINKS_LIMIT)
+ end
+
def offset_param
params[:offset].to_i
end
end
def next_path
- api_v1_trends_statuses_url pagination_params(offset: offset_param + limit_param(DEFAULT_STATUSES_LIMIT))
+ api_v1_trends_statuses_url pagination_params(offset: offset_param + limit_param(DEFAULT_STATUSES_LIMIT)) if records_continue?
end
def prev_path
def offset_param
params[:offset].to_i
end
+
+ def records_continue?
+ @statuses.size == limit_param(DEFAULT_STATUSES_LIMIT)
+ end
end
end
def next_path
- api_v1_trends_tags_url pagination_params(offset: offset_param + limit_param(DEFAULT_TAGS_LIMIT))
+ api_v1_trends_tags_url pagination_params(offset: offset_param + limit_param(DEFAULT_TAGS_LIMIT)) if records_continue?
end
def prev_path
def offset_param
params[:offset].to_i
end
+
+ def records_continue?
+ @tags.size == limit_param(DEFAULT_TAGS_LIMIT)
+ end
end
@records
end
- delegate :each, :empty?, :first, :last, to: :records
+ delegate :each, :empty?, :first, :last, :size, to: :records
def to_ary
records.dup