|
|
@ -3,7 +3,7 @@ |
|
|
|
class StatusRelationshipsPresenter |
|
|
|
attr_reader :reblogs_map, :favourites_map, :mutes_map |
|
|
|
|
|
|
|
def initialize(statuses, current_account_id = nil) |
|
|
|
def initialize(statuses, current_account_id = nil, reblogs_map: {}, favourites_map: {}, mutes_map: {}) |
|
|
|
if current_account_id.nil? |
|
|
|
@reblogs_map = {} |
|
|
|
@favourites_map = {} |
|
|
@ -11,9 +11,9 @@ class StatusRelationshipsPresenter |
|
|
|
else |
|
|
|
status_ids = statuses.compact.flat_map { |s| [s.id, s.reblog_of_id] }.uniq |
|
|
|
conversation_ids = statuses.compact.map(&:conversation_id).compact.uniq |
|
|
|
@reblogs_map = Status.reblogs_map(status_ids, current_account_id) |
|
|
|
@favourites_map = Status.favourites_map(status_ids, current_account_id) |
|
|
|
@mutes_map = Status.mutes_map(conversation_ids, current_account_id) |
|
|
|
@reblogs_map = Status.reblogs_map(status_ids, current_account_id).merge(reblogs_map) |
|
|
|
@favourites_map = Status.favourites_map(status_ids, current_account_id).merge(favourites_map) |
|
|
|
@mutes_map = Status.mutes_map(conversation_ids, current_account_id).merge(mutes_map) |
|
|
|
end |
|
|
|
end |
|
|
|
end |