Skip to content

Commit

Permalink
Add AvatarGroup component
Browse files Browse the repository at this point in the history
  • Loading branch information
davidalejandroaguilar committed Sep 26, 2024
1 parent faf7a2f commit bf5d808
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
23 changes: 23 additions & 0 deletions lib/phlexy_ui/avatar_group.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# frozen_string_literal: true

module PhlexyUI
class AvatarGroup < Base
def initialize(*, as: :div, **)
super(*, **)
@as = as
end

def view_template(&)
generate_classes!(
component_html_class: :"avatar-group",
options:
).then do |classes|
public_send(as, class: classes, **options, &)
end
end

def avatar(*, **, &)
render PhlexyUI::Avatar.new(*, **, &)
end
end
end
35 changes: 35 additions & 0 deletions spec/lib/phlexy_ui/avatar_group_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
require "spec_helper"

describe PhlexyUI::AvatarGroup do
subject(:output) { render described_class.new }

describe "rendering a full avatar group" do
let(:component) do
Class.new(Phlex::HTML) do
def view_template(&)
render PhlexyUI::AvatarGroup.new as: :span do |avatar_group|
avatar_group.avatar :online do
"JD"
end
avatar_group.avatar { "AB" }
end
end
end
end

subject(:output) do
render component.new
end

it "is expected to match the formatted HTML" do
expected_html = html <<~HTML
<span class="avatar-group">
<div class="avatar online">JD</div>
<div class="avatar">AB</div>
</span>
HTML

is_expected.to eq(expected_html)
end
end
end

0 comments on commit bf5d808

Please sign in to comment.