alchemy-custom-model 3.1.1 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/helpers/alchemy/custom/model/admin/orders_helper.rb +2 -2
- data/app/helpers/alchemy/pages_helper_decorator.rb +2 -2
- data/app/views/alchemy/admin/nodes/_form.html.erb +44 -63
- data/lib/alchemy/custom/model/el_finder/paths/file.rb +1 -1
- data/lib/alchemy/custom/model/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bbad88f9ec68973f280cadb8f488d43980a3656636a3774260184f775e47221
|
4
|
+
data.tar.gz: 8d98cbd63b2eeb5b47549490c98739083068de48cb6b92583dd83e0bb47de1bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9dbf82c2704abee454698d3df6f5b9c90a8b7a1452e257915f01812b518654415d4f3d1675f43db07962feebdc77db0a19373f4bd02f95d32a801d34a18b121
|
7
|
+
data.tar.gz: 4744e25446da17b14029fd732944e41dfe99b76595f6c6bff8cb213beb7258ef97760e2e79fe697191c7f13705e29fd465f774704e402c1c701a0c6f0fa992ae
|
@@ -8,7 +8,7 @@ module Alchemy::Custom::Model::Admin::OrdersHelper
|
|
8
8
|
end
|
9
9
|
|
10
10
|
def order_path(options = {})
|
11
|
-
new_polymorphic_path([:admin, base_class.to_s.pluralize.underscore, :order], options)
|
11
|
+
new_polymorphic_path([:admin, base_class.to_s.pluralize.underscore.to_sym, :order], options)
|
12
12
|
end
|
13
13
|
|
14
14
|
def index_ordered_path(obj = nil, options = {})
|
@@ -21,7 +21,7 @@ module Alchemy::Custom::Model::Admin::OrdersHelper
|
|
21
21
|
|
22
22
|
def update_order_path(obj=nil,options = {})
|
23
23
|
if obj.nil?
|
24
|
-
|
24
|
+
polymorphic_path([:admin, base_class.to_s.pluralize.underscore.to_sym, :order], options)
|
25
25
|
else
|
26
26
|
polymorphic_path([:admin, obj, :order], options)
|
27
27
|
|
@@ -110,14 +110,14 @@ Alchemy::PagesHelper.module_eval do
|
|
110
110
|
end
|
111
111
|
|
112
112
|
def render_menu_with_language(name, options = {})
|
113
|
-
root_node = Alchemy::Node.where(language_id: Alchemy::Language.current.id).roots.find_by(
|
113
|
+
root_node = Alchemy::Node.where(language_id: Alchemy::Language.current.id).roots.find_by(menu_type: name)
|
114
114
|
if root_node.nil?
|
115
115
|
warning("Menu with name #{name} not found!")
|
116
116
|
return
|
117
117
|
end
|
118
118
|
|
119
119
|
options = {
|
120
|
-
|
120
|
+
node_partial_name: "#{root_node.to_partial_path}"
|
121
121
|
}.merge(options)
|
122
122
|
|
123
123
|
render(root_node, menu: root_node, node: root_node, options: options)
|
@@ -1,75 +1,57 @@
|
|
1
1
|
<%= alchemy_form_for([:admin, node]) do |f| %>
|
2
|
+
<% if node.new_record? && node.root? %>
|
3
|
+
<%= f.input :menu_type,
|
4
|
+
collection: Alchemy::Language.current.available_menu_names.map { |n| [I18n.t(n, scope: [:alchemy, :menu_names]), n] },
|
5
|
+
include_blank: false,
|
6
|
+
input_html: { class: 'alchemy_selectbox' } %>
|
2
7
|
|
3
|
-
<%
|
4
|
-
|
5
|
-
|
6
|
-
<%= f.input :name,
|
7
|
-
collection: Alchemy::Node.available_menu_names.map { |n| [I18n.t(n, scope: [:alchemy, :menu_names]), n] },
|
8
|
-
include_blank: false,
|
9
|
-
input_html: {class: 'alchemy_selectbox'} %>
|
8
|
+
<% else %>
|
9
|
+
<% if node.root? %>
|
10
|
+
<%= f.input :name %>
|
10
11
|
<% else %>
|
11
12
|
<%= f.input :name, input_html: {
|
12
|
-
autofocus: true,
|
13
|
-
value: node.page && node.read_attribute(:name).blank? ? nil : node.name,
|
14
|
-
placeholder: node.page ? node.page.name : nil
|
15
|
-
} %>
|
16
|
-
<% end %>
|
17
|
-
|
18
|
-
<% else %>
|
19
|
-
|
20
|
-
<%= f.input :name, as: :string, input_html: {
|
21
13
|
autofocus: true,
|
22
14
|
value: node.page && node.read_attribute(:name).blank? ? nil : node.name,
|
23
15
|
placeholder: node.page ? node.page.name : nil
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
active_klass = (node.errors.keys.include? :custom_model_klass or
|
16
|
+
} %>
|
17
|
+
<%
|
18
|
+
active_klass = (node.errors.keys.include? :custom_model_klass or
|
28
19
|
node.custom_model?) ? "ui-tabs-active" : ""
|
29
|
-
|
20
|
+
%>
|
21
|
+
|
22
|
+
<div class="container_selctor_age_custom_model">
|
23
|
+
<div id="tabs_nodes" class="ui-tabs ui-corner-all ui-widget ui-widget-content">
|
24
|
+
<ul role="tablist" class="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header">
|
25
|
+
<li role="tab" tabindex="0" class="ui-tabs-tab ui-corner-top ui-state-default ui-tab">
|
26
|
+
<a href="#pages" role="presentation" tabindex="-1" class="ui-tabs-anchor" id="ui-id-1">
|
27
|
+
<%= Alchemy.t(:pages_select) %>
|
28
|
+
</a>
|
29
|
+
</li>
|
30
|
+
<li role="tab" tabindex="1" class="ui-tabs-tab ui-corner-top ui-tab <%= active_klass %>">
|
31
|
+
<a href="#custom_models" role="presentation" tabindex="1" class="ui-tabs-anchor" id="ui-id-2">
|
32
|
+
<%= Alchemy.t(:custom_models) %>
|
33
|
+
</a>
|
34
|
+
</li>
|
35
|
+
</ul>
|
36
|
+
<div id="custom_models" aria-labelledby="legacy_urls_label" role="tabpanel" class="ui-tabs-panel ui-corner-bottom ui-widget-content" aria-hidden="false">
|
37
|
+
<%= f.input :custom_model_klass, input_html: {class: 'alchemy_selectbox'} %>
|
38
|
+
<%= f.input :custom_model_method, input_html: {class: 'alchemy_selectbox'} %>
|
39
|
+
</div>
|
40
|
+
<div id="pages" aria-labelledby="ui-id-1" role="tabpanel" class="ui-tabs-panel ui-corner-bottom ui-widget-content" aria-hidden="false">
|
41
|
+
<%= f.input :page_id, label: Alchemy::Page.model_name.human, input_html: {class: 'alchemy_selectbox'} %>
|
42
|
+
<%= f.input :url, input_html: {disabled: node.page}, hint: Alchemy.t(:node_url_hint) %>
|
43
|
+
<%= f.input :title %>
|
44
|
+
<%= f.input :nofollow %>
|
45
|
+
<%= f.input :external %>
|
46
|
+
<%= f.hidden_field :parent_id %>
|
47
|
+
</div>
|
30
48
|
|
31
|
-
<div class="container_selctor_age_custom_model">
|
32
|
-
<div id="tabs_nodes" class="ui-tabs ui-corner-all ui-widget ui-widget-content">
|
33
|
-
<ul role="tablist" class="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header">
|
34
|
-
<li role="tab" tabindex="0" class="ui-tabs-tab ui-corner-top ui-state-default ui-tab">
|
35
|
-
<a href="#pages" role="presentation" tabindex="-1" class="ui-tabs-anchor" id="ui-id-1">
|
36
|
-
<%= Alchemy.t(:pages_select) %>
|
37
|
-
</a>
|
38
|
-
</li>
|
39
|
-
<li role="tab" tabindex="1" class="ui-tabs-tab ui-corner-top ui-tab <%= active_klass %>">
|
40
|
-
<a href="#custom_models" role="presentation" tabindex="1" class="ui-tabs-anchor" id="ui-id-2">
|
41
|
-
<%= Alchemy.t(:custom_models) %>
|
42
|
-
</a>
|
43
|
-
</li>
|
44
|
-
</ul>
|
45
|
-
<div id="custom_models" aria-labelledby="legacy_urls_label" role="tabpanel" class="ui-tabs-panel ui-corner-bottom ui-widget-content" aria-hidden="false">
|
46
|
-
<%= f.input :custom_model_klass, input_html: {class: 'alchemy_selectbox'} %>
|
47
|
-
<%= f.input :custom_model_method, input_html: {class: 'alchemy_selectbox'} %>
|
48
|
-
</div>
|
49
|
-
<div id="pages" aria-labelledby="ui-id-1" role="tabpanel" class="ui-tabs-panel ui-corner-bottom ui-widget-content" aria-hidden="false">
|
50
|
-
<%= f.input :page_id, label: Alchemy::Page.model_name.human, input_html: {class: 'alchemy_selectbox'} %>
|
51
|
-
<%= f.input :url, input_html: {disabled: node.page}, hint: Alchemy.t(:node_url_hint) %>
|
52
|
-
<%= f.input :title %>
|
53
|
-
<%= f.input :nofollow %>
|
54
|
-
<%= f.input :external %>
|
55
|
-
<%= f.hidden_field :parent_id %>
|
56
49
|
</div>
|
57
|
-
|
58
50
|
</div>
|
59
|
-
</div>
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
51
|
|
65
|
-
|
66
|
-
<% end %>
|
67
|
-
<% if node.respond_to? :site_id %>
|
68
|
-
<%= f.hidden_field :site_id %>
|
69
|
-
<% end %>
|
70
|
-
<% if node.respond_to? :language_id %>
|
71
|
-
<%= f.hidden_field :language_id %>
|
52
|
+
<% end %>
|
72
53
|
<% end %>
|
54
|
+
<%= f.hidden_field :language_id %>
|
73
55
|
<%= f.submit button_label %>
|
74
56
|
<% end %>
|
75
57
|
|
@@ -102,7 +84,6 @@
|
|
102
84
|
|
103
85
|
})
|
104
86
|
|
105
|
-
$('#node_custom_model_method').select2('disable');
|
106
87
|
|
107
88
|
$('#node_page_id').alchemyPageSelect({
|
108
89
|
placeholder: "<%= Alchemy.t(:search_page) %>",
|
@@ -111,16 +92,16 @@
|
|
111
92
|
initialSelection: {
|
112
93
|
id: <%= node.page_id %>,
|
113
94
|
text: "<%= node.page.name %>",
|
114
|
-
|
95
|
+
url_path: "<%= node.page.url_path %>"
|
115
96
|
}
|
116
97
|
<% end %>
|
117
|
-
}).on('change', function
|
98
|
+
}).on('change', function(e) {
|
118
99
|
if (e.val === '') {
|
119
100
|
$('#node_name').removeAttr('placeholder')
|
120
101
|
$('#node_url').val('').prop('disabled', false)
|
121
102
|
} else {
|
122
103
|
$('#node_name').attr('placeholder', e.added.name)
|
123
|
-
$('#node_url').val(
|
104
|
+
$('#node_url').val(e.added.url_path).prop('disabled', true)
|
124
105
|
}
|
125
106
|
})
|
126
107
|
</script>
|
@@ -3,7 +3,7 @@ module Alchemy::Custom::Model::ElFinder
|
|
3
3
|
class File < ActiveRecordReference
|
4
4
|
|
5
5
|
def full_fill_paylod(payload)
|
6
|
-
payload[:original_url] = ::Alchemy::Engine.routes.url_helpers.download_attachment_path(id: active_record_instance.id, name: active_record_instance.
|
6
|
+
payload[:original_url] = ::Alchemy::Engine.routes.url_helpers.download_attachment_path(id: active_record_instance.id, name: active_record_instance.slug)
|
7
7
|
payload
|
8
8
|
end
|
9
9
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alchemy-custom-model
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alessandro Baccanelli
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-01-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: alchemy_cms
|