alchemy-custom-model 3.1.1 → 3.1.2
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/views/alchemy/admin/nodes/_form.html.erb +44 -63
- data/lib/alchemy/custom/model/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55c17f5ce203eedbd4ad364be3ed1302d1d4dd7d4216613238e844e0ed5fabee
|
4
|
+
data.tar.gz: 546fdbb3be926f0e8a32fd6e03dd9bff4abcc8c4a6fc359b81af0fa1323ee59a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 167b7b826b42af9a46bd7c35f790afca9cabeb5557166f6823bc3303974137000f3ead2b6f8f8934c5477f6d8d8e3d421fe28d476d14b65c28857a4fcf91e92e
|
7
|
+
data.tar.gz: 638a5b8b4d714ce849501652cf47f4cb7e715006aea25d596713d6f743bcf40d4a3bc68b6eac051462da7fefd18d998072f475879fcdc350ebd906b461052101
|
@@ -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>
|