2020-01-09 07:36:40 +00:00
|
|
|
class Conversations::EventDataPresenter < SimpleDelegator
|
|
|
|
def lock_data
|
|
|
|
{ id: display_id, locked: locked? }
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def push_data
|
|
|
|
{
|
|
|
|
id: display_id,
|
2020-03-05 20:17:37 +00:00
|
|
|
additional_attributes: additional_attributes,
|
2020-01-09 07:36:40 +00:00
|
|
|
inbox_id: inbox_id,
|
|
|
|
messages: push_messages,
|
|
|
|
meta: push_meta,
|
2020-02-26 15:45:01 +00:00
|
|
|
status: status,
|
2020-01-09 07:36:40 +00:00
|
|
|
unread_count: unread_incoming_messages.count,
|
|
|
|
**push_timestamps
|
|
|
|
}
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
private
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def push_messages
|
|
|
|
[messages.chat.last&.push_event_data].compact
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def push_meta
|
|
|
|
{ sender: contact.push_event_data, assignee: assignee }
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def push_timestamps
|
|
|
|
{
|
|
|
|
agent_last_seen_at: agent_last_seen_at.to_i,
|
|
|
|
user_last_seen_at: user_last_seen_at.to_i,
|
|
|
|
timestamp: created_at.to_i
|
|
|
|
}
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
end
|