Module: AvatarsHelper
- Included in:
- Banzai::Filter::CommitTrailersFilter, Gitlab::BlamePresenter, Groups::GroupMembersHelper, MemberEntity
- Defined in:
- app/helpers/avatars_helper.rb
Constant Summary collapse
- DEFAULT_AVATAR_PATH =
'no_avatar.png'
Instance Method Summary collapse
- #author_avatar(commit_or_event, options = {}) ⇒ Object
-
#avatar_icon_for(user = nil, email = nil, size = nil, scale = 2, only_path: true) ⇒ Object
Takes both user and email and returns the avatar_icon by user (preferred) or email.
- #avatar_icon_for_email(email = nil, size = nil, scale = 2, only_path: true) ⇒ Object
- #avatar_icon_for_user(user = nil, size = nil, scale = 2, only_path: true, current_user: nil) ⇒ Object
- #avatar_without_link(resource, options = {}) ⇒ Object
- #default_avatar ⇒ Object
- #gravatar_icon(user_email = '', size = nil, scale = 2) ⇒ Object
- #group_icon(group, options = {}) ⇒ Object
- #project_icon(project, options = {}) ⇒ Object
- #topic_icon(topic, options = {}) ⇒ Object
- #user_avatar(options = {}) ⇒ Object
- #user_avatar_without_link(options = {}) ⇒ Object
Instance Method Details
#author_avatar(commit_or_event, options = {}) ⇒ Object
55 56 57 58 59 60 61 62 |
# File 'app/helpers/avatars_helper.rb', line 55 def (commit_or_event, = {}) user_avatar(.merge({ user: commit_or_event., user_name: commit_or_event., user_email: commit_or_event., css_class: 'd-none d-sm-inline-block' })) end |
#avatar_icon_for(user = nil, email = nil, size = nil, scale = 2, only_path: true) ⇒ Object
Takes both user and email and returns the avatar_icon by user (preferred) or email.
20 21 22 23 24 25 26 27 28 |
# File 'app/helpers/avatars_helper.rb', line 20 def avatar_icon_for(user = nil, email = nil, size = nil, scale = 2, only_path: true) if user avatar_icon_for_user(user, size, scale, only_path: only_path) elsif email avatar_icon_for_email(email, size, scale, only_path: only_path) else default_avatar end end |
#avatar_icon_for_email(email = nil, size = nil, scale = 2, only_path: true) ⇒ Object
30 31 32 33 34 35 36 |
# File 'app/helpers/avatars_helper.rb', line 30 def avatar_icon_for_email(email = nil, size = nil, scale = 2, only_path: true) return gravatar_icon(email, size, scale) if email.nil? Gitlab::AvatarCache.by_email(email, size, scale, only_path) do avatar_icon_by_user_email_or_gravatar(email, size, scale, only_path: only_path) end end |
#avatar_icon_for_user(user = nil, size = nil, scale = 2, only_path: true, current_user: nil) ⇒ Object
38 39 40 41 42 43 44 |
# File 'app/helpers/avatars_helper.rb', line 38 def avatar_icon_for_user(user = nil, size = nil, scale = 2, only_path: true, current_user: nil) return gravatar_icon(nil, size, scale) unless user return default_avatar if blocked_or_unconfirmed?(user) && !can_admin?(current_user) user_avatar = user.avatar_url(size: size, only_path: only_path) user_avatar || default_avatar end |
#avatar_without_link(resource, options = {}) ⇒ Object
107 108 109 110 111 112 113 |
# File 'app/helpers/avatars_helper.rb', line 107 def avatar_without_link(resource, = {}) if resource.is_a?(Namespaces::UserNamespace) user_avatar_without_link(.merge(user: resource.first_owner)) elsif resource.is_a?(Group) group_icon(resource, .merge(class: 'avatar')) end end |
#default_avatar ⇒ Object
51 52 53 |
# File 'app/helpers/avatars_helper.rb', line 51 def default_avatar ActionController::Base.helpers.image_path(DEFAULT_AVATAR_PATH) end |
#gravatar_icon(user_email = '', size = nil, scale = 2) ⇒ Object
46 47 48 49 |
# File 'app/helpers/avatars_helper.rb', line 46 def gravatar_icon(user_email = '', size = nil, scale = 2) GravatarService.new.execute(user_email, size, scale) || default_avatar end |
#group_icon(group, options = {}) ⇒ Object
10 11 12 |
# File 'app/helpers/avatars_helper.rb', line 10 def group_icon(group, = {}) source_icon(group, ) end |
#project_icon(project, options = {}) ⇒ Object
6 7 8 |
# File 'app/helpers/avatars_helper.rb', line 6 def project_icon(project, = {}) source_icon(project, ) end |
#topic_icon(topic, options = {}) ⇒ Object
14 15 16 |
# File 'app/helpers/avatars_helper.rb', line 14 def topic_icon(topic, = {}) source_icon(topic, ) end |
#user_avatar(options = {}) ⇒ Object
97 98 99 100 101 102 103 104 105 |
# File 'app/helpers/avatars_helper.rb', line 97 def user_avatar( = {}) avatar = user_avatar_without_link() if [:user] link_to(avatar, user_path([:user])) elsif [:user_email] mail_to([:user_email], avatar) end end |
#user_avatar_without_link(options = {}) ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'app/helpers/avatars_helper.rb', line 64 def user_avatar_without_link( = {}) avatar_size = [:size] || 16 user_name = [:user].try(:name) || [:user_name] avatar_url = user_avatar_url_for(**.merge(size: avatar_size)) has_tooltip = [:has_tooltip].nil? ? true : [:has_tooltip] data_attributes = [:data] || {} css_class = %W[avatar s#{avatar_size}].push(*[:css_class]) alt_text = user_name ? "#{user_name}'s avatar" : "default avatar" if has_tooltip css_class.push('has-tooltip') data_attributes[:container] = 'body' end if [:lazy] css_class << 'lazy' data_attributes[:src] = avatar_url avatar_url = LazyImageTagHelper.placeholder_image end = { alt: alt_text, src: avatar_url, data: data_attributes, class: css_class, title: user_name } tag(:img, ) end |