alchemy-solidus 6.2.0 → 6.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83134d605ab6eddb6cebeec22500f75a586bba99cafeb265d5ed87eb59ce46ad
4
- data.tar.gz: 7adfa3ac35bf9173eae869797cddba713eb26876229f2cf65ce5d705b017088c
3
+ metadata.gz: d0871f7a06ef602fcd95d7c20e3caf64016e226fd6741fb00634a1eadf8d1ee0
4
+ data.tar.gz: 4f8e1ea07ac7881657577aac59f70542aaf292a52c084a05eb56c736d8489156
5
5
  SHA512:
6
- metadata.gz: 16163761f5f000d13d0485c54b9d1332f2117678e4d631764d1d9198ac0cd2b8f2050813923ca9903bc0b95249289a0296e7bdd0d27caf7f50d38b1068715d99
7
- data.tar.gz: e49d6db23f3cd0f366f3497ee312e7bac59fde8f03ea6df12d708d78475caff6b87d1ee2348333c18f7e6683d1d7fee4ba950b9152ed96cc740b41175db917a4
6
+ metadata.gz: 066107a45e63c075b4fe68ad8588c396d0b60cba2af16e32881078aa29d356e34c72e4338150db683a23bda4489e34f51dc1960f216d74356afeec5e38d758ef
7
+ data.tar.gz: c92e64257ab9a192086ca5dffbf27f1ce32fb6435c1f82fa6f07994f933489359490002f519d10fe2206de53ff03571d88fb12f62692f0f29b6d718d3941211f
@@ -1,3 +1,68 @@
1
1
  if defined?(Alchemy::Devise::Engine)
2
2
  Spree.user_class = "Alchemy::User"
3
3
  end
4
+
5
+ Spree::Backend::Config.configure do |config|
6
+ alchemy_menu_item = if Spree.solidus_gem_version >= Gem::Version.new("4.2.0")
7
+ config.class::MenuItem.new(
8
+ label: :cms,
9
+ icon: "copy",
10
+ condition: -> { can?(:index, :alchemy_admin_dashboard) },
11
+ url: -> { Alchemy::Engine.routes.url_helpers.admin_dashboard_path },
12
+ children: [
13
+ config.class::MenuItem.new(
14
+ label: :pages,
15
+ condition: -> { can?(:index, :alchemy_admin_pages) },
16
+ url: -> { Alchemy::Engine.routes.url_helpers.admin_pages_path },
17
+ match_path: "/pages"
18
+ ),
19
+ config.class::MenuItem.new(
20
+ label: :languages,
21
+ condition: -> { can?(:index, :alchemy_admin_sites) },
22
+ url: -> { Alchemy::Engine.routes.url_helpers.admin_sites_path },
23
+ match_path: "/languages"
24
+ ),
25
+ (if defined?(Alchemy::Devise::Engine)
26
+ config.class::MenuItem.new(
27
+ label: :users,
28
+ condition: -> { can?(:index, :alchemy_admin_users) },
29
+ url: -> { Alchemy::Engine.routes.url_helpers.admin_users_path },
30
+ match_path: "/users"
31
+ )
32
+ end),
33
+ config.class::MenuItem.new(
34
+ label: :tags,
35
+ condition: -> { can?(:index, :alchemy_admin_tags) },
36
+ url: -> { Alchemy::Engine.routes.url_helpers.admin_tags_path }
37
+ ),
38
+ config.class::MenuItem.new(
39
+ label: :pictures,
40
+ condition: -> { can?(:index, :alchemy_admin_pictures) },
41
+ url: -> { Alchemy::Engine.routes.url_helpers.admin_pictures_path }
42
+ ),
43
+ config.class::MenuItem.new(
44
+ label: :attachments,
45
+ condition: -> { can?(:index, :alchemy_admin_attachments) },
46
+ url: -> { Alchemy::Engine.routes.url_helpers.admin_attachments_path }
47
+ )
48
+ ].compact
49
+ )
50
+ else
51
+ config.class::MenuItem.new(
52
+ [:pages, :sites, :languages, :tags, :users, :pictures, :attachments],
53
+ "copy",
54
+ label: :cms,
55
+ condition: -> { can?(:index, :alchemy_admin_dashboard) },
56
+ partial: "spree/admin/shared/alchemy_sub_menu",
57
+ url: "/admin/pages",
58
+ match_path: "/pages"
59
+ )
60
+ end
61
+ config.menu_items << alchemy_menu_item
62
+ end
63
+
64
+ Rails.application.config.after_initialize do
65
+ if Spree::Backend::Config.menu_items.many? { |menu_item| menu_item.label == :cms }
66
+ Alchemy::Deprecation.warn("You configured the Alchemy menu items in your app's initializers. We can do that for you now! Please remove the menu item with the label `:cms`.")
67
+ end
68
+ end
@@ -1,5 +1,5 @@
1
1
  module Alchemy
2
2
  module Solidus
3
- VERSION = "6.2.0"
3
+ VERSION = "6.3.0"
4
4
  end
5
5
  end
@@ -90,27 +90,6 @@ module Alchemy
90
90
  end
91
91
  end
92
92
 
93
- def inject_admin_tab
94
- inject_into_file "config/initializers/spree.rb",
95
- {
96
- after:
97
- "Spree::Backend::Config.configure do |config|\n"
98
- } do
99
- <<~ADMIN_TAB
100
- \ # AlchemyCMS admin tabs
101
- \ config.menu_items << config.class::MenuItem.new(
102
- \ [:pages, :sites, :languages, :tags, :users, :pictures, :attachments],
103
- \ 'copy',
104
- \ label: :cms,
105
- \ condition: -> { can?(:index, :alchemy_admin_dashboard) },
106
- \ partial: 'spree/admin/shared/alchemy_sub_menu',
107
- \ url: '/admin/pages',
108
- \ match_path: '/pages'
109
- \ )
110
- ADMIN_TAB
111
- end
112
- end
113
-
114
93
  def create_admin_user
115
94
  if alchemy_devise_present? && !options[:skip_alchemy_user_generator] &&
116
95
  Alchemy::User.count.zero?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy-solidus
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.0
4
+ version: 6.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-18 00:00:00.000000000 Z
11
+ date: 2023-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: alchemy_cms