2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-17 13:03:08 -04:00
|
|
|
module TimelineLookup
|
|
|
|
|
2018-06-26 23:11:22 -04:00
|
|
|
# Given an array of tuples containing (id, days_ago), return at most `max_values` worth of a
|
2016-05-17 13:03:08 -04:00
|
|
|
# lookup table to help the front end timeline display dates associated with posts
|
|
|
|
def self.build(tuples, max_values = 300)
|
|
|
|
result = []
|
|
|
|
|
|
|
|
every = (tuples.size.to_f / max_values).ceil
|
|
|
|
|
|
|
|
last_days_ago = -1
|
|
|
|
tuples.each_with_index do |t, idx|
|
2018-06-26 23:11:22 -04:00
|
|
|
return result unless t.is_a?(Array)
|
2021-01-25 05:30:59 -05:00
|
|
|
|
|
|
|
if idx != tuples.size - 1
|
|
|
|
next unless (idx % every) === 0
|
|
|
|
end
|
2016-05-17 13:03:08 -04:00
|
|
|
|
2018-06-26 23:11:22 -04:00
|
|
|
days_ago = t[1]
|
2016-05-17 13:03:08 -04:00
|
|
|
|
|
|
|
if (days_ago != last_days_ago)
|
2016-05-26 12:49:54 -04:00
|
|
|
result << [idx + 1, days_ago]
|
2016-05-17 13:03:08 -04:00
|
|
|
last_days_ago = days_ago
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|