alchemy_cms 5.3.1 → 6.0.0.b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +6 -14
- data/.gitignore +1 -1
- data/.hound.yml +1 -1
- data/.rubocop.yml +46 -4
- data/CHANGELOG.md +80 -52
- data/Gemfile +4 -2
- data/README.md +5 -2
- data/Rakefile +0 -18
- data/alchemy_cms.gemspec +78 -65
- data/app/assets/javascripts/alchemy/admin.js +2 -2
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +2 -7
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
- data/app/assets/javascripts/alchemy/alchemy.page_sorter.js +24 -0
- data/app/assets/javascripts/alchemy/alchemy.sitemap.js.coffee +119 -0
- data/app/assets/javascripts/alchemy/page_select.js +8 -13
- data/app/assets/javascripts/alchemy/templates/index.js +0 -1
- data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
- data/app/assets/javascripts/alchemy/templates/page.hbs +7 -17
- data/app/assets/stylesheets/alchemy/admin.scss +1 -1
- data/app/assets/stylesheets/alchemy/archive.scss +4 -4
- data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
- data/app/assets/stylesheets/alchemy/elements.scss +73 -61
- data/app/assets/stylesheets/alchemy/images.scss +8 -0
- data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
- data/app/assets/stylesheets/alchemy/page-select.scss +5 -29
- data/app/assets/stylesheets/alchemy/sitemap.scss +7 -9
- data/app/assets/stylesheets/tinymce/skins/alchemy/content.min.css.scss +3 -3
- data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +7 -7
- data/app/controllers/alchemy/admin/attachments_controller.rb +6 -2
- data/app/controllers/alchemy/admin/base_controller.rb +8 -16
- data/app/controllers/alchemy/admin/elements_controller.rb +58 -34
- data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
- data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
- data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
- data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
- data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +19 -23
- data/app/controllers/alchemy/admin/pictures_controller.rb +35 -9
- data/app/controllers/alchemy/api/elements_controller.rb +10 -5
- data/app/controllers/alchemy/api/pages_controller.rb +3 -15
- data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
- data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
- data/app/decorators/alchemy/element_editor.rb +23 -1
- data/app/decorators/alchemy/ingredient_editor.rb +154 -0
- data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
- data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
- data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
- data/app/helpers/alchemy/elements_block_helper.rb +22 -7
- data/app/helpers/alchemy/elements_helper.rb +12 -5
- data/app/helpers/alchemy/pages_helper.rb +3 -11
- data/app/jobs/alchemy/base_job.rb +11 -0
- data/app/jobs/alchemy/publish_page_job.rb +11 -0
- data/app/models/alchemy/attachment.rb +1 -1
- data/app/models/alchemy/content/factory.rb +23 -27
- data/app/models/alchemy/content.rb +1 -6
- data/app/models/alchemy/element/definitions.rb +29 -27
- data/app/models/alchemy/element/element_contents.rb +131 -122
- data/app/models/alchemy/element/element_essences.rb +100 -98
- data/app/models/alchemy/element/element_ingredients.rb +176 -0
- data/app/models/alchemy/element/presenters.rb +89 -87
- data/app/models/alchemy/element.rb +40 -73
- data/app/models/alchemy/elements_repository.rb +126 -0
- data/app/models/alchemy/essence_audio.rb +12 -0
- data/app/models/alchemy/essence_headline.rb +40 -0
- data/app/models/alchemy/essence_picture.rb +4 -116
- data/app/models/alchemy/essence_richtext.rb +12 -0
- data/app/models/alchemy/essence_video.rb +12 -0
- data/app/models/alchemy/image_cropper_settings.rb +87 -0
- data/app/models/alchemy/ingredient.rb +219 -0
- data/app/models/alchemy/ingredient_validator.rb +97 -0
- data/app/models/alchemy/ingredients/audio.rb +29 -0
- data/app/models/alchemy/ingredients/boolean.rb +21 -0
- data/app/models/alchemy/ingredients/datetime.rb +20 -0
- data/app/models/alchemy/ingredients/file.rb +30 -0
- data/app/models/alchemy/ingredients/headline.rb +42 -0
- data/app/models/alchemy/ingredients/html.rb +19 -0
- data/app/models/alchemy/ingredients/link.rb +16 -0
- data/app/models/alchemy/ingredients/node.rb +23 -0
- data/app/models/alchemy/ingredients/page.rb +23 -0
- data/app/models/alchemy/ingredients/picture.rb +41 -0
- data/app/models/alchemy/ingredients/richtext.rb +57 -0
- data/app/models/alchemy/ingredients/select.rb +10 -0
- data/app/models/alchemy/ingredients/text.rb +17 -0
- data/app/models/alchemy/ingredients/video.rb +33 -0
- data/app/models/alchemy/language.rb +0 -11
- data/app/models/alchemy/node.rb +1 -1
- data/app/models/alchemy/page/fixed_attributes.rb +53 -51
- data/app/models/alchemy/page/page_elements.rb +186 -205
- data/app/models/alchemy/page/page_naming.rb +66 -64
- data/app/models/alchemy/page/page_natures.rb +139 -142
- data/app/models/alchemy/page/page_scopes.rb +113 -102
- data/app/models/alchemy/page/publisher.rb +50 -0
- data/app/models/alchemy/page/url_path.rb +1 -1
- data/app/models/alchemy/page.rb +69 -36
- data/app/models/alchemy/page_version.rb +58 -0
- data/app/models/alchemy/picture/calculations.rb +2 -8
- data/app/models/alchemy/picture/preprocessor.rb +2 -0
- data/app/models/alchemy/picture/transformations.rb +21 -93
- data/app/models/alchemy/picture.rb +4 -2
- data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
- data/app/models/concerns/alchemy/touch_elements.rb +2 -2
- data/app/presenters/alchemy/picture_view.rb +88 -0
- data/app/serializers/alchemy/element_serializer.rb +5 -0
- data/app/serializers/alchemy/page_serializer.rb +1 -7
- data/app/serializers/alchemy/page_tree_serializer.rb +6 -5
- data/app/services/alchemy/delete_elements.rb +44 -0
- data/app/services/alchemy/duplicate_element.rb +56 -0
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +1 -2
- data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
- data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
- data/app/views/alchemy/admin/crop.html.erb +36 -0
- data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
- data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
- data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
- data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +1 -3
- data/app/views/alchemy/admin/elements/new.html.erb +3 -3
- data/app/views/alchemy/admin/elements/order.js.erb +0 -17
- data/app/views/alchemy/admin/elements/update.js.erb +3 -2
- data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
- data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
- data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
- data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
- data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
- data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
- data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
- data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_form.html.erb +0 -25
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_new_page_form.html.erb +5 -16
- data/app/views/alchemy/admin/pages/_page.html.erb +133 -111
- data/app/views/alchemy/admin/pages/_sitemap.html.erb +16 -10
- data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
- data/app/views/alchemy/admin/pages/_toolbar.html.erb +12 -0
- data/app/views/alchemy/admin/pages/edit.html.erb +37 -25
- data/app/views/alchemy/admin/pages/fold.js.erb +2 -0
- data/app/views/alchemy/admin/pages/index.html.erb +1 -1
- data/app/views/alchemy/admin/pages/sort.html.erb +19 -0
- data/app/views/alchemy/admin/pages/update.js.erb +0 -7
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
- data/app/views/alchemy/admin/partials/_routes.html.erb +8 -19
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +4 -8
- data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
- data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
- data/app/views/alchemy/admin/resources/_form.html.erb +1 -0
- data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
- data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
- data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
- data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
- data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
- data/app/views/alchemy/essences/_essence_page_editor.html.erb +1 -1
- data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
- data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
- data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
- data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
- data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
- data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
- data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
- data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_file_editor.html.erb +50 -0
- data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
- data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
- data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_node_editor.html.erb +25 -0
- data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_page_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +59 -0
- data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
- data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
- data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
- data/app/views/alchemy/ingredients/_select_editor.html.erb +29 -0
- data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_text_editor.html.erb +19 -0
- data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
- data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
- data/config/brakeman.ignore +66 -159
- data/config/initializers/dragonfly.rb +2 -0
- data/config/locales/alchemy.en.yml +26 -15
- data/config/routes.rb +19 -26
- data/db/migrate/20201207131309_create_page_versions.rb +19 -0
- data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
- data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
- data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
- data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
- data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
- data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
- data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
- data/lib/alchemy/admin/preview_url.rb +2 -0
- data/lib/alchemy/deprecation.rb +1 -1
- data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
- data/lib/alchemy/elements_finder.rb +14 -60
- data/lib/alchemy/engine.rb +1 -8
- data/lib/alchemy/essence.rb +1 -2
- data/lib/alchemy/hints.rb +8 -4
- data/lib/alchemy/page_layout.rb +0 -13
- data/lib/alchemy/permissions.rb +31 -29
- data/lib/alchemy/resource.rb +13 -3
- data/lib/alchemy/tasks/tidy.rb +29 -0
- data/lib/alchemy/test_support/essence_shared_examples.rb +0 -1
- data/lib/alchemy/test_support/factories/element_factory.rb +8 -8
- data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
- data/lib/alchemy/test_support/factories/page_factory.rb +20 -1
- data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
- data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
- data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
- data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
- data/lib/alchemy/test_support/shared_ingredient_examples.rb +57 -0
- data/lib/alchemy/test_support.rb +2 -11
- data/lib/alchemy/tinymce.rb +17 -0
- data/lib/alchemy/upgrader/five_point_zero.rb +0 -32
- data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
- data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
- data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +51 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy_cms.rb +0 -1
- data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
- data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
- data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
- data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
- data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
- data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
- data/lib/generators/alchemy/install/install_generator.rb +1 -2
- data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.erb +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.haml +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.slim +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
- data/lib/tasks/alchemy/tidy.rake +12 -0
- data/lib/tasks/alchemy/upgrade.rake +21 -15
- data/package/admin.js +8 -4
- data/package/src/file_editors.js +28 -0
- data/package/src/image_cropper.js +103 -0
- data/package/src/image_loader.js +58 -0
- data/package/src/node_tree.js +5 -5
- data/package/src/picture_editors.js +169 -0
- data/package/src/utils/__tests__/ajax.spec.js +20 -12
- data/package/src/utils/ajax.js +8 -3
- data/package.json +3 -2
- data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
- data/vendor/assets/javascripts/jquery_plugins/jquery.ui.nestedSortable.js +434 -0
- data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
- metadata +291 -53
- data/.rspec +0 -1
- data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
- data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
- data/app/assets/javascripts/alchemy/templates/page_folder.hbs +0 -3
- data/app/assets/stylesheets/alchemy/trash.scss +0 -8
- data/app/controllers/alchemy/admin/trash_controller.rb +0 -44
- data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
- data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
- data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
- data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
- data/app/views/alchemy/admin/trash/index.html.erb +0 -31
- data/lib/alchemy/error_tracking/airbrake_handler.rb +0 -13
- data/lib/alchemy/error_tracking.rb +0 -14
- data/lib/alchemy/test_support/factories.rb +0 -20
- data/package/src/page_publication_fields.js +0 -27
- data/package/src/page_sorter.js +0 -68
- data/package/src/sitemap.js +0 -152
@@ -17,6 +17,6 @@
|
|
17
17
|
<%= text_field_tag "anchor_link_title", '', class: 'link_title' %>
|
18
18
|
</div>
|
19
19
|
<div class="submit">
|
20
|
-
<%=
|
20
|
+
<%= button_tag Alchemy.t(:apply), class: 'create-link button', data: { link_type: 'anchor' } %>
|
21
21
|
</div>
|
22
22
|
<% end %>
|
@@ -26,6 +26,6 @@
|
|
26
26
|
class: 'alchemy_selectbox link_target' %>
|
27
27
|
</div>
|
28
28
|
<div class="submit">
|
29
|
-
<%=
|
29
|
+
<%= button_tag Alchemy.t(:apply), class: 'create-link button', data: { link_type: 'external' } %>
|
30
30
|
</div>
|
31
31
|
<% end %>
|
@@ -26,6 +26,6 @@
|
|
26
26
|
class: 'alchemy_selectbox link_target' %>
|
27
27
|
</div>
|
28
28
|
<div class="submit">
|
29
|
-
<%=
|
29
|
+
<%= button_tag Alchemy.t(:apply), class: 'create-link button', data: { link_type: 'file' } %>
|
30
30
|
</div>
|
31
31
|
<% end %>
|
@@ -1,14 +1,4 @@
|
|
1
1
|
<%= alchemy_form_for [:admin, @page], class: 'edit_page' do |f| %>
|
2
|
-
<% unless @page.language_root? || @page.layoutpage %>
|
3
|
-
<%= f.input :parent_id, required: true, input_html: { class: 'alchemy_selectbox' } %>
|
4
|
-
<% end %>
|
5
|
-
|
6
|
-
<%= f.input :page_layout,
|
7
|
-
collection: @page_layouts,
|
8
|
-
label: page_layout_label(@page),
|
9
|
-
include_blank: Alchemy.t('Please choose'),
|
10
|
-
input_html: {class: 'alchemy_selectbox'} %>
|
11
|
-
|
12
2
|
<div class="input check_boxes">
|
13
3
|
<label class="control-label"><%= Alchemy.t(:page_status) %></label>
|
14
4
|
<div class="control_group">
|
@@ -47,18 +37,3 @@
|
|
47
37
|
|
48
38
|
<%= f.submit Alchemy.t(:save) %>
|
49
39
|
<% end %>
|
50
|
-
|
51
|
-
<script>
|
52
|
-
$('#page_parent_id').alchemyPageSelect({
|
53
|
-
placeholder: "<%= Alchemy.t(:search_page) %>",
|
54
|
-
url: "<%= alchemy.api_pages_path %>",
|
55
|
-
allowClear: false,
|
56
|
-
<% if @page.parent %>
|
57
|
-
initialSelection: {
|
58
|
-
id: <%= @page.parent.id %>,
|
59
|
-
text: "<%= @page.parent.name %>",
|
60
|
-
url_path: "<%= @page.parent.url_path %>"
|
61
|
-
}
|
62
|
-
<% end %>
|
63
|
-
})
|
64
|
-
</script>
|
@@ -30,6 +30,6 @@
|
|
30
30
|
class: 'alchemy_selectbox link_target' %>
|
31
31
|
</div>
|
32
32
|
<div class="submit">
|
33
|
-
<%=
|
33
|
+
<%= button_tag Alchemy.t(:apply), class: 'create-link button', data: { link_type: 'internal' } %>
|
34
34
|
</div>
|
35
35
|
<% end %>
|
@@ -3,7 +3,11 @@
|
|
3
3
|
<%= f.hidden_field(:parent_id) %>
|
4
4
|
<% else %>
|
5
5
|
<% @page.parent = @current_language.root_page %>
|
6
|
-
<%= f.input :parent_id,
|
6
|
+
<%= f.input :parent_id,
|
7
|
+
collection: @current_language.pages.contentpages,
|
8
|
+
label_method: :name,
|
9
|
+
value_method: :id,
|
10
|
+
input_html: { class: "alchemy_selectbox" } %>
|
7
11
|
<% end %>
|
8
12
|
<%= f.hidden_field(:language_id) %>
|
9
13
|
<%= f.hidden_field(:layoutpage) %>
|
@@ -17,18 +21,3 @@
|
|
17
21
|
<%= f.input :name %>
|
18
22
|
<%= f.submit Alchemy.t(:create) %>
|
19
23
|
<% end %>
|
20
|
-
|
21
|
-
<script>
|
22
|
-
$('input[type="text"]#page_parent_id').alchemyPageSelect({
|
23
|
-
placeholder: "<%= Alchemy.t(:search_page) %>",
|
24
|
-
url: "<%= alchemy.api_pages_path %>",
|
25
|
-
allowClear: false,
|
26
|
-
<% if @page.parent %>
|
27
|
-
initialSelection: {
|
28
|
-
id: <%= @page.parent.id %>,
|
29
|
-
text: "<%= @page.parent.name %>",
|
30
|
-
url_path: "<%= @page.parent.url_path %>"
|
31
|
-
}
|
32
|
-
<% end %>
|
33
|
-
})
|
34
|
-
</script>
|
@@ -1,7 +1,24 @@
|
|
1
|
-
<li id="page_{{id}}" class="
|
1
|
+
<li id="page_{{id}}" class="page_level_{{level}} {{page_layout}}" data-slug="{{slug}}" data-restricted="{{restricted}}">
|
2
2
|
<div class="sitemap_page{{#if locked}} locked{{/if}}" name="{{name}}">
|
3
|
-
<div class="sitemap_left_images">
|
4
|
-
|
3
|
+
<div class="sitemap_left_images<% if @sorting %>{{#unless root}} handle{{/unless}}<% end %>">
|
4
|
+
<% unless @sorting %>
|
5
|
+
{{#unless root_or_leaf}}
|
6
|
+
<%= link_to(
|
7
|
+
alchemy.fold_admin_page_path(page),
|
8
|
+
remote: true,
|
9
|
+
method: :post,
|
10
|
+
class: "page_folder",
|
11
|
+
title: "{{#if folded}}#{Alchemy.t('Show childpages')}{{else}}#{Alchemy.t('Hide childpages')}{{/if}}",
|
12
|
+
id: "fold_button_{{id}}"
|
13
|
+
) do %>
|
14
|
+
{{#if folded}}
|
15
|
+
<i class="far fa-plus-square fa-fw"></i>
|
16
|
+
{{else}}
|
17
|
+
<i class="far fa-minus-square fa-fw"></i>
|
18
|
+
{{/if}}
|
19
|
+
<% end %>
|
20
|
+
{{/unless}}
|
21
|
+
<% end %>
|
5
22
|
{{#if definition_missing}}
|
6
23
|
<%= page_layout_missing_warning %>
|
7
24
|
{{else}}
|
@@ -14,121 +31,121 @@
|
|
14
31
|
</span>
|
15
32
|
</span>
|
16
33
|
{{else}}
|
17
|
-
<span class="{{#unless root}}handle{{/unless}}">
|
18
34
|
<i class="icon far fa-file fa-lg"></i>
|
19
|
-
</span>
|
20
35
|
{{/if}}
|
21
36
|
{{else}}
|
22
37
|
<span class="with-hint">
|
23
38
|
<i class="icon fas fa-ban fa-fw"></i>
|
24
39
|
<span class="hint-bubble">
|
25
|
-
<%= Alchemy.t(
|
40
|
+
<%= Alchemy.t('Your user role does not allow you to edit this page') %>
|
26
41
|
</span>
|
27
42
|
</span>
|
28
43
|
{{/if}}
|
29
44
|
{{/if}}
|
30
45
|
</div>
|
31
46
|
<div class="sitemap_right_tools">
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
47
|
+
<%- unless @sorting -%>
|
48
|
+
{{#if permissions.info}}
|
49
|
+
<div class="button_with_label sitemap_tool">
|
50
|
+
<%= link_to_dialog(
|
51
|
+
render_icon('info-circle'),
|
52
|
+
alchemy.info_admin_page_path(page),
|
53
|
+
{
|
54
|
+
title: Alchemy.t(:page_infos),
|
55
|
+
size: '520x290'
|
56
|
+
}
|
57
|
+
) %>
|
58
|
+
<label class="center"><%= Alchemy.t(:page_infos) %></label>
|
59
|
+
{{else}}
|
60
|
+
<div class="sitemap_tool disabled with-hint">
|
61
|
+
<%= render_icon('info-circle') %>
|
62
|
+
<span class="hint-bubble">
|
63
|
+
<%= Alchemy.t('Your user role does not allow you to edit this page') %>
|
64
|
+
</span>
|
65
|
+
{{/if}}
|
66
|
+
</div>
|
67
|
+
{{#if permissions.configure}}
|
68
|
+
<div class="button_with_label sitemap_tool">
|
69
|
+
<%= link_to_dialog(
|
70
|
+
render_icon(:cog),
|
71
|
+
alchemy.configure_admin_page_path(page),
|
72
|
+
{
|
73
|
+
title: Alchemy.t(:edit_page_properties),
|
74
|
+
size: '450x680'
|
75
|
+
}
|
76
|
+
) -%>
|
77
|
+
<label class="center"><%= Alchemy.t(:edit_page_properties) %></label>
|
78
|
+
{{else}}
|
79
|
+
<div class="sitemap_tool disabled with-hint">
|
80
|
+
<%= render_icon(:cog) %>
|
81
|
+
<span class="hint-bubble">
|
82
|
+
<%= Alchemy.t('Your user role does not allow you to edit this page') %>
|
83
|
+
</span>
|
84
|
+
{{/if}}
|
85
|
+
</div>
|
86
|
+
{{#if permissions.copy}}
|
87
|
+
<div class="button_with_label sitemap_tool">
|
88
|
+
<%= link_to(
|
89
|
+
render_icon(:copy),
|
90
|
+
alchemy.insert_admin_clipboard_path(
|
91
|
+
remarkable_type: page.class.name.demodulize.underscore.pluralize,
|
92
|
+
remarkable_id: '__ID__',
|
93
|
+
).gsub('__ID__', '{{id}}'),
|
94
|
+
remote: true,
|
95
|
+
method: 'post'
|
96
|
+
) %>
|
97
|
+
<label class="center"><%= Alchemy.t(:copy_page) %></label>
|
98
|
+
{{else}}
|
99
|
+
<div class="sitemap_tool disabled with-hint">
|
100
|
+
<%= render_icon(:copy) %>
|
101
|
+
<span class="hint-bubble">
|
102
|
+
<%= Alchemy.t('Your user role does not allow you to edit this page') %>
|
103
|
+
</span>
|
104
|
+
{{/if}}
|
105
|
+
</div>
|
106
|
+
{{#if permissions.destroy}}
|
107
|
+
<div class="button_with_label sitemap_tool">
|
108
|
+
<%= link_to_confirm_dialog(
|
109
|
+
render_icon(:minus),
|
110
|
+
Alchemy.t(:confirm_to_delete_page),
|
111
|
+
url_for(
|
112
|
+
controller: 'pages',
|
113
|
+
action: 'destroy',
|
114
|
+
id: '__ID__'
|
115
|
+
).gsub('__ID__', '{{id}}')
|
116
|
+
) -%>
|
117
|
+
<label class="center"><%= Alchemy.t(:delete_page) %></label>
|
118
|
+
{{else}}
|
119
|
+
<div class="sitemap_tool disabled with-hint">
|
120
|
+
<%= render_icon(:minus) %>
|
121
|
+
<span class="hint-bubble">
|
122
|
+
<%= Alchemy.t('Your user role does not allow you to edit this page') %>
|
123
|
+
</span>
|
124
|
+
{{/if}}
|
125
|
+
</div>
|
126
|
+
{{#if permissions.create}}
|
127
|
+
<div class="button_with_label sitemap_tool">
|
128
|
+
<%= link_to_dialog(
|
129
|
+
render_icon(:plus),
|
130
|
+
alchemy.new_admin_page_path(parent_id: '__ID__').gsub('__ID__', '{{id}}'),
|
131
|
+
{
|
132
|
+
title: Alchemy.t(:create_page),
|
133
|
+
size: '340x165',
|
134
|
+
overflow: true
|
135
|
+
}
|
136
|
+
) -%>
|
137
|
+
<label class="left"><%= Alchemy.t(:create_page) %></label>
|
138
|
+
{{else}}
|
139
|
+
<div class="sitemap_tool disabled with-hint">
|
140
|
+
<%= render_icon(:plus) %>
|
141
|
+
<span class="hint-bubble">
|
142
|
+
<%= Alchemy.t('Your user role does not allow you to edit this page') %>
|
143
|
+
</span>
|
144
|
+
{{/if}}
|
145
|
+
</div>
|
146
|
+
<%- end -%>
|
130
147
|
</div>
|
131
|
-
<div class="page_infos">
|
148
|
+
<div class="page_infos" id="page_<%= page.id %>_infos">
|
132
149
|
<span class="page_status with-hint">
|
133
150
|
<i class="icon fas fa-fw fa-compass {{#unless public}}disabled{{/unless}}" data-fa-transform="shrink-2"></i>
|
134
151
|
<span class="hint-bubble">{{status_titles.public}}</span>
|
@@ -143,18 +160,23 @@
|
|
143
160
|
</div>
|
144
161
|
<div class="sitemap_sitename">
|
145
162
|
{{#if permissions.edit_content}}
|
146
|
-
<%=
|
147
|
-
|
148
|
-
|
163
|
+
<%= link_to_unless(
|
164
|
+
@sorting,
|
165
|
+
'{{name}}',
|
166
|
+
alchemy.edit_admin_page_path(page),
|
149
167
|
title: Alchemy.t(:edit_page),
|
150
168
|
class: "sitemap_pagename_link"
|
151
|
-
) -%>
|
169
|
+
) { content_tag('span', '{{name}}', class: "sitemap_pagename_link") } -%>
|
152
170
|
{{else}}
|
153
|
-
<%= content_tag(
|
171
|
+
<%= content_tag('span', '{{name}}', class: "sitemap_pagename_link") %>
|
154
172
|
{{/if}}
|
155
173
|
</div>
|
156
174
|
</div>
|
157
|
-
|
175
|
+
{{#if children}}
|
176
|
+
<% unless @sorting %>{{#unless folded}}<% end %>
|
177
|
+
<ul id="page_{{id}}_children" class="level_{{level}}_children">
|
158
178
|
{{> list}}
|
159
179
|
</ul>
|
180
|
+
<% unless @sorting %>{{/unless}}<% end %>
|
181
|
+
{{/if}}
|
160
182
|
</li>
|
@@ -1,14 +1,15 @@
|
|
1
|
-
<h4 id="sitemap_heading">
|
2
|
-
<span class="page_name"><%= Alchemy::Page.human_attribute_name(:name) %></span>
|
3
|
-
<span class="page_urlname"><%= Alchemy::Page.human_attribute_name(:urlname) %></span>
|
4
|
-
<span class="page_status"><%= Alchemy.t(:page_status) %></span>
|
5
|
-
</h4>
|
6
|
-
|
7
1
|
<div id="sitemap-wrapper">
|
2
|
+
<h4 id="sitemap_heading">
|
3
|
+
<span class="page_name"><%= Alchemy::Page.human_attribute_name(:name) %></span>
|
4
|
+
<span class="page_urlname"><%= Alchemy::Page.human_attribute_name(:urlname) %></span>
|
5
|
+
<span class="page_status"><%= Alchemy.t(:page_status) %></span>
|
6
|
+
</h4>
|
7
|
+
|
8
|
+
<p class="loading"></p>
|
8
9
|
</div>
|
9
10
|
|
10
11
|
<script id="sitemap-template" type="text/x-handlebars-template">
|
11
|
-
<ul id="sitemap" class="list">
|
12
|
+
<ul id="sitemap" class="list<%= @sorting ? ' sorting' : nil %>">
|
12
13
|
{{> list}}
|
13
14
|
</ul>
|
14
15
|
</script>
|
@@ -21,10 +22,15 @@
|
|
21
22
|
|
22
23
|
<script type="text/javascript">
|
23
24
|
$(function() {
|
24
|
-
Alchemy.
|
25
|
+
Alchemy.Sitemap.init({
|
25
26
|
url: '<%= alchemy.tree_admin_pages_path %>',
|
26
|
-
page_root_id: <%= @page_root.id
|
27
|
+
page_root_id: <%= @page_root.id %>,
|
28
|
+
full: <%= full %>
|
29
|
+
<% if @sorting %>
|
30
|
+
,ready: function () {
|
31
|
+
Alchemy.PageSorter();
|
32
|
+
}
|
33
|
+
<% end %>
|
27
34
|
});
|
28
|
-
Alchemy.PagePublicationFields();
|
29
35
|
});
|
30
36
|
</script>
|
@@ -1,7 +1,10 @@
|
|
1
1
|
<script>
|
2
2
|
// Populate custom tinymce configurations
|
3
|
-
<%
|
4
|
-
|
3
|
+
<% (
|
4
|
+
Alchemy::Tinymce.custom_config_contents(@page) +
|
5
|
+
Alchemy::Tinymce.custom_config_ingredients(@page)
|
6
|
+
).each do |content| %>
|
7
|
+
Alchemy.Tinymce.customConfigs["<%= content['element'] %>_<%= content['name'] || content['role'] %>"] = {
|
5
8
|
<% content.fetch('settings', {}).fetch('tinymce', {}).each do |k, v| %>
|
6
9
|
<%= k %>: <%== v.to_json %>,
|
7
10
|
<% end %>
|
@@ -28,6 +28,18 @@
|
|
28
28
|
<label><%= Alchemy.t("Flush page cache") %></label>
|
29
29
|
</div>
|
30
30
|
<% end %>
|
31
|
+
<% if can?(:sort, Alchemy::Page) %>
|
32
|
+
<div class="button_with_label">
|
33
|
+
<%= link_to(
|
34
|
+
render_icon(:random),
|
35
|
+
alchemy.sort_admin_pages_path,
|
36
|
+
method: :get,
|
37
|
+
class: "icon_button",
|
38
|
+
title: Alchemy.t("Sort pages")
|
39
|
+
) %>
|
40
|
+
<label><%= Alchemy.t("Sort pages") %></label>
|
41
|
+
</div>
|
42
|
+
<% end %>
|
31
43
|
<div class="button_with_label" id="clipboard_button">
|
32
44
|
<%= link_to_dialog(
|
33
45
|
render_icon(clipboard_empty?("pages") ? :clipboard : :paste),
|
@@ -56,23 +56,44 @@
|
|
56
56
|
<% end %>
|
57
57
|
<label><%= Alchemy.t(:page_properties) %></label>
|
58
58
|
</div>
|
59
|
-
|
60
|
-
|
61
|
-
<%=
|
62
|
-
<%=
|
63
|
-
<%= render_icon('cloud-upload-alt') %>
|
64
|
-
<% end %>
|
65
|
-
<label><%= Alchemy.t("Publish page") %></label>
|
59
|
+
<div class="button_with_label">
|
60
|
+
<%= form_tag alchemy.publish_admin_page_path(@page), id: 'publish_page_form' do %>
|
61
|
+
<%= button_tag class: 'icon_button', disabled: cannot?(:publish, @page) do %>
|
62
|
+
<%= render_icon('cloud-upload-alt') %>
|
66
63
|
<% end %>
|
67
|
-
|
68
|
-
|
64
|
+
<label>
|
65
|
+
<% if @page.language.public? %>
|
66
|
+
<%= Alchemy.t(:explain_publishing) %>
|
67
|
+
<% elsif @page.editable_by?(current_alchemy_user) %>
|
68
|
+
<%= Alchemy.t(:publish_page_language_not_public) %>
|
69
|
+
<% else %>
|
70
|
+
<%= Alchemy.t(:publish_page_not_allowed) %>
|
71
|
+
<% end %>
|
72
|
+
</label>
|
73
|
+
<% end %>
|
74
|
+
</div>
|
69
75
|
<% unless @page.layoutpage? %>
|
70
76
|
<div class="button_with_label">
|
71
|
-
|
72
|
-
<%=
|
77
|
+
<% if @page.public? %>
|
78
|
+
<%= link_to show_page_url(
|
79
|
+
urlname: @page.urlname,
|
80
|
+
locale: prefix_locale? ? @page.language_code : nil,
|
81
|
+
host: @page.site.host == "*" ? request.host : @page.site.host,
|
82
|
+
),
|
83
|
+
title: Alchemy.t("Visit page"),
|
84
|
+
data: { turbolinks: false },
|
85
|
+
target: "_blank",
|
86
|
+
class: 'icon_button' do %>
|
73
87
|
<%= render_icon('external-link-alt') %>
|
74
88
|
<% end %>
|
75
89
|
<label><%= Alchemy.t("Visit page") %></label>
|
90
|
+
<% else %>
|
91
|
+
<%= content_tag "a",
|
92
|
+
title: Alchemy.t(:cannot_visit_unpublic_page),
|
93
|
+
class: 'disabled icon_button' do %>
|
94
|
+
<%= render_icon('external-link-alt') %>
|
95
|
+
<% end %>
|
96
|
+
<label><%= Alchemy.t(:cannot_visit_unpublic_page) %></label>
|
76
97
|
<% end %>
|
77
98
|
</div>
|
78
99
|
<% end %>
|
@@ -128,14 +149,14 @@
|
|
128
149
|
<script type="text/javascript" charset="utf-8">
|
129
150
|
|
130
151
|
$(function() {
|
131
|
-
$('#unlock_page_form, #
|
152
|
+
$('#unlock_page_form, #publish_page_form').on('submit', function(event) {
|
132
153
|
var not_dirty = Alchemy.checkPageDirtyness(this);
|
133
154
|
if (!not_dirty) Alchemy.pleaseWaitOverlay(false);
|
134
155
|
return not_dirty;
|
135
156
|
});
|
136
|
-
Alchemy.
|
157
|
+
Alchemy.Sitemap.watchPagePublicationState();
|
137
158
|
Alchemy.PageLeaveObserver();
|
138
|
-
Alchemy.ElementsWindow.init('<%= alchemy.admin_elements_path(
|
159
|
+
Alchemy.ElementsWindow.init('<%= alchemy.admin_elements_path(page_version_id: @page_version.id) %>', {
|
139
160
|
texts: {
|
140
161
|
title: '<%= Alchemy.t("Elements") %>',
|
141
162
|
dirtyTitle: '<%= Alchemy.t("Warning!") %>',
|
@@ -152,7 +173,7 @@
|
|
152
173
|
hotkey: 'alt+n',
|
153
174
|
iconClass: 'plus',
|
154
175
|
onClick: function() {
|
155
|
-
Alchemy.openDialog('<%= alchemy.new_admin_element_path(
|
176
|
+
Alchemy.openDialog('<%= alchemy.new_admin_element_path(page_version_id: @page_version.id) %>', {
|
156
177
|
title: '<%= Alchemy.t("New Element") %>',
|
157
178
|
size: '320x125'
|
158
179
|
});
|
@@ -169,15 +190,6 @@
|
|
169
190
|
size: '400x305'
|
170
191
|
});
|
171
192
|
}
|
172
|
-
},
|
173
|
-
{
|
174
|
-
title: '<%= Alchemy.t("Show trash") %>',
|
175
|
-
label: '<%= Alchemy.t("Show trash") %>',
|
176
|
-
iconClass: 'trash-alt<%= trash_empty?("elements") ? "" : " full" %>',
|
177
|
-
buttonId: 'element_trash_button',
|
178
|
-
onClick: function() {
|
179
|
-
Alchemy.TrashWindow.open(<%= @page.id %>, '<%= Alchemy.t("Trash") %>');
|
180
|
-
}
|
181
193
|
}
|
182
194
|
]
|
183
195
|
}, function() {
|
@@ -185,7 +197,7 @@
|
|
185
197
|
Alchemy.SortableElements(<%= @page.id %>, '<%= form_authenticity_token %>');
|
186
198
|
Alchemy.ElementEditors.init();
|
187
199
|
Alchemy.SelectBox('.element-editor');
|
188
|
-
Alchemy.Tinymce.init(<%= @page.richtext_contents_ids.to_json %>);
|
200
|
+
Alchemy.Tinymce.init(<%= (@page.richtext_contents_ids + @page.richtext_ingredients_ids).to_json %>);
|
189
201
|
$('#fixed-elements').tabs().tabs('paging', {
|
190
202
|
follow: true,
|
191
203
|
followOnSelect: true,
|
@@ -37,7 +37,7 @@
|
|
37
37
|
<% else %>
|
38
38
|
<% if @page_root %>
|
39
39
|
<h2 id="page_filter_result"></h2>
|
40
|
-
<%= render "sitemap", page_partial: "page" %>
|
40
|
+
<%= render "sitemap", page_partial: "page", full: !!@sorting %>
|
41
41
|
<% elsif can?(:create, Alchemy::Page) %>
|
42
42
|
<%= render partial: "create_language_form" %>
|
43
43
|
<% else %>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<% content_for :toolbar do %>
|
2
|
+
<div class="button_with_label">
|
3
|
+
<%= link_to alchemy.admin_pages_path, class: 'icon_button' do %>
|
4
|
+
<%= render_icon 'angle-double-left' %>
|
5
|
+
<% end %>
|
6
|
+
<label><%= Alchemy.t(:cancel) %></label>
|
7
|
+
</div>
|
8
|
+
<% end %>
|
9
|
+
|
10
|
+
<div id="sort_panel">
|
11
|
+
<%= render_message do %>
|
12
|
+
<%= Alchemy.t(:explain_sitemap_dragndrop_sorting) %>
|
13
|
+
<% end %>
|
14
|
+
<div class="buttons">
|
15
|
+
<%= button_tag Alchemy.t('save order'), id: 'save_page_order' %>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
<%= render 'sitemap', page_partial: 'page', full: true %>
|
@@ -13,13 +13,6 @@
|
|
13
13
|
Alchemy.growl("<%= j @notice %>");
|
14
14
|
Alchemy.closeCurrentDialog();
|
15
15
|
|
16
|
-
<% elsif @page.parent_id != @old_parent_id -%>
|
17
|
-
|
18
|
-
Alchemy.closeCurrentDialog(function() {
|
19
|
-
Alchemy.growl("<%= j @notice %>");
|
20
|
-
Alchemy.currentSitemap.load(<%= @page.get_language_root.id %>);
|
21
|
-
});
|
22
|
-
|
23
16
|
<% else -%>
|
24
17
|
|
25
18
|
if (page) {
|
@@ -3,8 +3,7 @@
|
|
3
3
|
size: @size,
|
4
4
|
}.merge(search_filter_params.except(:q))
|
5
5
|
), remote: true, html: {class: 'search_form', id: nil} do |f| %>
|
6
|
-
<%= hidden_field_tag
|
7
|
-
<%= hidden_field_tag("content_id", @content.blank? ? "" : @content.id, id: nil) %>
|
6
|
+
<%= hidden_field_tag :form_field_id, @form_field_id %>
|
8
7
|
<div class="search_field">
|
9
8
|
<button type="submit">
|
10
9
|
<%= render_icon('search') %>
|
@@ -15,8 +14,7 @@
|
|
15
14
|
id: nil %>
|
16
15
|
<%= link_to render_icon(:times, size: 'xs'), url_for({
|
17
16
|
action: 'index',
|
18
|
-
|
19
|
-
content_id: @content.blank? ? '' : @content.id,
|
17
|
+
form_field_id: @form_field_id,
|
20
18
|
size: @size,
|
21
19
|
overlay: true
|
22
20
|
}.merge(search_filter_params.except(:q))),
|