debian-mirror-gitlab/app/helpers/numbers_helper.rb

15 lines
371 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module NumbersHelper
def limited_counter_with_delimiter(resource, **options)
limit = options.fetch(:limit, 1000).to_i
2020-06-23 00:09:42 +05:30
count = resource.page.total_count_with_limit(:all, limit: limit)
2018-03-17 18:26:18 +05:30
if count > limit
number_with_delimiter(count - 1, options) + '+'
else
number_with_delimiter(count, options)
end
end
end