-
-
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.
Merge pull request #5874 from MadelineCollier/admin-user-items-page
[Admin] Add new users admin items page
- Loading branch information
Showing
24 changed files
with
378 additions
and
101 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
41 changes: 41 additions & 0 deletions
41
admin/app/components/solidus_admin/users/items/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,41 @@ | ||
<%= page do %> | ||
<%= page_header do %> | ||
<%= page_header_back(solidus_admin.users_path) %> | ||
<%= page_header_title(t(".title", email: @user.email)) %> | ||
<%= page_header_actions do %> | ||
<%= render component("ui/button").new(tag: :a, text: t(".create_order_for_user"), href: spree.new_admin_order_path(user_id: @user.id)) %> | ||
<% end %> | ||
<% end %> | ||
<%= page_header do %> | ||
<% tabs.each do |tab| %> | ||
<%= render(component("ui/button").new(tag: :a, scheme: :ghost, text: tab[:text], 'aria-current': tab[:current], href: tab[:href])) %> | ||
<% end %> | ||
<% end %> | ||
<%= page_with_sidebar do %> | ||
<%= page_with_sidebar_main do %> | ||
<%= render component('ui/panel').new(title: t(".items_purchased")) do %> | ||
<% if @items.present? %> | ||
<%= render component('ui/table').new( | ||
id: stimulus_id, | ||
data: { | ||
class: model_class, | ||
rows: rows, | ||
columns: columns, | ||
url: -> { row_url(_1.order) }, | ||
}, | ||
)%> | ||
<% else %> | ||
<%= t(".no_orders_found") %> | ||
<%= render component("ui/button").new(tag: :a, text: t(".create_one"), href: spree.new_admin_order_path(user_id: @user.id)) %> | ||
<% end %> | ||
<% end %> | ||
<% end %> | ||
<%= page_with_sidebar_aside do %> | ||
<%= render component("users/stats").new(user: @user) %> | ||
<% end %> | ||
<% end %> | ||
<% end %> |
170 changes: 170 additions & 0 deletions
170
admin/app/components/solidus_admin/users/items/component.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,170 @@ | ||
# frozen_string_literal: true | ||
|
||
class SolidusAdmin::Users::Items::Component < SolidusAdmin::BaseComponent | ||
include SolidusAdmin::Layout::PageHelpers | ||
|
||
def initialize(user:, items:) | ||
@user = user | ||
@items = items | ||
end | ||
|
||
def tabs | ||
[ | ||
{ | ||
text: t('.account'), | ||
href: solidus_admin.user_path(@user), | ||
current: false, | ||
}, | ||
{ | ||
text: t('.addresses'), | ||
href: solidus_admin.addresses_user_path(@user), | ||
current: false, | ||
}, | ||
{ | ||
text: t('.order_history'), | ||
href: solidus_admin.orders_user_path(@user), | ||
current: false, | ||
}, | ||
{ | ||
text: t('.items'), | ||
href: solidus_admin.items_user_path(@user), | ||
current: true, | ||
}, | ||
{ | ||
text: t('.store_credit'), | ||
href: spree.admin_user_store_credits_path(@user), | ||
current: false, | ||
}, | ||
] | ||
end | ||
|
||
def model_class | ||
Spree::LineItem | ||
end | ||
|
||
def row_url(order) | ||
spree.edit_admin_order_path(order) | ||
end | ||
|
||
def rows | ||
@items | ||
end | ||
|
||
def columns | ||
[ | ||
date_column, | ||
image_column, | ||
description_column, | ||
price_column, | ||
quantity_column, | ||
total_column, | ||
state_column, | ||
number_column, | ||
] | ||
end | ||
|
||
def date_column | ||
{ | ||
col: { class: "w-[8%]" }, | ||
header: :date, | ||
data: ->(item) do | ||
content_tag :div, l(item.order.created_at, format: :short), class: "text-sm" | ||
end | ||
} | ||
end | ||
|
||
def image_column | ||
{ | ||
col: { class: "w-[8%]" }, | ||
header: tag.span('aria-label': Spree::Image.model_name.human, role: 'text'), | ||
data: ->(item) do | ||
image = item.variant.gallery.images.first || item.variant.product.gallery.images.first or return | ||
|
||
render( | ||
component('ui/thumbnail').new( | ||
src: image.url(:small), | ||
alt: item.product.name | ||
) | ||
) | ||
end | ||
} | ||
end | ||
|
||
def description_column | ||
{ | ||
col: { class: "w-[24%]" }, | ||
header: t(".description_column_header"), | ||
data: ->(item) { item_name_with_variant_and_sku(item) } | ||
} | ||
end | ||
|
||
def price_column | ||
{ | ||
col: { class: "w-[10%]" }, | ||
header: :price, | ||
data: ->(item) do | ||
content_tag :div, item.single_money.to_html | ||
end | ||
} | ||
end | ||
|
||
def quantity_column | ||
{ | ||
col: { class: "w-[7%]" }, | ||
header: :qty, | ||
data: ->(item) do | ||
content_tag :div, item.quantity | ||
end | ||
} | ||
end | ||
|
||
def total_column | ||
{ | ||
col: { class: "w-[10%]" }, | ||
header: t(".total_column_header"), | ||
data: ->(item) do | ||
content_tag :div, item.money.to_html | ||
end | ||
} | ||
end | ||
|
||
def state_column | ||
{ | ||
col: { class: "w-[15%]" }, | ||
header: :state, | ||
data: ->(item) do | ||
color = { | ||
'complete' => :green, | ||
'returned' => :red, | ||
'canceled' => :blue, | ||
'cart' => :graphite_light, | ||
}[item.order.state] || :yellow | ||
component('ui/badge').new(name: item.order.state.humanize, color: color) | ||
end | ||
} | ||
end | ||
|
||
def number_column | ||
{ | ||
col: { class: "w-[18%]" }, | ||
header: t(".number_column_header"), | ||
data: ->(item) do | ||
content_tag :div, item.order.number, class: "font-semibold text-sm" | ||
end | ||
} | ||
end | ||
|
||
private | ||
|
||
def item_name_with_variant_and_sku(item) | ||
content = [] | ||
content << item.product.name | ||
content << "(#{item.variant.options_text})" if item.variant.option_values.any? | ||
content << "<strong>#{t('spree.sku')}:</strong> #{item.variant.sku}" if item.variant.sku.present? | ||
|
||
# The `.html_safe` is required for the description to display as desired. | ||
# rubocop:disable Rails/OutputSafety | ||
safe_join([content_tag(:div, content.join("<br>").html_safe, class: "text-sm")]) | ||
# rubocop:enable Rails/OutputSafety | ||
end | ||
end |
16 changes: 16 additions & 0 deletions
16
admin/app/components/solidus_admin/users/items/component.yml
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,16 @@ | ||
en: | ||
title: "Users / %{email} / Items Purchased" | ||
account: Account | ||
addresses: Addresses | ||
order_history: Order History | ||
items: Items | ||
store_credit: Store Credit | ||
last_active: Last Active | ||
create_order_for_user: Create order for this user | ||
items_purchased: Items Purchased | ||
no_orders_found: No Orders found. | ||
create_one: Create One | ||
back: Back | ||
number_column_header: "Order #" | ||
description_column_header: "Description" | ||
total_column_header: "Total" |
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
Oops, something went wrong.