Class: Decidim::UserConversationCell
Instance Method Summary
collapse
#conversation_between, #conversation_between_multiple, #conversation_label_for, #conversation_name_for, #current_or_new_conversation_path_with, #current_or_new_conversation_path_with_multiple, #link_to_current_or_new_conversation_with, #text_link_to_current_or_new_conversation_with, #username_list
#decidim_html_escape, #decidim_sanitize, #decidim_sanitize_admin, #decidim_sanitize_editor, #decidim_sanitize_editor_admin, #decidim_sanitize_newsletter, #decidim_url_escape, included
#cell, #edit_link, #extra_admin_link, #html_truncate, #present, #prevent_timeout_seconds, #resolve_presenter_class, #step_cta_url
#cache
#accept_and_reject_buttons_for, #action_button_card_for, #allowed_to_accept_and_reject?, #allowed_to_promote?, #amend_button_for, #amenders_list_for, #amendments_enabled?, #amendments_for, #amendments_form_field_for, #amendments_form_fields_label, #amendments_form_fields_value, #can_participate_in_private_space?, #can_react_to_emendation?, #emendation_actions_for, #emendation_announcement_for, #promote_button_for, #render_emendation_body
included, #text_editor_for
#floating_help
#has_visible_scopes?, #scope_name_for_picker, #scopes_picker_field, #scopes_picker_filter, #scopes_picker_tag
#default_locale?
#areas_for_select, #base_error_messages, #decidim_form_for, #decidim_form_slug_url, #editor_field_tag, #form_field_has_error?, #form_required_explanation, #name_with_locale, #scopes_picker_field_tag, #tab_element_class_for, #translated_field_tag
#normalize_provider_name, #oauth_icon, #provider_name
#_icon_classes, #apple_favicon, #application_path, #extended_navigation_bar, #external_icon, #favicon, #icon, #legacy_favicon, #organization_colors, #role
Methods inherited from ViewModel
#call, #current_user
#element_id
#button_to, #submit_tag
#action_authorized_button_to, #action_authorized_link_to, #logged_button_to, #logged_link_to
#linked_classes_filter_values_for, #linked_classes_for, #linked_resources_for, #resource_locator, #resource_title
Instance Method Details
#avatar_url_for(sender) ⇒ Object
40
41
42
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 40
def avatar_url_for(sender)
present(sender).avatar_url
end
|
#conversation ⇒ Object
32
33
34
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 32
def conversation
context[:conversation]
end
|
#conversation_avatar ⇒ Object
44
45
46
47
48
49
50
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 44
def conversation_avatar
if interlocutors.count == 1
present(interlocutors.first).avatar_url
else
present(current_user).avatar.default_multiuser_url
end
end
|
#conversation_avatar_alt ⇒ Object
52
53
54
55
56
57
58
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 52
def conversation_avatar_alt
if interlocutors.count == 1
t("decidim.author.avatar", name: decidim_sanitize(interlocutors.first.name))
else
t("decidim.author.avatar_multiuser")
end
end
|
#interlocutors ⇒ Object
66
67
68
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 66
def interlocutors
conversation.interlocutors(user)
end
|
#interlocutors_names ⇒ Object
70
71
72
73
74
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 70
def interlocutors_names
return username_list(interlocutors) unless interlocutors.count == 1
"<strong>#{interlocutors.first.name}</strong><br><span class=\"muted\">@#{interlocutors.first.nickname}</span>"
end
|
#message(msg) ⇒ Object
renders a unique message, useful for ajax calls
24
25
26
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 24
def message(msg)
render view: :messages, locals: { sender: msg.sender, messages: [msg] }
end
|
#recipients ⇒ Object
76
77
78
79
80
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 76
def recipients
return [] if conversation.id
interlocutors
end
|
82
83
84
85
86
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 82
def reply_form(&block)
return form_for(form_ob, url: decidim.profile_conversations_path(nickname: user.nickname), method: :post, &block) unless conversation.id
form_for(form_ob, url: decidim.profile_conversation_path(nickname: user.nickname, id: conversation.id), method: :put, remote: true, &block)
end
|
#sender_is_user?(sender) ⇒ Boolean
36
37
38
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 36
def sender_is_user?(sender)
user.id == sender.id
end
|
#show ⇒ Object
17
18
19
20
21
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 17
def show
return render :show if conversation.id
render :new
end
|
#user ⇒ Object
13
14
15
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 13
def user
model
end
|
#user_grouped_messages ⇒ Object
28
29
30
|
# File 'app/cells/decidim/user_conversation_cell.rb', line 28
def user_grouped_messages
conversation.messages.includes(:sender).chunk(&:sender)
end
|