continue reading sorted by last read

This commit is contained in:
Jared Turner
2020-06-01 15:29:18 +01:00
parent e99d7b8b29
commit 3ef6a7bfc4
3 changed files with 58 additions and 15 deletions
+17 -5
View File
@@ -287,10 +287,7 @@ class Title
else
info.progress[username][entry] = page
end
# should this be a separate method?
# eg. def save_last_read(username, entry)
# if so, we would need to open the json file twice every
# time we save. Does that matter?
# save last_read timestamp
if info.last_read[username]?.nil?
info.last_read[username] = {entry => Time.utc}
else
@@ -336,7 +333,6 @@ class Title
last_read = info.last_read[username][entry]
end
end
return nil if last_read.nil?
last_read
end
@@ -346,6 +342,12 @@ class Title
@entries[idx + 1]
end
def previous_entry(current_entry_obj)
idx = @entries.index current_entry_obj
return nil if idx.nil? || idx == 0
@entries[idx - 1]
end
def get_continue_reading_entry(username)
in_progress_entries = @entries.select do |e|
load_progress(username, e.title) > 0
@@ -360,6 +362,16 @@ class Title
latest_read_entry
end
end
# TODO: More concise title?
def get_last_read_for_continue_reading(username, entry_obj)
last_read = load_last_read username, entry_obj.title
if last_read.nil? # grab from previous entry if current entry hasn't been started yet
previous_entry = previous_entry(entry_obj)
return load_last_read username, previous_entry.title if previous_entry
end
last_read
end
end
class TitleInfo