Class: Decidim::UserConversationsCell

Inherits:
ViewModel
  • Object
show all
Includes:
ActionView::Helpers::DateHelper, Cell::ViewModel::Partial, CellsPaginateHelper, LayoutHelper, Messaging::ConversationHelper
Defined in:
app/cells/decidim/user_conversations_cell.rb

Instance Method Summary collapse

Methods included from Messaging::ConversationHelper

#conversation_between, #conversation_between_multiple, #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 CellsPaginateHelper

#paginate, #per_page

Methods included from PaginateHelper

#decidim_paginate

Methods included from LayoutHelper

#_icon_classes, #extended_navigation_bar, #external_icon, #favicon, #icon, #organization_colors, #role

Methods inherited from ViewModel

#call, #current_user

Methods included from FilterParamsHelper

#filter_link_params

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 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, #foundation_datepicker_locale_tag, #name_with_locale, #scopes_picker_field_tag, #tab_element_class_for, #translated_field_tag

Methods included from ResourceHelper

#linked_classes_filter_values_for, #linked_classes_for, #linked_resources_for, #resource_locator, #resource_title

Instance Method Details

#conversation_avatar(conversation) ⇒ Object



28
29
30
31
32
# File 'app/cells/decidim/user_conversations_cell.rb', line 28

def conversation_avatar(conversation)
  return user.avatar.default_multiuser_url unless conversation.interlocutors(user).count == 1

  conversation.interlocutors(user).first.avatar_url
end

#conversation_interlocutors(conversation) ⇒ Object



34
35
36
37
38
# File 'app/cells/decidim/user_conversations_cell.rb', line 34

def conversation_interlocutors(conversation)
  return username_list(conversation.interlocutors(user), shorten: true) unless conversation.interlocutors(user).count == 1

  "#{conversation.interlocutors(user).first.name} <span class=\"muted\">@#{conversation.interlocutors(user).first.nickname}</span>"
end

#conversationsObject



20
21
22
# File 'app/cells/decidim/user_conversations_cell.rb', line 20

def conversations
  context[:conversations] || []
end

#form_obObject



24
25
26
# File 'app/cells/decidim/user_conversations_cell.rb', line 24

def form_ob
  Messaging::MessageForm.new
end

#showObject



16
17
18
# File 'app/cells/decidim/user_conversations_cell.rb', line 16

def show
  render :show
end

#userObject



12
13
14
# File 'app/cells/decidim/user_conversations_cell.rb', line 12

def user
  model
end