alchemy_cms 7.1.12 → 7.2.0.b
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +132 -29
- data/Gemfile +2 -4
- data/LICENSE +1 -1
- data/README.md +5 -6
- data/SECURITY.md +1 -1
- data/alchemy_cms.gemspec +3 -4
- data/app/assets/javascripts/alchemy/admin.js +0 -9
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +5 -15
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +5 -4
- 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_folder.hbs +1 -1
- data/app/assets/javascripts/tinymce/plugins/alchemy_link/plugin.min.js +20 -7
- data/app/assets/stylesheets/alchemy/_custom-properties.scss +12 -0
- data/app/assets/stylesheets/alchemy/_mixins.scss +10 -6
- data/app/assets/stylesheets/alchemy/_variables.scss +3 -0
- data/app/assets/stylesheets/alchemy/admin.scss +2 -2
- data/app/assets/stylesheets/alchemy/archive.scss +4 -3
- data/app/assets/stylesheets/alchemy/attachment-select.scss +19 -0
- data/app/assets/stylesheets/alchemy/base.scss +31 -18
- data/app/assets/stylesheets/alchemy/buttons.scss +3 -4
- data/app/assets/stylesheets/alchemy/dashboard.scss +1 -1
- data/app/assets/stylesheets/alchemy/dialogs.scss +2 -5
- data/app/assets/stylesheets/alchemy/elements.scss +73 -41
- data/app/assets/stylesheets/alchemy/flash.scss +20 -70
- data/app/assets/stylesheets/alchemy/forms.scss +41 -36
- data/app/assets/stylesheets/alchemy/frame.scss +12 -3
- data/app/assets/stylesheets/alchemy/icons.scss +34 -2
- data/app/assets/stylesheets/alchemy/image_library.scss +18 -9
- data/app/assets/stylesheets/alchemy/{filter_field.scss → list_filter.scss} +8 -7
- data/app/assets/stylesheets/alchemy/lists.scss +1 -1
- data/app/assets/stylesheets/alchemy/navigation.scss +9 -12
- data/app/assets/stylesheets/alchemy/node-select.scss +1 -1
- data/app/assets/stylesheets/alchemy/nodes.scss +15 -13
- data/app/assets/stylesheets/alchemy/notices.scss +56 -39
- data/app/assets/stylesheets/alchemy/page-select.scss +1 -4
- data/app/assets/stylesheets/alchemy/pagination.scss +11 -1
- data/app/assets/stylesheets/alchemy/preview_window.scss +3 -3
- data/app/assets/stylesheets/alchemy/search.scss +4 -4
- data/app/assets/stylesheets/alchemy/selects.scss +13 -7
- data/app/assets/stylesheets/alchemy/shoelace.scss +33 -2
- data/app/assets/stylesheets/alchemy/sitemap.scss +155 -159
- data/app/assets/stylesheets/alchemy/tables.scss +49 -12
- data/app/assets/stylesheets/alchemy/tags.scss +17 -11
- data/app/assets/stylesheets/alchemy/toolbar.scss +2 -2
- data/app/assets/stylesheets/alchemy/typography.scss +41 -22
- data/app/assets/stylesheets/alchemy/upload.scss +5 -4
- data/app/components/alchemy/admin/attachment_select.rb +39 -0
- data/app/components/alchemy/admin/icon.rb +72 -0
- data/app/components/alchemy/admin/link_dialog/anchor_tab.rb +41 -0
- data/app/components/alchemy/admin/link_dialog/base_tab.rb +75 -0
- data/app/components/alchemy/admin/link_dialog/external_tab.rb +42 -0
- data/app/components/alchemy/admin/link_dialog/file_tab.rb +45 -0
- data/app/components/alchemy/admin/link_dialog/internal_tab.rb +66 -0
- data/app/components/alchemy/admin/link_dialog/tabs.rb +33 -0
- data/app/components/alchemy/admin/list_filter.rb +42 -0
- data/app/components/alchemy/admin/message.rb +19 -0
- data/app/components/alchemy/admin/tags_autocomplete.rb +25 -0
- data/app/components/alchemy/admin/toolbar_button.rb +111 -0
- data/app/components/alchemy/ingredients/datetime_view.rb +2 -3
- data/app/components/alchemy/ingredients/link_view.rb +1 -7
- data/app/components/alchemy/ingredients/picture_view.rb +2 -2
- data/app/components/alchemy/ingredients/text_view.rb +1 -2
- data/app/controllers/alchemy/admin/base_controller.rb +1 -1
- data/app/controllers/alchemy/admin/elements_controller.rb +4 -2
- data/app/controllers/alchemy/admin/ingredients_controller.rb +2 -0
- data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
- data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -19
- data/app/controllers/alchemy/admin/legacy_page_urls_controller.rb +12 -4
- data/app/controllers/alchemy/admin/nodes_controller.rb +26 -0
- data/app/controllers/alchemy/admin/pages_controller.rb +11 -78
- data/app/controllers/alchemy/admin/picture_descriptions_controller.rb +15 -0
- data/app/controllers/alchemy/admin/pictures_controller.rb +18 -1
- data/app/controllers/alchemy/admin/resources_controller.rb +15 -10
- data/app/controllers/alchemy/api/attachments_controller.rb +44 -0
- data/app/controllers/alchemy/api/pages_controller.rb +10 -6
- data/app/controllers/alchemy/base_controller.rb +2 -2
- data/app/controllers/alchemy/messages_controller.rb +3 -3
- data/app/controllers/alchemy/pages_controller.rb +8 -6
- data/app/controllers/concerns/alchemy/admin/current_language.rb +1 -11
- data/app/controllers/concerns/alchemy/legacy_page_redirects.rb +1 -1
- data/app/decorators/alchemy/element_editor.rb +2 -2
- data/app/helpers/alchemy/admin/base_helper.rb +8 -60
- data/app/helpers/alchemy/admin/elements_helper.rb +1 -1
- data/app/helpers/alchemy/admin/ingredients_helper.rb +1 -1
- data/app/helpers/alchemy/base_helper.rb +9 -91
- data/app/helpers/alchemy/elements_helper.rb +3 -3
- data/app/helpers/alchemy/pages_helper.rb +16 -9
- data/app/javascript/alchemy_admin/components/attachment_select.js +24 -0
- data/app/javascript/alchemy_admin/components/button.js +3 -0
- data/app/javascript/alchemy_admin/components/clipboard_button.js +3 -2
- data/app/javascript/alchemy_admin/components/dialog_link.js +10 -7
- data/app/javascript/alchemy_admin/components/dom_id_select.js +69 -0
- data/app/javascript/alchemy_admin/components/element_editor/delete_element_button.js +42 -0
- data/app/javascript/alchemy_admin/components/element_editor/publish_element_button.js +4 -2
- data/app/javascript/alchemy_admin/components/element_editor.js +21 -13
- data/app/javascript/alchemy_admin/components/elements_window.js +87 -0
- data/app/javascript/alchemy_admin/components/growl.js +13 -0
- data/app/javascript/alchemy_admin/components/icon.js +51 -0
- data/app/javascript/alchemy_admin/components/index.js +24 -0
- data/app/javascript/alchemy_admin/components/ingredient_group.js +6 -0
- data/app/javascript/alchemy_admin/components/link_buttons/link_button.js +21 -11
- data/app/javascript/alchemy_admin/components/link_buttons/unlink_button.js +2 -1
- data/app/javascript/alchemy_admin/components/link_buttons.js +1 -0
- data/app/javascript/alchemy_admin/components/list_filter.js +68 -0
- data/app/javascript/alchemy_admin/components/message.js +69 -0
- data/app/javascript/alchemy_admin/components/node_select.js +1 -1
- data/app/javascript/alchemy_admin/components/overlay.js +6 -6
- data/app/javascript/alchemy_admin/components/page_select.js +3 -7
- data/app/javascript/alchemy_admin/components/preview_window.js +121 -0
- data/app/javascript/alchemy_admin/components/remote_select.js +4 -1
- data/app/javascript/alchemy_admin/components/select.js +37 -1
- data/app/javascript/alchemy_admin/components/tags_autocomplete.js +57 -0
- data/app/javascript/alchemy_admin/components/uploader/file_upload.js +4 -3
- data/app/javascript/alchemy_admin/components/uploader/progress.js +1 -1
- data/app/javascript/alchemy_admin/confirm_dialog.js +133 -0
- data/app/javascript/alchemy_admin/dirty.js +19 -14
- data/app/javascript/alchemy_admin/fixed_elements.js +24 -0
- data/app/javascript/alchemy_admin/growler.js +15 -0
- data/app/javascript/alchemy_admin/gui.js +2 -4
- data/app/javascript/alchemy_admin/hotkeys.js +60 -0
- data/app/javascript/alchemy_admin/image_loader.js +2 -2
- data/app/javascript/alchemy_admin/ingredient_anchor_link.js +2 -3
- data/app/javascript/alchemy_admin/initializer.js +1 -8
- data/app/javascript/alchemy_admin/link_dialog.js +131 -0
- data/app/javascript/alchemy_admin/locales/en.js +3 -0
- data/app/javascript/alchemy_admin/node_tree.js +4 -3
- data/app/javascript/alchemy_admin/page_sorter.js +23 -14
- data/app/javascript/alchemy_admin/picture_editors.js +6 -5
- data/app/javascript/alchemy_admin/shoelace_theme.js +60 -0
- data/app/javascript/alchemy_admin/sitemap.js +9 -3
- data/app/javascript/alchemy_admin/sortable_elements.js +4 -6
- data/app/javascript/alchemy_admin.js +18 -42
- data/app/models/alchemy/current.rb +26 -0
- data/app/models/alchemy/element.rb +1 -1
- data/app/models/alchemy/ingredients/audio.rb +0 -11
- data/app/models/alchemy/ingredients/datetime.rb +1 -1
- data/app/models/alchemy/ingredients/headline.rb +8 -1
- data/app/models/alchemy/ingredients/picture.rb +6 -0
- data/app/models/alchemy/ingredients/video.rb +0 -12
- data/app/models/alchemy/language.rb +8 -6
- data/app/models/alchemy/node.rb +2 -2
- data/app/models/alchemy/page/page_elements.rb +8 -8
- data/app/models/alchemy/page/page_layouts.rb +3 -3
- data/app/models/alchemy/page/page_natures.rb +13 -9
- data/app/models/alchemy/page/page_scopes.rb +2 -2
- data/app/models/alchemy/page/publisher.rb +1 -0
- data/app/models/alchemy/page.rb +13 -28
- data/app/models/alchemy/picture.rb +8 -0
- data/app/models/alchemy/picture_description.rb +8 -0
- data/app/models/alchemy/picture_variant.rb +1 -1
- data/app/models/alchemy/site.rb +10 -7
- data/app/serializers/alchemy/attachment_serializer.rb +8 -0
- data/app/serializers/alchemy/page_node_serializer.rb +9 -0
- data/app/views/alchemy/_menubar.html.erb +1 -1
- data/app/views/alchemy/_preview_mode_code.html.erb +1 -1
- data/app/views/alchemy/admin/attachments/_tag_list.html.erb +2 -2
- data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +0 -1
- data/app/views/alchemy/admin/attachments/edit.html.erb +3 -4
- data/app/views/alchemy/admin/clipboard/clear.js.erb +1 -1
- data/app/views/alchemy/admin/clipboard/index.html.erb +1 -1
- data/app/views/alchemy/admin/clipboard/insert.js.erb +1 -1
- data/app/views/alchemy/admin/clipboard/remove.js.erb +1 -1
- data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/_sites.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/help.html.erb +48 -12
- data/app/views/alchemy/admin/dashboard/index.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/info.html.erb +5 -8
- data/app/views/alchemy/admin/elements/_add_nested_element_form.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_element.html.erb +5 -5
- data/app/views/alchemy/admin/elements/_footer.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_header.html.erb +6 -2
- data/app/views/alchemy/admin/elements/_toolbar.html.erb +8 -6
- data/app/views/alchemy/admin/elements/create.js.erb +0 -5
- data/app/views/alchemy/admin/elements/index.html.erb +70 -34
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +1 -2
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +3 -5
- data/app/views/alchemy/admin/languages/_language.html.erb +1 -1
- data/app/views/alchemy/admin/languages/index.html.erb +2 -2
- data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +18 -18
- data/app/views/alchemy/admin/layoutpages/edit.html.erb +4 -5
- data/app/views/alchemy/admin/layoutpages/index.html.erb +2 -2
- data/app/views/alchemy/admin/legacy_page_urls/_legacy_page_url.html.erb +10 -11
- data/app/views/alchemy/admin/legacy_page_urls/_new.html.erb +15 -17
- data/app/views/alchemy/admin/legacy_page_urls/_table.html.erb +16 -0
- data/app/views/alchemy/admin/legacy_page_urls/_update.turbo_stream.erb +12 -0
- data/app/views/alchemy/admin/legacy_page_urls/create.turbo_stream.erb +8 -0
- data/app/views/alchemy/admin/legacy_page_urls/destroy.turbo_stream.erb +1 -0
- data/app/views/alchemy/admin/legacy_page_urls/edit.html.erb +27 -0
- data/app/views/alchemy/admin/legacy_page_urls/show.html.erb +1 -0
- data/app/views/alchemy/admin/legacy_page_urls/update.turbo_stream.erb +1 -0
- data/app/views/alchemy/admin/nodes/_form.html.erb +12 -11
- data/app/views/alchemy/admin/nodes/_label.html.erb +1 -0
- data/app/views/alchemy/admin/nodes/_node.html.erb +19 -19
- data/app/views/alchemy/admin/nodes/_page_nodes.html.erb +48 -0
- data/app/views/alchemy/admin/nodes/_update.turbo_stream.erb +9 -0
- data/app/views/alchemy/admin/nodes/create.turbo_stream.erb +1 -0
- data/app/views/alchemy/admin/nodes/destroy.turbo_stream.erb +1 -0
- data/app/views/alchemy/admin/nodes/index.html.erb +3 -3
- data/app/views/alchemy/admin/pages/_form.html.erb +3 -4
- data/app/views/alchemy/admin/pages/_legacy_urls.html.erb +4 -15
- data/app/views/alchemy/admin/pages/_page.html.erb +39 -39
- data/app/views/alchemy/admin/pages/_table_row.html.erb +3 -3
- data/app/views/alchemy/admin/pages/_toolbar.html.erb +2 -2
- data/app/views/alchemy/admin/pages/configure.html.erb +6 -0
- data/app/views/alchemy/admin/pages/edit.html.erb +15 -62
- data/app/views/alchemy/admin/pages/unlock.js.erb +3 -3
- data/app/views/alchemy/admin/partials/_autocomplete_tag_list.html.erb +3 -1
- data/app/views/alchemy/admin/partials/_flash_notices.html.erb +4 -2
- data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +1 -1
- data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +5 -2
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -2
- data/app/views/alchemy/admin/partials/_search_form.html.erb +2 -2
- data/app/views/alchemy/admin/partials/_site_select.html.erb +1 -1
- data/app/views/alchemy/admin/picture_descriptions/_form.html.erb +11 -0
- data/app/views/alchemy/admin/picture_descriptions/edit.html.erb +6 -0
- data/app/views/alchemy/admin/pictures/_form.html.erb +4 -3
- data/app/views/alchemy/admin/pictures/_infos.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_picture_description_field.html.erb +29 -0
- data/app/views/alchemy/admin/pictures/_tag_list.html.erb +2 -2
- data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +0 -2
- data/app/views/alchemy/admin/pictures/edit_multiple.html.erb +3 -3
- data/app/views/alchemy/admin/pictures/show.html.erb +3 -3
- data/app/views/alchemy/admin/resources/_form.html.erb +3 -4
- data/app/views/alchemy/admin/resources/_per_page_select.html.erb +1 -1
- data/app/views/alchemy/admin/resources/_tag_list.html.erb +2 -2
- data/app/views/alchemy/admin/resources/index.html.erb +2 -2
- data/app/views/alchemy/admin/sites/index.html.erb +1 -1
- data/app/views/alchemy/admin/styleguide/index.html.erb +29 -24
- data/app/views/alchemy/admin/tags/_tag.html.erb +1 -1
- data/app/views/alchemy/admin/tags/edit.html.erb +1 -1
- data/app/views/alchemy/admin/tags/index.html.erb +1 -1
- data/app/views/alchemy/base/500.html.erb +7 -18
- data/app/views/alchemy/base/error_notice.html.erb +3 -1
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +2 -3
- data/app/views/alchemy/ingredients/_headline_editor.html.erb +13 -8
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +1 -1
- data/app/views/alchemy/language_links/_language.html.erb +1 -1
- data/app/views/kaminari/alchemy/_first_page.html.erb +2 -2
- data/app/views/kaminari/alchemy/_gap.html.erb +1 -1
- data/app/views/kaminari/alchemy/_last_page.html.erb +2 -2
- data/app/views/kaminari/alchemy/_next_page.html.erb +2 -2
- data/app/views/kaminari/alchemy/_prev_page.html.erb +2 -2
- data/app/views/layouts/alchemy/admin.html.erb +2 -1
- data/bundles/shoelace.js +3 -1
- data/config/locales/alchemy.en.yml +16 -3
- data/config/routes.rb +4 -2
- data/db/migrate/20240314105244_create_alchemy_picture_descriptions.rb +11 -0
- data/lib/alchemy/configuration_methods.rb +1 -1
- data/lib/alchemy/controller_actions.rb +3 -3
- data/lib/alchemy/element_definition.rb +10 -6
- data/lib/alchemy/engine.rb +19 -2
- data/lib/alchemy/page_layout.rb +10 -6
- data/lib/alchemy/permissions.rb +4 -3
- data/lib/alchemy/routing_constraints.rb +1 -1
- data/lib/alchemy/seeder.rb +2 -2
- data/lib/alchemy/test_support/capybara_helpers.rb +4 -0
- data/lib/alchemy/test_support/factories/language_factory.rb +1 -1
- data/lib/alchemy/test_support/shared_contexts.rb +8 -0
- data/lib/alchemy/tinymce.rb +2 -1
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy.rb +36 -0
- data/lib/alchemy_cms.rb +0 -1
- data/lib/generators/alchemy/menus/templates/node.html.erb +2 -2
- data/lib/generators/alchemy/menus/templates/node.html.haml +2 -2
- data/lib/generators/alchemy/menus/templates/node.html.slim +2 -2
- 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/sitemap.rake +97 -0
- data/lib/tasks/alchemy/tidy.rake +1 -0
- data/package.json +8 -8
- data/vendor/assets/fonts/remixicon.symbol.svg +11 -0
- data/vendor/javascript/shoelace.min.js +333 -118
- data/vendor/javascript/sortable.min.js +1 -1
- data/vendor/javascript/tinymce.min.js +1 -1
- data/vendor/javascript/ungap-custom-elements.min.js +1 -1
- metadata +61 -55
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +0 -85
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +0 -107
- data/app/assets/javascripts/alchemy/alchemy.file_progress.js.coffee +0 -66
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +0 -45
- data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +0 -24
- data/app/assets/javascripts/alchemy/alchemy.hotkeys.js.coffee +0 -49
- data/app/assets/javascripts/alchemy/alchemy.initializer.js.coffee +0 -0
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +0 -230
- data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +0 -49
- data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +0 -82
- data/app/assets/javascripts/alchemy/alchemy.string_extension.js.coffee +0 -11
- data/app/assets/javascripts/alchemy/templates/page.hbs +0 -19
- data/app/javascript/alchemy_admin/tags_autocomplete.js +0 -46
- data/app/models/alchemy/tree_node.rb +0 -7
- data/app/views/alchemy/admin/elements/destroy.js.erb +0 -8
- data/app/views/alchemy/admin/legacy_page_urls/_form.html.erb +0 -5
- data/app/views/alchemy/admin/legacy_page_urls/create.js.erb +0 -9
- data/app/views/alchemy/admin/legacy_page_urls/destroy.js.erb +0 -6
- data/app/views/alchemy/admin/legacy_page_urls/update.js.erb +0 -2
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +0 -22
- data/app/views/alchemy/admin/pages/_external_link.html.erb +0 -31
- data/app/views/alchemy/admin/pages/_file_link.html.erb +0 -31
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +0 -35
- data/app/views/alchemy/admin/pages/link.html.erb +0 -26
- data/app/views/alchemy/admin/partials/_flash.html.erb +0 -4
- data/app/views/alchemy/admin/partials/_toolbar_button.html.erb +0 -29
- data/lib/alchemy/test_support/current_language_shared_examples.rb +0 -33
- data/vendor/assets/fonts/remixicon.eot +0 -0
- data/vendor/assets/fonts/remixicon.svg +0 -7816
- data/vendor/assets/fonts/remixicon.ttf +0 -0
- data/vendor/assets/fonts/remixicon.woff +0 -0
- data/vendor/assets/fonts/remixicon.woff2 +0 -0
- data/vendor/assets/stylesheets/remixicon.scss +0 -10480
data/app/models/alchemy/page.rb
CHANGED
@@ -200,17 +200,19 @@ module Alchemy
|
|
200
200
|
%w[name urlname title]
|
201
201
|
end
|
202
202
|
|
203
|
-
# Used to store the current page
|
204
|
-
#
|
203
|
+
# Used to store the current page previewed in the edit page template.
|
204
|
+
# @deprecated Use {Alchemy::Current#preview_page=} instead.
|
205
205
|
def current_preview=(page)
|
206
|
-
|
206
|
+
Current.preview_page = page
|
207
207
|
end
|
208
|
+
deprecate "current_preview=": :"Alchemy::Current.preview_page=", deprecator: Alchemy::Deprecation
|
208
209
|
|
209
|
-
# Returns the current page
|
210
|
-
#
|
210
|
+
# Returns the current page previewed in the edit page template.
|
211
|
+
# @deprecated Use {Alchemy::Current#preview_page} instead.
|
211
212
|
def current_preview
|
212
|
-
|
213
|
+
Current.preview_page
|
213
214
|
end
|
215
|
+
deprecate current_preview: :"Alchemy::Current.preview_page", deprecator: Alchemy::Deprecation
|
214
216
|
|
215
217
|
# @return the language root page for given language id.
|
216
218
|
# @param language_id [Fixnum]
|
@@ -271,8 +273,10 @@ module Alchemy
|
|
271
273
|
options = [[Alchemy.t(:default, scope: "link_target_options"), ""]]
|
272
274
|
link_target_options = Config.get(:link_target_options)
|
273
275
|
link_target_options.each do |option|
|
276
|
+
# add an underscore to the options to provide the default syntax
|
277
|
+
# @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target
|
274
278
|
options << [Alchemy.t(option, scope: "link_target_options",
|
275
|
-
default: option.to_s.humanize), option]
|
279
|
+
default: option.to_s.humanize), "_#{option}"]
|
276
280
|
end
|
277
281
|
options
|
278
282
|
end
|
@@ -375,7 +379,7 @@ module Alchemy
|
|
375
379
|
#
|
376
380
|
def unlock!
|
377
381
|
if update_columns(locked_at: nil, locked_by: nil)
|
378
|
-
|
382
|
+
Current.preview_page = nil
|
379
383
|
end
|
380
384
|
end
|
381
385
|
|
@@ -444,25 +448,6 @@ module Alchemy
|
|
444
448
|
|
445
449
|
delegate :public_until=, to: :public_version, allow_nil: true
|
446
450
|
|
447
|
-
# Updates an Alchemy::Page based on a new ordering to be applied to it
|
448
|
-
#
|
449
|
-
# Note: Page's urls should not be updated (and a legacy URL created) if nesting is OFF
|
450
|
-
# or if the URL is the same
|
451
|
-
#
|
452
|
-
# @param [TreeNode]
|
453
|
-
# A tree node with new lft, rgt, depth, url, parent_id and restricted indexes to be updated
|
454
|
-
#
|
455
|
-
def update_node!(node)
|
456
|
-
hash = {lft: node.left, rgt: node.right, parent_id: node.parent, depth: node.depth, restricted: node.restricted}
|
457
|
-
|
458
|
-
if urlname != node.url
|
459
|
-
LegacyPageUrl.create(page_id: id, urlname: urlname)
|
460
|
-
hash[:urlname] = node.url
|
461
|
-
end
|
462
|
-
|
463
|
-
update_columns(hash)
|
464
|
-
end
|
465
|
-
|
466
451
|
# Holds an instance of +FixedAttributes+
|
467
452
|
def fixed_attributes
|
468
453
|
@_fixed_attributes ||= FixedAttributes.new(self)
|
@@ -555,7 +540,7 @@ module Alchemy
|
|
555
540
|
end
|
556
541
|
|
557
542
|
def set_language
|
558
|
-
self.language = parent&.language ||
|
543
|
+
self.language = parent&.language || Current.language
|
559
544
|
set_language_code
|
560
545
|
end
|
561
546
|
|
@@ -55,6 +55,9 @@ module Alchemy
|
|
55
55
|
has_many :elements, through: :picture_ingredients
|
56
56
|
has_many :pages, through: :elements
|
57
57
|
has_many :thumbs, class_name: "Alchemy::PictureThumb", dependent: :destroy
|
58
|
+
has_many :descriptions, class_name: "Alchemy::PictureDescription", dependent: :destroy
|
59
|
+
|
60
|
+
accepts_nested_attributes_for :descriptions, allow_destroy: true, reject_if: ->(attr) { attr[:text].blank? }
|
58
61
|
|
59
62
|
# Raise error, if picture is in use (aka. assigned to an Picture ingredient)
|
60
63
|
#
|
@@ -231,6 +234,11 @@ module Alchemy
|
|
231
234
|
}
|
232
235
|
end
|
233
236
|
|
237
|
+
# Returns the picture description for a given language.
|
238
|
+
def description_for(language)
|
239
|
+
descriptions.find_by(language: language)&.text
|
240
|
+
end
|
241
|
+
|
234
242
|
# Returns an uri escaped name.
|
235
243
|
#
|
236
244
|
def urlname
|
data/app/models/alchemy/site.rb
CHANGED
@@ -35,7 +35,7 @@ module Alchemy
|
|
35
35
|
|
36
36
|
# Returns true if this site is the current site
|
37
37
|
def current?
|
38
|
-
|
38
|
+
Current.site == self
|
39
39
|
end
|
40
40
|
|
41
41
|
# Returns the path to site's view partial.
|
@@ -57,23 +57,26 @@ module Alchemy
|
|
57
57
|
end
|
58
58
|
|
59
59
|
class << self
|
60
|
+
# @deprecated Use {Alchemy::Current#site=} instead.
|
60
61
|
def current=(site)
|
61
|
-
|
62
|
+
Current.site = site
|
62
63
|
end
|
64
|
+
deprecate "current=": :"Alchemy::Current.site=", deprecator: Alchemy::Deprecation
|
63
65
|
|
66
|
+
# @deprecated Use {Alchemy::Current#site} instead.
|
64
67
|
def current
|
65
|
-
|
68
|
+
Current.site
|
66
69
|
end
|
70
|
+
deprecate current: :"Alchemy::Current.site", deprecator: Alchemy::Deprecation
|
67
71
|
|
68
|
-
|
69
|
-
|
70
|
-
end
|
72
|
+
alias_method :default, :first
|
73
|
+
deprecate default: :first, deprecator: Alchemy::Deprecation
|
71
74
|
|
72
75
|
def find_for_host(host)
|
73
76
|
# These are split up into two separate queries in order to run the
|
74
77
|
# fastest query first (selecting the domain by its primary host name).
|
75
78
|
#
|
76
|
-
find_by(host: host) || find_in_aliases(host) ||
|
79
|
+
find_by(host: host) || find_in_aliases(host) || first
|
77
80
|
end
|
78
81
|
|
79
82
|
def find_in_aliases(host)
|
@@ -7,8 +7,16 @@ module Alchemy
|
|
7
7
|
:file_name,
|
8
8
|
:file_mime_type,
|
9
9
|
:file_size,
|
10
|
+
:icon_css_class,
|
10
11
|
:tag_list,
|
11
12
|
:created_at,
|
12
13
|
:updated_at
|
14
|
+
|
15
|
+
attribute :url do
|
16
|
+
Alchemy::Engine.routes.url_helpers.download_attachment_path(
|
17
|
+
id: object.id,
|
18
|
+
name: object.file_name
|
19
|
+
)
|
20
|
+
end
|
13
21
|
end
|
14
22
|
end
|
@@ -1,12 +1,12 @@
|
|
1
1
|
<% if Alchemy::Attachment.tag_counts.any? %>
|
2
2
|
<h3><%= Alchemy.t("Filter by tag") %></h3>
|
3
|
-
<%=
|
3
|
+
<%= render Alchemy::Admin::ListFilter.new(".tag-list li") %>
|
4
4
|
<ul>
|
5
5
|
<%= render_tag_list('Alchemy::Attachment') %>
|
6
6
|
</ul>
|
7
7
|
<% if search_filter_params[:tagged_with].present? %>
|
8
8
|
<%= link_to(
|
9
|
-
render_icon(:times, size: '
|
9
|
+
render_icon(:times, size: '1x') + Alchemy.t('Remove tag filter'),
|
10
10
|
url_for(search_filter_params.except(:tagged_with)),
|
11
11
|
remote: request.xhr?,
|
12
12
|
class: 'secondary button small with_icon'
|
@@ -2,9 +2,8 @@
|
|
2
2
|
url: {action: :update, q: search_filter_params[:q], page: params[:page]}) do |f| -%>
|
3
3
|
<%= f.input :name, input_html: {autofocus: true} %>
|
4
4
|
<%= f.input :file_name, input_html: {autofocus: true}, hint: Alchemy.t(:attachment_filename_notice) %>
|
5
|
-
|
6
|
-
<%= f.
|
7
|
-
|
8
|
-
</div>
|
5
|
+
<%= render Alchemy::Admin::TagsAutocomplete.new do %>
|
6
|
+
<%= f.input :tag_list, input_html: { value: f.object.tag_list.join(",") } %>
|
7
|
+
<% end %>
|
9
8
|
<%= f.submit Alchemy.t(:save) %>
|
10
9
|
<% end %>
|
@@ -1,3 +1,3 @@
|
|
1
1
|
$("#clipboard_items").replaceWith("<%= j render_message { Alchemy.t('No items in your clipboard') } -%>");
|
2
|
-
$('#clipboard_button
|
2
|
+
$('#clipboard_button alchemy-icon').attr('icon-style', 'line');
|
3
3
|
Alchemy.pleaseWaitOverlay(false);
|
@@ -12,7 +12,7 @@
|
|
12
12
|
<%= render_icon(:file) %>
|
13
13
|
<%= truncate(item.name, length: 50) %>
|
14
14
|
<% else %>
|
15
|
-
<%= render_icon(:draggable, style:
|
15
|
+
<%= render_icon(:draggable, style: false) %>
|
16
16
|
<%= truncate(item.display_name_with_preview_text(50), length: 50) %>
|
17
17
|
<% end %>
|
18
18
|
<span class="float_right">
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<% else -%>
|
14
14
|
Alchemy.growl('<%= j Alchemy.t("item copied to clipboard", name: @item.class.name == "Alchemy::Element" ? @item.display_name_with_preview_text : @item.name) %>')
|
15
15
|
<% end -%>
|
16
|
-
$('#clipboard_button
|
16
|
+
$('#clipboard_button alchemy-icon').attr('icon-style', 'fill');
|
17
17
|
|
18
18
|
<%# Update add nested element forms for any elements that accept ONLY this as a nested element %>
|
19
19
|
<% if @item.class == Alchemy::Element %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
$("#clipboard_item_<%= @item.id -%>").remove();
|
4
4
|
Alchemy.growl('<%= Alchemy.t("item removed from clipboard", :name => @item.class.to_s == "Element" ? @item.display_name_with_preview_text : @item.name) -%>');
|
5
5
|
<%- if @clipboard.blank? -%>
|
6
|
-
$('#clipboard_button
|
6
|
+
$('#clipboard_button alchemy-icon').attr('icon-style', 'line');
|
7
7
|
$("#clipboard_items").replaceWith("<%= j render_message { Alchemy.t('No items in your clipboard') } %>");
|
8
8
|
<%- end -%>
|
9
9
|
|
@@ -36,7 +36,7 @@
|
|
36
36
|
<% end %>
|
37
37
|
</td>
|
38
38
|
<td>
|
39
|
-
<% if (current_alchemy_user.id == page.locked_by) || can?(:manage, Alchemy::
|
39
|
+
<% if (current_alchemy_user.id == page.locked_by) || can?(:manage, Alchemy::Current.site) %>
|
40
40
|
<%= form_tag(alchemy.unlock_admin_page_path(page, :redirect_to => alchemy.admin_dashboard_url)) do %>
|
41
41
|
<button class="icon_button small" title="<%= Alchemy.t(:explain_unlocking) %>">
|
42
42
|
<%= render_icon(:close, size: '1x') %>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<tr class="<%= cycle('even', 'odd', name: 'sites') %>">
|
8
8
|
<td>
|
9
9
|
<% if alchemy.respond_to?(:login_url) %>
|
10
|
-
<%= link_to_unless site == Alchemy::
|
10
|
+
<%= link_to_unless site == Alchemy::Current.site,
|
11
11
|
site.name,
|
12
12
|
alchemy.login_url(
|
13
13
|
protocol: 'http://',
|
@@ -1,21 +1,57 @@
|
|
1
1
|
<h2><%= Alchemy.t('Global shortcuts') %></h2>
|
2
2
|
<ul class="shortcuts">
|
3
|
-
<li
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
<li
|
3
|
+
<li>
|
4
|
+
<kbd>?</kbd>
|
5
|
+
<%= Alchemy.t('Open help window', scope: 'help.shortcuts') %>
|
6
|
+
</li>
|
7
|
+
<li>
|
8
|
+
<kbd>esc</kbd>
|
9
|
+
<%= Alchemy.t('Close current dialog', scope: 'help.shortcuts') %>
|
10
|
+
</li>
|
11
|
+
<li>
|
12
|
+
<kbd>alt</kbd><kbd>q</kbd>
|
13
|
+
<%= Alchemy.t('Open logout dialog', scope: 'help.shortcuts') %>
|
14
|
+
</li>
|
15
|
+
<li>
|
16
|
+
<kbd>alt</kbd><kbd>f</kbd>
|
17
|
+
<%= Alchemy.t('Focus search field', scope: 'help.shortcuts') %>
|
18
|
+
</li>
|
19
|
+
<li>
|
20
|
+
<kbd>alt</kbd><kbd>n</kbd>
|
21
|
+
<%= Alchemy.t('Create a new record', scope: 'help.shortcuts') %>
|
22
|
+
</li>
|
8
23
|
</ul>
|
9
24
|
<h2><%= Alchemy.t('Page edit shortcuts') %></h2>
|
10
25
|
<ul class="shortcuts">
|
11
|
-
<li
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
<li
|
26
|
+
<li>
|
27
|
+
<kbd>alt</kbd><kbd>i</kbd>
|
28
|
+
<%= Alchemy.t('Show page infos', scope: 'help.shortcuts') %>
|
29
|
+
</li>
|
30
|
+
<li>
|
31
|
+
<kbd>alt</kbd><kbd>n</kbd>
|
32
|
+
<%= Alchemy.t('Create new element', scope: 'help.shortcuts') %>
|
33
|
+
</li>
|
34
|
+
<li>
|
35
|
+
<kbd>alt</kbd><kbd>e</kbd>
|
36
|
+
<%= Alchemy.t('Edit page properties', scope: 'help.shortcuts') %>
|
37
|
+
</li>
|
38
|
+
<li>
|
39
|
+
<kbd>alt</kbd><kbd>r</kbd>
|
40
|
+
<%= Alchemy.t('Reload the preview', scope: 'help.shortcuts') %>
|
41
|
+
</li>
|
42
|
+
<li>
|
43
|
+
<kbd>alt</kbd><kbd>x</kbd>
|
44
|
+
<%= Alchemy.t('Leave the page', scope: 'help.shortcuts') %>
|
45
|
+
</li>
|
16
46
|
</ul>
|
17
47
|
<h2><%= Alchemy.t('Library shortcuts') %></h2>
|
18
48
|
<ul class="shortcuts">
|
19
|
-
<li
|
20
|
-
|
49
|
+
<li>
|
50
|
+
<kbd>alt</kbd><kbd>n</kbd>
|
51
|
+
<%= Alchemy.t('Open upload form', scope: 'help.shortcuts') %>
|
52
|
+
</li>
|
53
|
+
<li>
|
54
|
+
<kbd>alt</kbd><kbd>a</kbd>
|
55
|
+
<%= Alchemy.t('Select all pictures', scope: 'help.shortcuts') %>
|
56
|
+
</li>
|
21
57
|
</ul>
|
@@ -43,22 +43,19 @@
|
|
43
43
|
<p><%= Alchemy.t('Alchemy is open software and itself uses open software and free resources:') %></p>
|
44
44
|
<ul>
|
45
45
|
<li>
|
46
|
-
<a href="
|
46
|
+
<a href="https://rubyonrails.org" target="_blank">Ruby on Rails</a>
|
47
47
|
</li>
|
48
48
|
<li>
|
49
|
-
<a href="
|
49
|
+
<a href="https://jquery.com" target="_blank">jQuery Javascript Library</a>
|
50
50
|
</li>
|
51
51
|
<li>
|
52
|
-
<a href="
|
52
|
+
<a href="https://shoelace.style" target="_blank">Shoelace Web Components Library</a>
|
53
53
|
</li>
|
54
54
|
<li>
|
55
|
-
<a href="
|
55
|
+
<a href="https://www.tiny.cloud" target="_blank">TinyMCE - Javascript WYSIWYG Editor</a>
|
56
56
|
</li>
|
57
57
|
<li>
|
58
|
-
<a href="
|
59
|
-
</li>
|
60
|
-
<li>
|
61
|
-
<a href="https://remixicon.com" target="_blank">Remix Icon</a>
|
58
|
+
<a href="https://remixicon.com" target="_blank">Remix Icons</a>
|
62
59
|
</li>
|
63
60
|
</ul>
|
64
61
|
<% end %>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<%= f.hidden_field :name %>
|
9
9
|
<%= f.hidden_field :page_version_id, value: element.page_version_id %>
|
10
10
|
<%= f.hidden_field :parent_element_id, value: element.id %>
|
11
|
-
<button class="add-nestable-element-button" is="alchemy-button">
|
11
|
+
<button class="add-nestable-element-button" is="alchemy-button" data-turbo="false">
|
12
12
|
<%= Alchemy.t(:add_nested_element, name: Alchemy.t(nestable_element.to_sym, scope: 'element_names')) %>
|
13
13
|
</button>
|
14
14
|
<% end %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
id="element_<%= element.id %>"
|
3
3
|
data-element-id="<%= element.id %>"
|
4
4
|
data-element-name="<%= element.name %>"
|
5
|
-
class="<%= element.css_classes %>"
|
5
|
+
class="<%= element.css_classes.join(" ") %>"
|
6
6
|
<%= element.compact? ? "compact" : nil %>
|
7
7
|
<%= element.fixed? ? "fixed" : nil %>
|
8
8
|
>
|
@@ -44,7 +44,7 @@
|
|
44
44
|
<%= content_tag :details, class: "ingredient-group", id: "element_#{element.id}_ingredient_group_#{group.parameterize.underscore}", is: "alchemy-ingredient-group" do %>
|
45
45
|
<summary>
|
46
46
|
<%= element.translated_group group %>
|
47
|
-
|
47
|
+
<%= render_icon "arrow-left-s" %>
|
48
48
|
</summary>
|
49
49
|
<%= render ingredients, element_form: f %>
|
50
50
|
<% end %>
|
@@ -53,10 +53,10 @@
|
|
53
53
|
<% end %>
|
54
54
|
|
55
55
|
<% if element.taggable? %>
|
56
|
-
|
56
|
+
<%= render Alchemy::Admin::TagsAutocomplete.new do %>
|
57
57
|
<%= f.label :tag_list %>
|
58
|
-
<%=
|
59
|
-
|
58
|
+
<%= f.text_field :tag_list, value: f.object.tag_list.join(",") %>
|
59
|
+
<% end %>
|
60
60
|
<% end %>
|
61
61
|
<% end %>
|
62
62
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<% elsif element.deprecated? %>
|
6
6
|
<%= hint_with_tooltip element.deprecation_notice %>
|
7
7
|
<% else %>
|
8
|
-
<%= render_icon('draggable', style:
|
8
|
+
<%= render_icon('draggable', style: false, class: 'element', fixed_width: false) %>
|
9
9
|
<% end %>
|
10
10
|
</span>
|
11
11
|
<span class="element-title">
|
@@ -24,6 +24,10 @@
|
|
24
24
|
title: Alchemy.t(element.folded? ? :show_element_content : :hide_element_content),
|
25
25
|
class: "element-toggle"
|
26
26
|
}) do %>
|
27
|
-
|
27
|
+
<% if element.compact? %>
|
28
|
+
<%= render_icon "more-2" %>
|
29
|
+
<% else %>
|
30
|
+
<%= render_icon element.folded? ? "arrow-left-s" : "arrow-down-s" %>
|
31
|
+
<% end %>
|
28
32
|
<% end %>
|
29
33
|
</div>
|
@@ -19,12 +19,14 @@
|
|
19
19
|
) %>
|
20
20
|
</sl-tooltip>
|
21
21
|
<sl-tooltip content="<%= Alchemy.t("Delete element") %>">
|
22
|
-
|
23
|
-
|
24
|
-
Alchemy.t(:confirm_to_delete_element)
|
25
|
-
|
26
|
-
|
27
|
-
|
22
|
+
<alchemy-delete-element-button
|
23
|
+
href="<%= alchemy.admin_element_path(element) %>"
|
24
|
+
message="<%= Alchemy.t(:confirm_to_delete_element) %>"
|
25
|
+
>
|
26
|
+
<button type="button" class="icon_button" data-turbo="false">
|
27
|
+
<%= render_icon('delete-bin-2') %>
|
28
|
+
</button>
|
29
|
+
</alchemy-delete-element-button>
|
28
30
|
</sl-tooltip>
|
29
31
|
<sl-tooltip content="<%= element.public? ? Alchemy.t(:hide_element) : Alchemy.t(:show_element) %>" placement="top-end">
|
30
32
|
<alchemy-publish-element-button>
|
@@ -7,9 +7,6 @@
|
|
7
7
|
<%- end -%>
|
8
8
|
|
9
9
|
<% if @element.fixed? %>
|
10
|
-
if ($('#fixed-elements').length == 0) {
|
11
|
-
Alchemy.FixedElements.buildTabs('<%= Alchemy.t(:main_content) %>');
|
12
|
-
}
|
13
10
|
Alchemy.FixedElements.createTab('<%= @element.id %>', '<%= @element.display_name %>');
|
14
11
|
$element_area = $('[name="fixed-element-<%= @element.id %>"]');
|
15
12
|
<% elsif @element.parent_element %>
|
@@ -24,8 +21,6 @@
|
|
24
21
|
$element_area.append(element_html);
|
25
22
|
<%- end -%>
|
26
23
|
|
27
|
-
Alchemy.SortableElements('[data-element-id="<%= @element.id %>"] .nested-elements');
|
28
|
-
|
29
24
|
Alchemy.growl('<%= Alchemy.t(:successfully_added_element) %>');
|
30
25
|
Alchemy.closeCurrentDialog();
|
31
26
|
Alchemy.reloadPreview();
|
@@ -1,36 +1,72 @@
|
|
1
|
-
|
2
|
-
<
|
3
|
-
<
|
4
|
-
<%= Alchemy.
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
<%= turbo_frame_tag "alchemy_elements_window" do %>
|
2
|
+
<alchemy-elements-window>
|
3
|
+
<div class="elements-window-toolbar">
|
4
|
+
<%= render Alchemy::Admin::ToolbarButton.new(
|
5
|
+
url: alchemy.new_admin_element_path(page_version_id: @page_version.id),
|
6
|
+
icon: :add,
|
7
|
+
hotkey: "alt+n",
|
8
|
+
label: Alchemy.t("New Element"),
|
9
|
+
dialog_options: {
|
10
|
+
title: Alchemy.t("New Element"),
|
11
|
+
size: "320x125"
|
12
|
+
},
|
13
|
+
if_permitted_to: [:create, Alchemy::Element]
|
14
|
+
) %>
|
15
|
+
<%= render Alchemy::Admin::ToolbarButton.new(
|
16
|
+
url: alchemy.admin_clipboard_path(remarkable_type: "elements"),
|
17
|
+
label: Alchemy.t("Show clipboard"),
|
18
|
+
icon: :clipboard,
|
19
|
+
icon_style: clipboard_empty?("elements") ? "line" : "fill",
|
20
|
+
dialog_options: {
|
21
|
+
title: Alchemy.t("Clipboard"),
|
22
|
+
size: "400x305"
|
23
|
+
},
|
24
|
+
link_options: {
|
25
|
+
id: "clipboard_button"
|
26
|
+
},
|
27
|
+
if_permitted_to: [:index, :alchemy_admin_clipboard]
|
28
|
+
) %>
|
29
|
+
<sl-tooltip content="<%= Alchemy.t("Collapse all elements") %>" placement="top-end" class="right">
|
30
|
+
<button id="collapse-all-elements-button" class="icon_button">
|
31
|
+
<alchemy-icon name="contract-up-down"></alchemy-icon>
|
32
|
+
</button>
|
33
|
+
</sl-tooltip>
|
34
|
+
</div>
|
35
|
+
<% if @page.element_definitions.any? { |el| el["fixed"] } %>
|
36
|
+
<sl-tab-group id="fixed-elements">
|
37
|
+
<sl-tab slot="nav" panel="main-content-elements">
|
38
|
+
<%= Alchemy.t(:main_content) %>
|
39
|
+
</sl-tab>
|
40
|
+
<% @fixed_elements.each do |element| %>
|
41
|
+
<sl-tab slot="nav" panel="fixed-element-<%= element.id %>">
|
42
|
+
<%= element.display_name %>
|
43
|
+
</sl-tab>
|
44
|
+
<% end %>
|
45
|
+
<sl-tab-panel
|
46
|
+
name="main-content-elements"
|
47
|
+
class="sortable-elements scrollable-elements"
|
48
|
+
data-droppable-elements="<%= @page.element_definition_names.join(' ') %>"
|
49
|
+
data-element-name="main-content-elements"
|
50
|
+
id="main-content-elements"
|
51
|
+
style="--padding: 0"
|
52
|
+
>
|
53
|
+
<%= render @elements.map { |element| Alchemy::ElementEditor.new(element) } %>
|
54
|
+
</sl-tab-panel>
|
55
|
+
<% @fixed_elements.each do |element| %>
|
56
|
+
<sl-tab-panel name="fixed-element-<%= element.id %>" style="--padding: 0" class="scrollable-elements">
|
57
|
+
<%= render Alchemy::ElementEditor.new(element) %>
|
58
|
+
</sl-tab-panel>
|
59
|
+
<% end %>
|
60
|
+
</sl-tab-group>
|
61
|
+
<% else %>
|
62
|
+
<div
|
63
|
+
id="main-content-elements"
|
64
|
+
class="sortable-elements scrollable-elements"
|
65
|
+
data-droppable-elements="<%= @page.element_definition_names.join(' ') %>"
|
66
|
+
data-element-name="main-content-elements"
|
67
|
+
>
|
68
|
+
<%= render @elements.map { |element| Alchemy::ElementEditor.new(element) } %>
|
69
|
+
</div>
|
10
70
|
<% end %>
|
11
|
-
|
12
|
-
name="main-content-elements"
|
13
|
-
class="sortable-elements scrollable-elements"
|
14
|
-
data-droppable-elements="<%= @page.element_definition_names.join(' ') %>"
|
15
|
-
data-element-name="main-content-elements"
|
16
|
-
id="main-content-elements"
|
17
|
-
style="--padding: 0"
|
18
|
-
>
|
19
|
-
<%= render @elements.map { |element| Alchemy::ElementEditor.new(element) } %>
|
20
|
-
</sl-tab-panel>
|
21
|
-
<% @fixed_elements.each do |element| %>
|
22
|
-
<sl-tab-panel name="fixed-element-<%= element.id %>" style="--padding: 0" class="scrollable-elements">
|
23
|
-
<%= render Alchemy::ElementEditor.new(element) %>
|
24
|
-
</sl-tab-panel>
|
25
|
-
<% end %>
|
26
|
-
</sl-tab-group>
|
27
|
-
<% else %>
|
28
|
-
<div
|
29
|
-
id="main-content-elements"
|
30
|
-
class="sortable-elements scrollable-elements"
|
31
|
-
data-droppable-elements="<%= @page.element_definition_names.join(' ') %>"
|
32
|
-
data-element-name="main-content-elements"
|
33
|
-
>
|
34
|
-
<%= render @elements.map { |element| Alchemy::ElementEditor.new(element) } %>
|
35
|
-
</div>
|
71
|
+
</alchemy-elements-window>
|
36
72
|
<% end %>
|