Skip to content

Instantly share code, notes, and snippets.

@joeldrapper
Created October 3, 2024 23:30
Show Gist options
  • Save joeldrapper/0ee0388aa172d04b693402c437a5b429 to your computer and use it in GitHub Desktop.
Save joeldrapper/0ee0388aa172d04b693402c437a5b429 to your computer and use it in GitHub Desktop.
Private server-side fetched async gravatar component in Phlex
# frozen_string_literal: true
class Components::Gravatar < Ode::Base
include Flecks
prop :size, Integer, default: 80
prop :alt, String
prop :email, String do |value|
value.to_s.strip.downcase
end
def view_template
div(**attributes) do
Slot(fetch) do |slot|
slot.content do |data|
img(
src: "data:image/png;base64,#{data}",
width: @size,
height: @size,
alt: @alt,
)
end
end
end
end
private
def fetch
proc do
Base64.strict_encode64(
Net::HTTP.get_response(
URI("https://www.gravatar.com/avatar/#{digest}?s=#{@size * 2}"),
).body,
)
end
end
def digest
Digest::MD5.hexdigest(@email)
end
def attributes
{
class: "rounded-full overflow-clip inline-block bg-zinc-200",
style: {
width: "#{@size}px",
height: "#{@size}px",
},
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment