-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
148 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
admin/app/components/solidus_admin/ui/panel/component.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<div | ||
class=" | ||
bg-white | ||
rounded-lg | ||
shadow-sm | ||
border | ||
border-gray-100 | ||
flex-col | ||
justify-start | ||
items-start | ||
gap-6 | ||
inline-flex | ||
w-full | ||
py-6 | ||
" | ||
data-controller="<%= stimulus_id %>" | ||
> | ||
<% if @title %> | ||
<h6 class="mt-0 px-6 w-full"> | ||
<span class="body-title"><%= @title %></span> | ||
<%= render component('ui/toggletip').new(guide: @title_hint, position: :left) if @title_hint %> | ||
</h6> | ||
<% end %> | ||
<% if content&.present? %> | ||
<div class="px-6 w-full"> | ||
<%= content %> | ||
</div> | ||
<% end %> | ||
<% if actions? %> | ||
<div class="flex gap-2 items-center border-t border-gray-100 px-6 pt-6 w-full"> | ||
<%= actions %> | ||
</div> | ||
<% end %> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Controller } from '@hotwired/stimulus' | ||
|
||
export default class extends Controller { | ||
static targets = ['output'] | ||
|
||
typed(event) { | ||
this.text = event.currentTarget.value | ||
this.render() | ||
} | ||
|
||
render() { | ||
this.outputTarget.innerText = this.text | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
class SolidusAdmin::UI::Panel::Component < SolidusAdmin::BaseComponent | ||
renders_one :actions | ||
|
||
# @param title [String] the title of the panel | ||
# @param title_hint [String] the title hint of the panel | ||
def initialize(title: nil, title_hint: nil) | ||
@title = title | ||
@title_hint = title_hint | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Add your component translations here. | ||
# Use the translation in the example in your template with `t(".hello")`. | ||
en: | ||
hello: "Hello world!" |
10 changes: 10 additions & 0 deletions
10
admin/spec/components/previews/solidus_admin/ui/panel/component_preview.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
# @component "ui/panel" | ||
class SolidusAdmin::UI::Panel::ComponentPreview < ViewComponent::Preview | ||
include SolidusAdmin::Preview | ||
|
||
def overview | ||
render_with_template | ||
end | ||
end |
63 changes: 63 additions & 0 deletions
63
admin/spec/components/previews/solidus_admin/ui/panel/component_preview/overview.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<div class="mb-8"> | ||
<h6 class="text-gray-500 mb-3 mt-0"> | ||
Content only | ||
</h6> | ||
|
||
<%= render current_component.new do %> | ||
<label> | ||
SKU: | ||
ABC-123 | ||
</label> | ||
<% end %> | ||
</div> | ||
|
||
<div class="mb-8"> | ||
<h6 class="text-gray-500 mb-3 mt-0"> | ||
With title | ||
</h6> | ||
|
||
<%= render current_component.new(title: "SEO") do %> | ||
<label> | ||
SKU: | ||
ABC-123 | ||
</label> | ||
<% end %> | ||
</div> | ||
|
||
<div class="mb-8"> | ||
<h6 class="text-gray-500 mb-3 mt-0"> | ||
With title and hint | ||
</h6> | ||
|
||
<%= render current_component.new(title: "SEO", title_hint: "Search Engine Optimization") do %> | ||
<label> | ||
SKU: | ||
ABC-123 | ||
</label> | ||
<% end %> | ||
</div> | ||
|
||
<div class="mb-8"> | ||
<h6 class="text-gray-500 mb-3 mt-0"> | ||
With title, hint, and actions | ||
</h6> | ||
|
||
<%= render current_component.new(title: "SEO", title_hint: "Search Engine Optimization") do |panel| %> | ||
<label> | ||
SKU: | ||
ABC-123 | ||
</label> | ||
|
||
<% panel.with_actions do %> | ||
foo action | ||
<% end %> | ||
<% end %> | ||
</div> | ||
|
||
<div class="mb-8"> | ||
<h6 class="text-gray-500 mb-3 mt-0"> | ||
With no content | ||
</h6> | ||
|
||
<%= render current_component.new(title: "SEO", title_hint: "Search Engine Optimization").with_actions_content("foo action") %> | ||
</div> |
9 changes: 9 additions & 0 deletions
9
admin/spec/components/solidus_admin/ui/panel/component_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
require "spec_helper" | ||
|
||
RSpec.describe SolidusAdmin::UI::Panel::Component, type: :component do | ||
it "renders the overview preview" do | ||
render_preview(:overview) | ||
end | ||
end |