Class: Decidim::UserConversationCell

Inherits:
ViewModel
  • Object
show all
Includes:
Cell::ViewModel::Partial, ApplicationHelper, FormFactory, LayoutHelper, Messaging::ConversationHelper, SanitizeHelper
Defined in:
app/cells/decidim/user_conversation_cell.rb

Instance Method Summary collapse

Methods included from Messaging::ConversationHelper

#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

Methods included from SanitizeHelper

#decidim_html_escape, #decidim_sanitize, #decidim_sanitize_admin, #decidim_sanitize_editor, #decidim_sanitize_editor_admin, #decidim_sanitize_newsletter, #decidim_url_escape, included

Methods included from ApplicationHelper

#cell, #edit_link, #extra_admin_link, #html_truncate, #present, #prevent_timeout_seconds, #resolve_presenter_class, #step_cta_url

Methods included from CacheHelper

#cache

Methods included from AmendmentsHelper

#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

Methods included from RichTextEditorHelper

included, #text_editor_for

Methods included from ContextualHelpHelper

#floating_help

Methods included from ScopesHelper

#has_visible_scopes?, #scope_name_for_picker, #scopes_picker_field, #scopes_picker_filter, #scopes_picker_tag

Methods included from TranslatableAttributes

#default_locale?

Methods included from DecidimFormHelper

#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

Methods included from OmniauthHelper

#normalize_provider_name, #oauth_icon, #provider_name

Methods included from LayoutHelper

#_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

Methods included from MarkupHelper

#element_id

Methods included from ReplaceButtonsHelper

#button_to, #submit_tag

Methods included from ActionAuthorizationHelper

#action_authorized_button_to, #action_authorized_link_to, #logged_button_to, #logged_link_to

Methods included from ResourceHelper

#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

#conversationObject



32
33
34
# File 'app/cells/decidim/user_conversation_cell.rb', line 32

def conversation
  context[:conversation]
end

#conversation_avatarObject



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_altObject



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

#form_obObject



60
61
62
63
64
# File 'app/cells/decidim/user_conversation_cell.rb', line 60

def form_ob
  return Messaging::MessageForm.new if conversation.id

  Messaging::ConversationForm.new(recipient_id: interlocutors)
end

#interlocutorsObject



66
67
68
# File 'app/cells/decidim/user_conversation_cell.rb', line 66

def interlocutors
  conversation.interlocutors(user)
end

#interlocutors_namesObject



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

#recipientsObject



76
77
78
79
80
# File 'app/cells/decidim/user_conversation_cell.rb', line 76

def recipients
  return [] if conversation.id

  interlocutors
end

#reply_form(&block) ⇒ Object



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

Returns:

  • (Boolean)


36
37
38
# File 'app/cells/decidim/user_conversation_cell.rb', line 36

def sender_is_user?(sender)
  user.id == sender.id
end

#showObject



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

#userObject



13
14
15
# File 'app/cells/decidim/user_conversation_cell.rb', line 13

def user
  model
end

#user_grouped_messagesObject



28
29
30
# File 'app/cells/decidim/user_conversation_cell.rb', line 28

def user_grouped_messages
  conversation.messages.includes(:sender).chunk(&:sender)
end