Add data-src
when image is to be lazy loaded, use tag
helper instead of image_tag
helper
This commit is contained in:
parent
31d43e3458
commit
abb9981d20
1 changed files with 16 additions and 9 deletions
|
@ -13,22 +13,29 @@ module AvatarsHelper
|
|||
user_name = options[:user].try(:name) || options[:user_name]
|
||||
avatar_url = options[:url] || avatar_icon(options[:user] || options[:user_email], avatar_size)
|
||||
has_tooltip = options[:has_tooltip].nil? ? true : options[:has_tooltip]
|
||||
data_attributes = {}
|
||||
data_attributes = options[:data] || {}
|
||||
css_class = %W[avatar s#{avatar_size}].push(*options[:css_class])
|
||||
|
||||
if has_tooltip
|
||||
css_class.push('has-tooltip')
|
||||
data_attributes = { container: 'body' }
|
||||
data_attributes[:container] = 'body'
|
||||
end
|
||||
|
||||
image_tag(
|
||||
avatar_url,
|
||||
class: css_class,
|
||||
if options[:lazy]
|
||||
css_class << 'lazy'
|
||||
data_attributes[:src] = avatar_url
|
||||
avatar_url = LazyImageTagHelper.placeholder_image
|
||||
end
|
||||
|
||||
image_options = {
|
||||
alt: "#{user_name}'s avatar",
|
||||
title: user_name,
|
||||
src: avatar_url,
|
||||
data: data_attributes,
|
||||
lazy: true
|
||||
)
|
||||
class: css_class,
|
||||
title: user_name
|
||||
}
|
||||
|
||||
tag(:img, image_options)
|
||||
end
|
||||
|
||||
def user_avatar(options = {})
|
||||
|
|
Loading…
Reference in a new issue