Skip to content

Commit c688da1

Browse files
committed
Wrap deface overrides in a module and add relation type menu
Zeitwerk expects a class or module correctly named in these files. We can simply create the expected named modules to appease Zeitwerk. Add relation type in backend menu using initializer.
1 parent d4ecda2 commit c688da1

7 files changed

+49
-35
lines changed

app/overrides/add_product_relation_admin_sub_menu_tab.rb

-9
This file was deleted.

app/overrides/add_related_product_admin_tabs.rb

-9
This file was deleted.

app/overrides/add_related_products_to_variant.rb

-8
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# frozen_string_literal: true
2+
3+
module SolidusRelatedProduct
4+
module AddRelatedProductAdminTabs
5+
Deface::Override.new(
6+
virtual_path: 'spree/admin/shared/_product_tabs',
7+
name: 'add_related_products_admin_tab',
8+
insert_bottom: '[data-hook="admin_product_tabs"]',
9+
partial: 'spree/admin/products/related_products',
10+
original: '4baaf4bff6bb1ddf0a8f9592833bd5794a3b1943'
11+
)
12+
end
13+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# frozen_string_literal: true
2+
3+
module SolidusRelatedProduct
4+
module AddRelatedProductsToVariant
5+
Deface::Override.new(
6+
virtual_path: 'spree/admin/variants/edit',
7+
name: 'add_related_products_to_variant',
8+
insert_before: "erb[loud]:contains('form_for')",
9+
partial: 'spree/admin/variants/related'
10+
)
11+
end
12+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# frozen_string_literal: true
2+
3+
Rails.application.config.to_prepare do
4+
Spree::Backend::Config.configure do |config|
5+
config.menu_items = config.menu_items.map do |item|
6+
if item.label.to_sym == :products
7+
# The API of the MenuItem class changes in Solidus 4.2.0
8+
if item.respond_to?(:children)
9+
unless item.children.any? { |child| child.label == :relation_types }
10+
item.children << Spree::BackendConfiguration::MenuItem.new(
11+
label: :relation_types,
12+
condition: -> { can?(:admin, Spree::RelationType) },
13+
url: -> { Spree::Core::Engine.routes.url_helpers.admin_relation_types_path },
14+
match_path: "/relation_types"
15+
)
16+
end
17+
else
18+
item.sections << :relation_types
19+
end
20+
end
21+
item
22+
end
23+
end
24+
end

config/initializers/spree.rb

-9
This file was deleted.

0 commit comments

Comments
 (0)