2014-11-02 08:57:37 -08:00
|
|
|
module UserHelper
|
2014-11-10 22:09:36 -08:00
|
|
|
# Decides what user name to show.
|
2022-06-21 05:52:23 -07:00
|
|
|
# @param context_user [User] the user whose the profile preferences should be applied
|
2014-11-10 22:09:36 -08:00
|
|
|
# @return [String] The user name
|
2022-06-21 05:52:23 -07:00
|
|
|
def user_screen_name(user, context_user: nil, anonymous: false, url: true, link_only: false)
|
|
|
|
return context_user&.profile&.anon_display_name.presence || APP_CONFIG['anonymous_name'] if user.nil? || anonymous
|
|
|
|
|
|
|
|
name = user.profile.display_name.presence || user.screen_name
|
2017-03-30 10:17:25 -07:00
|
|
|
if url
|
|
|
|
link = show_user_profile_path(user.screen_name)
|
|
|
|
return link if link_only
|
2022-06-21 05:52:23 -07:00
|
|
|
|
|
|
|
return link_to(name, link, class: ("user--banned" if user.banned?).to_s)
|
2017-03-30 10:17:25 -07:00
|
|
|
end
|
2015-06-09 09:05:35 -07:00
|
|
|
name.strip
|
2014-11-10 22:09:36 -08:00
|
|
|
end
|
2014-11-02 08:57:37 -08:00
|
|
|
end
|