Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Admin] component instance variables #5254

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</h1>
</header>

<%= render component("ui/table").new(
<%= render @table_component.new(
page: @page,
batch_actions: [
{
Expand Down
13 changes: 10 additions & 3 deletions admin/app/components/solidus_admin/products/index/component.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# frozen_string_literal: true

class SolidusAdmin::Products::Index::Component < SolidusAdmin::BaseComponent
def initialize(page:)
def initialize(
page:,
badge_component: component('ui/badge'),
table_component: component('ui/table')
)
@page = page

@badge_component = badge_component
@table_component = table_component
end

def image_column(product)
Expand All @@ -21,9 +28,9 @@ def name_column(product)

def status_column(product)
if product.available?
component('ui/badge').new(name: t('.status.available'), color: :green)
@badge_component.new(name: t('.status.available'), color: :green)
else
component('ui/badge').new(name: t('.status.discontinued'), color: :red)
@badge_component.new(name: t('.status.discontinued'), color: :red)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<% toolbar_classes = "h-14 p-2 bg-white border-b border-gray-100 justify-start items-center gap-2 visible:flex hidden:hidden" %>

<div class="<%= toolbar_classes %>" data-<%= stimulus_id %>-target="scopesToolbar">
<%= render component('ui/tab').new(text: "All", active: true, scheme: :secondary, href: "") %>
<%= render @tab_component.new(text: "All", active: true, scheme: :secondary, href: "") %>
</div>

<% if @batch_actions %>
Expand Down
29 changes: 24 additions & 5 deletions admin/app/components/solidus_admin/ui/table/component.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,59 @@
class SolidusAdmin::UI::Table::Component < SolidusAdmin::BaseComponent
# @param page [GearedPagination::Page] The pagination page object.
# @param path [Proc] A callable object that generates the path for pagination links.
#
# @param columns [Array<Hash>] The array of column definitions.
# @option columns [Symbol|Proc|#to_s] :header The column header.
# @option columns [Symbol|Proc|#to_s] :data The data accessor for the column.
# @option columns [String] :class_name (optional) The class name for the column.
#
# @param batch_actions [Array<Hash>] The array of batch action definitions.
# @option batch_actions [String] :display_name The batch action display name.
# @option batch_actions [String] :icon The batch action icon.
# @option batch_actions [String] :action The batch action path.
# @option batch_actions [String] :method The batch action HTTP method for the provided path.
#
# @param pagination_component [Class] The pagination component class (default: component("ui/table/pagination")).
def initialize(page:, path: nil, columns: [], batch_actions: [], pagination_component: component("ui/table/pagination"))
# @param checkbox_componnent [Class] The checkbox component class (default: component("ui/forms/checkbox")).
# @param button_component [Class] The button component class (default: component("ui/button")).
# @param tab_component [Class] The tab component class (default: component("ui/tab")).
def initialize(
page:,
path: nil,
columns: [],
batch_actions: [],
pagination_component: component("ui/table/pagination"),
checkbox_componnent: component("ui/forms/checkbox"),
button_component: component("ui/button"),
tab_component: component("ui/tab")
)
@page = page
@path = path
@columns = columns.map { Column.new(**_1) }
@batch_actions = batch_actions.map { BatchAction.new(**_1) }
@pagination_component = pagination_component
@model_class = page.records.model
@rows = page.records

@pagination_component = pagination_component
@checkbox_componnent = checkbox_componnent
@button_component = button_component
@tab_component = tab_component

@columns.unshift selectable_column if batch_actions.present?
end

def selectable_column
@selectable_column ||= Column.new(
header: -> {
component('ui/forms/checkbox').new(
@checkbox_componnent.new(
form: batch_actions_form_id,
"data-action": "#{stimulus_id}#selectAllRows",
"data-#{stimulus_id}-target": "headerCheckbox",
"aria-label": t('.select_all'),
)
},
data: ->(data) {
component('ui/forms/checkbox').new(
@checkbox_componnent.new(
name: "id[]",
form: batch_actions_form_id,
value: data.id,
Expand All @@ -54,7 +73,7 @@ def batch_actions_form_id
end

def render_batch_action_button(batch_action)
render component('ui/button').new(
render @button_component.new(
name: request_forgery_protection_token,
value: form_authenticity_token(form_options: {
action: batch_action.action,
Expand Down