2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-26 07:42:04 -04:00
|
|
|
module NumbersHelper
|
|
|
|
def limited_counter_with_delimiter(resource, **options)
|
|
|
|
limit = options.fetch(:limit, 1000).to_i
|
2020-05-29 05:08:06 -04:00
|
|
|
count = resource.page.total_count_with_limit(:all, limit: limit)
|
|
|
|
|
2017-09-26 07:42:04 -04:00
|
|
|
if count > limit
|
|
|
|
number_with_delimiter(count - 1, options) + '+'
|
|
|
|
else
|
|
|
|
number_with_delimiter(count, options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|