Display email-friendly names and emails in events csv export

This commit is contained in:
Petko Bordjukov 2016-10-09 05:30:25 +03:00
parent de5795910f
commit 29da04d51f
2 changed files with 7 additions and 4 deletions

View File

@ -14,11 +14,14 @@ module EventsHelper
end.join(', ').html_safe
end
def participant_names_or_emails(event)
def participant_names_with_emails(event)
event.participants.map do |participant|
participant.try(:personal_profile, current_conference).try(:name) ||
participant.personal_profiles.last.try(:name) ||
if participant.personal_profile(event.conference).present?
profile = participant.personal_profile(event.conference)
"#{profile.name} <#{participant.email}>"
else
participant.email
end
end
end
end

View File

@ -1,5 +1,5 @@
<%- csv_headers = %w{id title subtitle type track language paticipants status} -%>
<%= CSV.generate_line(csv_headers).html_safe -%>
<%- @events.each do |event| -%>
<%= CSV.generate_line([event.id, event.title, event.subtitle, event.event_type.name, event.track.name, event.language, participant_names_or_emails(event).join(', '), event.status]).html_safe -%>
<%= CSV.generate_line([event.id, event.title, event.subtitle, event.event_type.name, event.track.name, event.language, participant_names_with_emails(event).join(', '), event.status]).html_safe -%>
<%- end -%>