alchemy_cms 5.3.7 → 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 -84
- 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 -30
- 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 +41 -30
- 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 -8
- 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/selects.scss +4 -0
- 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/nodes_controller.rb +0 -1
- 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 +14 -7
- 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 -42
- 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 +23 -95
- data/app/models/alchemy/picture.rb +5 -3
- data/app/models/alchemy/picture_variant.rb +1 -3
- 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 +1 -8
- 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_node_editor.html.erb +1 -1
- 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/alchemy/config.yml +0 -1
- data/config/brakeman.ignore +66 -159
- data/config/initializers/dragonfly.rb +2 -2
- 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 -19
- data/lib/alchemy/essence.rb +1 -2
- data/lib/alchemy/hints.rb +1 -1
- data/lib/alchemy/page_layout.rb +2 -19
- 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 +8 -8
- data/package/src/picture_editors.js +169 -0
- data/package/src/utils/__tests__/ajax.spec.js +16 -52
- data/package/src/utils/ajax.js +0 -12
- 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/alchemy_admin/select2.scss +1 -1
- data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
- metadata +291 -54
- 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/dragonfly/processors/thumbnail.rb +0 -27
- 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 -62
- data/package/src/sitemap.js +0 -148
@@ -6,23 +6,6 @@
|
|
6
6
|
'<%= sanitize(@parent_element.preview_text.presence || ' ') %>'
|
7
7
|
);
|
8
8
|
<% end %>
|
9
|
-
|
10
|
-
<% if @trashed_element_ids.any? %>
|
11
|
-
|
12
|
-
$('#element_area .ajax-folder').show();
|
13
|
-
<% element_ids = @trashed_element_ids.collect do |id|
|
14
|
-
"#element_area [data-element-id=\"#{id}\"]"
|
15
|
-
end.join(", ").html_safe %>
|
16
|
-
<% @trashed_element_ids.each do |id| %>
|
17
|
-
$('<%= element_ids %>').each(function() { this.id = 'element_' + <%= id %> });
|
18
|
-
<% end %>
|
19
|
-
Alchemy.growl('<%= Alchemy.t(:successfully_restored_element) -%>');
|
20
|
-
|
21
|
-
<% else %>
|
22
|
-
|
23
9
|
Alchemy.growl('<%= Alchemy.t(:successfully_saved_element_position) -%>');
|
24
|
-
|
25
|
-
<% end %>
|
26
|
-
|
27
10
|
Alchemy.PreviewWindow.refresh();
|
28
11
|
})();
|
@@ -1,7 +1,7 @@
|
|
1
1
|
(function() {
|
2
2
|
var $el = $('#element_<%= @element.id %>');
|
3
3
|
var $errors = $('#element_<%= @element.id %>_errors');
|
4
|
-
$('> .element-content .content_editor', $el).removeClass('validation_failed');
|
4
|
+
$('> .element-content .content_editor, > .element-content .ingredient_editor', $el).removeClass('validation_failed');
|
5
5
|
|
6
6
|
<%- if @element_validated -%>
|
7
7
|
|
@@ -15,9 +15,10 @@
|
|
15
15
|
<%- else -%>
|
16
16
|
|
17
17
|
Alchemy.growl('<%= j @notice %>', 'warn');
|
18
|
-
$errors.html('<%= j @error_message %><ul><li><%== j @
|
18
|
+
$errors.html('<%= j @error_message %><ul><li><%== j @error_messages.join("</li><li>") %></li></ul>');
|
19
19
|
$errors.show();
|
20
20
|
$('<%= @element.contents_with_errors.map { |content| "#" + content.dom_id }.join(", ") %>').addClass('validation_failed');
|
21
|
+
$('<%== @element.ingredients_with_errors.map { |ingredient| "[data-ingredient-id=\"#{ingredient.id}\"]" }.join(", ") %>').addClass('validation_failed');
|
21
22
|
Alchemy.Buttons.enable($el);
|
22
23
|
|
23
24
|
<%- end -%>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<%= alchemy_form_for [:admin, @essence_video] do |f| %>
|
2
|
+
<%= f.input :width %>
|
3
|
+
<%= f.input :height %>
|
4
|
+
<%= f.input :autoplay %>
|
5
|
+
<%= f.input :controls %>
|
6
|
+
<%= f.input :loop %>
|
7
|
+
<%= f.input :muted %>
|
8
|
+
<%= f.input :preload, collection: %w(auto none metadata),
|
9
|
+
include_blank: false, input_html: {class: 'alchemy_selectbox'} %>
|
10
|
+
<%= f.submit Alchemy.t(:save) %>
|
11
|
+
<% end %>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<% css_classes = ingredient.settings[:css_classes] %>
|
2
|
+
|
3
|
+
<%= f.input :link_text %>
|
4
|
+
<%= f.input :title %>
|
5
|
+
<%- if css_classes.present? -%>
|
6
|
+
<%= f.input :css_class,
|
7
|
+
collection: css_classes,
|
8
|
+
include_blank: Alchemy.t('None'),
|
9
|
+
input_html: {class: 'alchemy_selectbox'} %>
|
10
|
+
<%- else -%>
|
11
|
+
<%= f.input :css_class,
|
12
|
+
label: Alchemy.t(:position_in_text),
|
13
|
+
collection: [
|
14
|
+
[Alchemy.t(:above), "no_float"],
|
15
|
+
[Alchemy.t(:left), "left"],
|
16
|
+
[Alchemy.t(:right), "right"]
|
17
|
+
], include_blank: Alchemy.t('Layout default'), input_html: {class: 'alchemy_selectbox'} %>
|
18
|
+
<%- end -%>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<%= f.input :caption, as: ingredient.settings[:caption_as_textarea] ? 'text' : 'string' %>
|
2
|
+
<%= f.input :title %>
|
3
|
+
<%= f.input :alt_tag %>
|
4
|
+
<%- if ingredient.settings[:sizes].present? && ingredient.settings[:srcset].blank? -%>
|
5
|
+
<%= f.input :render_size,
|
6
|
+
collection: [
|
7
|
+
[Alchemy.t('Layout default'), ""]
|
8
|
+
] + ingredient.settings[:sizes].to_a,
|
9
|
+
include_blank: false,
|
10
|
+
input_html: {class: 'alchemy_selectbox'} %>
|
11
|
+
<%- end -%>
|
12
|
+
<%- if ingredient.settings[:css_classes].present? -%>
|
13
|
+
<%= f.input :css_class,
|
14
|
+
collection: ingredient.settings[:css_classes],
|
15
|
+
include_blank: Alchemy.t('None'),
|
16
|
+
input_html: {class: 'alchemy_selectbox'} %>
|
17
|
+
<%- else -%>
|
18
|
+
<%= f.input :css_class,
|
19
|
+
label: Alchemy.t(:position_in_text),
|
20
|
+
collection: [
|
21
|
+
[Alchemy.t(:above), "no_float"],
|
22
|
+
[Alchemy.t(:left), "left"],
|
23
|
+
[Alchemy.t(:right), "right"]
|
24
|
+
], include_blank: Alchemy.t("Layout default"), input_html: {class: 'alchemy_selectbox'} %>
|
25
|
+
<%- end -%>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<%= f.input :width %>
|
2
|
+
<%= f.input :height %>
|
3
|
+
<%= f.input :autoplay, as: :boolean %>
|
4
|
+
<%= f.input :controls, as: :boolean %>
|
5
|
+
<%= f.input :loop, as: :boolean %>
|
6
|
+
<%= f.input :muted, as: :boolean %>
|
7
|
+
<%= f.input :preload, collection: %w(auto none metadata),
|
8
|
+
include_blank: false, input_html: {class: 'alchemy_selectbox'} %>
|
@@ -1,9 +1,4 @@
|
|
1
1
|
<%= alchemy_form_for [:admin, @page], class: 'edit_page' do |f| %>
|
2
|
-
<%= f.input :page_layout,
|
3
|
-
collection: @page_layouts,
|
4
|
-
label: page_layout_label(@page),
|
5
|
-
include_blank: Alchemy.t('Please choose'),
|
6
|
-
input_html: {class: 'alchemy_selectbox'} %>
|
7
2
|
<%= f.input :name, autofocus: true %>
|
8
3
|
<div class="input string">
|
9
4
|
<%= f.label :tag_list %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= content_tag :li, class: 'menu-item', data: { id: node.id, parent_id: node.parent_id, folded: node.folded
|
1
|
+
<%= content_tag :li, class: 'menu-item', data: { id: node.id, parent_id: node.parent_id, folded: node.folded?, type: "node" } do %>
|
2
2
|
<%= content_tag :div, class: [
|
3
3
|
'sitemap_node',
|
4
4
|
node.external? ? 'external' : 'internal',
|
@@ -67,7 +67,7 @@
|
|
67
67
|
<% end %>
|
68
68
|
</div>
|
69
69
|
<% end %>
|
70
|
-
<%= content_tag :ul, class: "children #{' folded' if node.folded?}", data: {
|
70
|
+
<%= content_tag :ul, class: "children #{' folded' if node.folded?}", data: { record_id: node.id } do %>
|
71
71
|
<%= render partial: 'node', collection: node.children.includes(:page, :children) %>
|
72
72
|
<% end %>
|
73
73
|
<% end %>
|
@@ -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),
|