alchemy_cms 7.0.12 → 7.1.0.pre.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/backport.yml +36 -0
- data/.github/workflows/test.yml +3 -2
- data/.gitignore +1 -0
- data/.standard.yml +1 -1
- data/CHANGELOG.md +144 -22
- data/Gemfile +8 -10
- data/README.md +10 -8
- data/alchemy_cms.gemspec +4 -3
- data/app/assets/config/alchemy_manifest.js +0 -1
- data/app/assets/javascripts/alchemy/admin.js +1 -19
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -3
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +19 -34
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +38 -13
- data/app/assets/javascripts/alchemy/alchemy.file_progress.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +32 -25
- data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +3 -5
- data/app/assets/javascripts/alchemy/alchemy.initializer.js.coffee +0 -57
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +22 -63
- data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +2 -2
- data/app/assets/javascripts/alchemy/alchemy.preview.js.coffee +5 -4
- data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +5 -5
- data/app/assets/javascripts/alchemy/templates/index.js +0 -2
- data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
- data/app/assets/javascripts/alchemy/templates/page.hbs +1 -1
- data/app/assets/javascripts/alchemy/templates/page_folder.hbs +2 -2
- data/app/assets/stylesheets/alchemy/_custom-properties.scss +82 -0
- data/app/assets/stylesheets/alchemy/_mixins.scss +38 -30
- data/app/assets/stylesheets/alchemy/_variables.scss +12 -5
- data/app/assets/stylesheets/alchemy/admin.scss +3 -4
- data/app/assets/stylesheets/alchemy/archive.scss +107 -50
- data/app/assets/stylesheets/alchemy/attachments.scss +5 -4
- data/app/assets/stylesheets/alchemy/buttons.scss +38 -164
- data/app/assets/stylesheets/alchemy/dashboard.scss +31 -6
- data/app/assets/stylesheets/alchemy/dialogs.scss +12 -28
- data/app/assets/stylesheets/alchemy/elements.scss +273 -282
- data/app/assets/stylesheets/alchemy/flash.scss +20 -12
- data/app/assets/stylesheets/alchemy/forms.scss +21 -34
- data/app/assets/stylesheets/alchemy/frame.scss +11 -32
- data/app/assets/stylesheets/alchemy/hints.scss +4 -62
- data/app/assets/stylesheets/alchemy/image_library.scss +36 -33
- data/app/assets/stylesheets/alchemy/labels.scss +4 -1
- data/app/assets/stylesheets/alchemy/menubar.scss +7 -6
- data/app/assets/stylesheets/alchemy/navigation.scss +27 -15
- data/app/assets/stylesheets/alchemy/nodes.scss +11 -7
- data/app/assets/stylesheets/alchemy/notices.scss +16 -4
- data/app/assets/stylesheets/alchemy/page-select.scss +10 -2
- data/app/assets/stylesheets/alchemy/pagination.scss +22 -13
- data/app/assets/stylesheets/alchemy/resource_info.scss +7 -5
- data/app/assets/stylesheets/alchemy/selects.scss +49 -42
- data/app/assets/stylesheets/alchemy/shoelace.scss +345 -0
- data/app/assets/stylesheets/alchemy/sitemap.scss +24 -14
- data/app/assets/stylesheets/alchemy/spinner.scss +9 -19
- data/app/assets/stylesheets/alchemy/tables.scss +16 -24
- data/app/assets/stylesheets/alchemy/tags.scss +4 -0
- data/app/assets/stylesheets/alchemy/toolbar.scss +29 -25
- data/app/assets/stylesheets/alchemy/upload.scss +140 -89
- data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +80 -108
- data/app/components/alchemy/admin/node_select.rb +39 -0
- data/app/components/alchemy/admin/page_select.rb +42 -0
- data/app/components/alchemy/ingredients/audio_view.rb +1 -1
- data/app/components/alchemy/ingredients/base_view.rb +1 -1
- data/app/components/alchemy/ingredients/boolean_view.rb +1 -1
- data/app/components/alchemy/ingredients/datetime_view.rb +1 -1
- data/app/components/alchemy/ingredients/file_view.rb +1 -1
- data/app/components/alchemy/ingredients/headline_view.rb +7 -16
- data/app/components/alchemy/ingredients/link_view.rb +1 -1
- data/app/components/alchemy/ingredients/page_view.rb +1 -1
- data/app/components/alchemy/ingredients/picture_view.rb +1 -1
- data/app/components/alchemy/ingredients/richtext_view.rb +1 -1
- data/app/components/alchemy/ingredients/text_view.rb +1 -1
- data/app/components/alchemy/ingredients/video_view.rb +1 -1
- data/app/controllers/alchemy/admin/base_controller.rb +5 -6
- data/app/controllers/alchemy/admin/elements_controller.rb +63 -35
- data/app/controllers/alchemy/admin/languages_controller.rb +1 -2
- data/app/controllers/alchemy/base_controller.rb +4 -2
- data/app/controllers/concerns/alchemy/admin/current_language.rb +1 -5
- data/app/controllers/concerns/alchemy/admin/uploader_responses.rb +1 -1
- data/app/controllers/concerns/alchemy/site_redirects.rb +1 -1
- data/app/decorators/alchemy/element_editor.rb +0 -2
- data/app/helpers/alchemy/admin/attachments_helper.rb +6 -5
- data/app/helpers/alchemy/admin/base_helper.rb +17 -12
- data/app/helpers/alchemy/admin/ingredients_helper.rb +4 -1
- data/app/helpers/alchemy/admin/pages_helper.rb +5 -11
- data/app/helpers/alchemy/base_helper.rb +47 -13
- data/app/javascript/alchemy_admin/components/alchemy_html_element.js +129 -0
- data/app/javascript/alchemy_admin/components/button.js +59 -0
- data/app/javascript/alchemy_admin/components/char_counter.js +40 -0
- data/app/javascript/alchemy_admin/components/datepicker.js +39 -0
- data/app/javascript/alchemy_admin/components/dialog_link.js +45 -0
- data/app/javascript/alchemy_admin/components/element_editor/publish_element_button.js +36 -0
- data/app/javascript/alchemy_admin/components/element_editor.js +553 -0
- data/app/javascript/alchemy_admin/components/ingredient_group.js +54 -0
- data/app/javascript/alchemy_admin/components/link_buttons/link_button.js +48 -0
- data/app/javascript/alchemy_admin/components/link_buttons/unlink_button.js +38 -0
- data/app/javascript/alchemy_admin/components/link_buttons.js +79 -0
- data/app/javascript/alchemy_admin/components/node_select.js +45 -0
- data/app/javascript/alchemy_admin/components/overlay.js +18 -0
- data/app/javascript/alchemy_admin/components/page_select.js +63 -0
- data/app/javascript/alchemy_admin/components/remote_select.js +134 -0
- data/app/javascript/alchemy_admin/components/select.js +12 -0
- data/app/javascript/alchemy_admin/components/spinner.js +31 -0
- data/app/javascript/alchemy_admin/components/tinymce.js +146 -0
- data/app/javascript/alchemy_admin/components/uploader/file_upload.js +266 -0
- data/app/javascript/alchemy_admin/components/uploader/progress.js +258 -0
- data/app/javascript/alchemy_admin/components/uploader.js +132 -0
- data/app/javascript/alchemy_admin/dirty.js +49 -0
- data/app/javascript/alchemy_admin/file_editors.js +1 -1
- data/app/javascript/alchemy_admin/gui.js +14 -0
- data/app/javascript/alchemy_admin/i18n.js +12 -8
- data/app/javascript/alchemy_admin/image_cropper.js +6 -3
- data/app/javascript/alchemy_admin/image_loader.js +7 -15
- data/app/javascript/alchemy_admin/ingredient_anchor_link.js +2 -5
- data/app/javascript/alchemy_admin/initializer.js +65 -0
- data/app/javascript/alchemy_admin/locales/en.js +31 -0
- data/app/javascript/alchemy_admin/picture_editors.js +2 -2
- data/app/javascript/alchemy_admin/picture_selector.js +38 -0
- data/app/javascript/alchemy_admin/please_wait_overlay.js +8 -0
- data/app/javascript/alchemy_admin/sortable_elements.js +78 -0
- data/app/javascript/alchemy_admin/spinner.js +36 -0
- data/app/javascript/alchemy_admin/tags_autocomplete.js +46 -0
- data/app/javascript/alchemy_admin/utils/ajax.js +6 -5
- data/app/javascript/alchemy_admin/utils/dom_helpers.js +20 -0
- data/app/javascript/alchemy_admin/utils/format.js +11 -0
- data/app/javascript/alchemy_admin/utils/string_conversions.js +10 -0
- data/app/javascript/alchemy_admin.js +70 -13
- data/app/javascript/menubar.js +10 -0
- data/app/models/alchemy/attachment.rb +9 -11
- data/app/models/alchemy/element.rb +11 -0
- data/app/models/alchemy/ingredients/richtext.rb +1 -10
- data/app/models/alchemy/node.rb +4 -0
- data/app/models/alchemy/page/page_elements.rb +2 -11
- data/app/models/alchemy/page/page_natures.rb +10 -2
- data/app/models/alchemy/page.rb +9 -51
- data/app/models/alchemy/picture/url.rb +1 -9
- data/app/serializers/alchemy/page_tree_serializer.rb +2 -1
- data/app/services/alchemy/copy_page.rb +98 -0
- data/app/views/alchemy/_menubar.html.erb +17 -13
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +14 -10
- data/app/views/alchemy/admin/attachments/_attachment.html.erb +44 -36
- data/app/views/alchemy/admin/attachments/_replace_button.html.erb +15 -21
- data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +0 -1
- data/app/views/alchemy/admin/attachments/assign.js.erb +1 -1
- data/app/views/alchemy/admin/attachments/index.html.erb +6 -4
- data/app/views/alchemy/admin/attachments/show.html.erb +8 -8
- data/app/views/alchemy/admin/clipboard/clear.js.erb +1 -1
- data/app/views/alchemy/admin/clipboard/index.html.erb +3 -7
- data/app/views/alchemy/admin/clipboard/insert.js.erb +1 -1
- data/app/views/alchemy/admin/crop.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/index.html.erb +13 -11
- data/app/views/alchemy/admin/dashboard/info.html.erb +7 -7
- data/app/views/alchemy/admin/elements/_add_nested_element_form.html.erb +21 -23
- data/app/views/alchemy/admin/elements/_element.html.erb +52 -44
- data/app/views/alchemy/admin/elements/_footer.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_form.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_header.html.erb +11 -12
- data/app/views/alchemy/admin/elements/_toolbar.html.erb +33 -45
- data/app/views/alchemy/admin/elements/create.js.erb +7 -15
- data/app/views/alchemy/admin/elements/destroy.js.erb +0 -2
- data/app/views/alchemy/admin/elements/index.html.erb +27 -24
- data/app/views/alchemy/admin/elements/new.html.erb +9 -11
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +2 -2
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +3 -3
- data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +1 -2
- data/app/views/alchemy/admin/languages/_form.html.erb +2 -3
- data/app/views/alchemy/admin/languages/_language.html.erb +15 -8
- data/app/views/alchemy/admin/languages/_table.html.erb +1 -0
- data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +28 -16
- data/app/views/alchemy/admin/layoutpages/index.html.erb +2 -2
- data/app/views/alchemy/admin/legacy_page_urls/_legacy_page_url.html.erb +12 -8
- data/app/views/alchemy/admin/legacy_page_urls/_new.html.erb +1 -1
- data/app/views/alchemy/admin/nodes/_form.html.erb +20 -21
- data/app/views/alchemy/admin/nodes/_node.html.erb +39 -34
- data/app/views/alchemy/admin/nodes/index.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +4 -4
- data/app/views/alchemy/admin/pages/_create_language_form.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_current_page.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_external_link.html.erb +4 -4
- data/app/views/alchemy/admin/pages/_file_link.html.erb +5 -5
- data/app/views/alchemy/admin/pages/_form.html.erb +10 -21
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +4 -4
- data/app/views/alchemy/admin/pages/_locked_page.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_new_page_form.html.erb +4 -17
- data/app/views/alchemy/admin/pages/_page.html.erb +76 -72
- data/app/views/alchemy/admin/pages/_page_infos.html.erb +23 -7
- data/app/views/alchemy/admin/pages/_page_layout_filter.html.erb +2 -1
- data/app/views/alchemy/admin/pages/_page_status.html.erb +11 -21
- data/app/views/alchemy/admin/pages/_publication_fields.html.erb +2 -5
- data/app/views/alchemy/admin/pages/_table.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_table_row.html.erb +43 -39
- data/app/views/alchemy/admin/pages/_toolbar.html.erb +43 -38
- data/app/views/alchemy/admin/pages/configure.html.erb +12 -14
- data/app/views/alchemy/admin/pages/edit.html.erb +80 -103
- data/app/views/alchemy/admin/pages/info.html.erb +20 -11
- data/app/views/alchemy/admin/pages/link.html.erb +22 -16
- data/app/views/alchemy/admin/pages/new.html.erb +9 -11
- data/app/views/alchemy/admin/pages/unlock.js.erb +10 -3
- data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +15 -13
- data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +3 -5
- data/app/views/alchemy/admin/partials/_routes.html.erb +10 -2
- data/app/views/alchemy/admin/partials/_site_select.html.erb +6 -5
- data/app/views/alchemy/admin/partials/_toolbar_button.html.erb +28 -23
- data/app/views/alchemy/admin/pictures/_archive.html.erb +5 -5
- data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +21 -23
- data/app/views/alchemy/admin/pictures/_infos.html.erb +2 -6
- data/app/views/alchemy/admin/pictures/_picture.html.erb +15 -17
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +17 -16
- data/app/views/alchemy/admin/pictures/_tag_list.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +1 -1
- data/app/views/alchemy/admin/pictures/assign.js.erb +1 -1
- data/app/views/alchemy/admin/pictures/index.html.erb +34 -30
- data/app/views/alchemy/admin/pictures/show.html.erb +3 -3
- data/app/views/alchemy/admin/resources/_filter.html.erb +2 -2
- data/app/views/alchemy/admin/resources/_form.html.erb +2 -2
- data/app/views/alchemy/admin/resources/_per_page_select.html.erb +1 -1
- data/app/views/alchemy/admin/resources/_resource.html.erb +16 -9
- data/app/views/alchemy/admin/resources/_table.html.erb +4 -1
- data/app/views/alchemy/admin/resources/index.html.erb +22 -19
- data/app/views/alchemy/admin/sites/index.html.erb +2 -1
- data/app/views/alchemy/admin/styleguide/index.html.erb +54 -28
- data/app/views/alchemy/admin/tags/_tag.html.erb +16 -18
- data/app/views/alchemy/admin/tags/index.html.erb +15 -12
- data/app/views/alchemy/admin/tinymce/_setup.html.erb +29 -0
- data/app/views/alchemy/admin/uploader/_button.html.erb +23 -29
- data/app/views/alchemy/admin/uploader/_setup.html.erb +3 -8
- data/app/views/alchemy/base/500.html.erb +1 -1
- data/app/views/alchemy/base/error_notice.js.erb +0 -1
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/_file_editor.html.erb +5 -5
- data/app/views/alchemy/ingredients/_link_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/_node_editor.html.erb +6 -19
- data/app/views/alchemy/ingredients/_page_editor.html.erb +7 -19
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +2 -2
- data/app/views/alchemy/ingredients/_richtext_editor.html.erb +6 -15
- data/app/views/alchemy/ingredients/_select_editor.html.erb +2 -1
- data/app/views/alchemy/ingredients/_text_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/shared/_anchor.html.erb +1 -1
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +10 -20
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +42 -49
- data/app/views/kaminari/alchemy/_first_page.html.erb +4 -2
- data/app/views/kaminari/alchemy/_gap.html.erb +1 -1
- data/app/views/kaminari/alchemy/_last_page.html.erb +4 -2
- data/app/views/kaminari/alchemy/_next_page.html.erb +4 -2
- data/app/views/kaminari/alchemy/_prev_page.html.erb +4 -2
- data/app/views/layouts/alchemy/admin.html.erb +10 -29
- data/config/alchemy/modules.yml +30 -30
- data/config/importmap.rb +10 -1
- data/config/initializers/rails_live_reload.rb +13 -0
- data/config/locales/alchemy.en.yml +23 -9
- data/config/routes.rb +2 -1
- data/lib/alchemy/auth_accessors.rb +6 -1
- data/lib/alchemy/controller_actions.rb +17 -4
- data/lib/alchemy/dev_support/live_reload_watcher.rb +5 -0
- data/lib/alchemy/engine.rb +8 -2
- data/lib/alchemy/forms/builder.rb +18 -12
- data/lib/alchemy/modules.rb +2 -2
- data/lib/alchemy/resources_helper.rb +3 -3
- data/lib/alchemy/test_support/capybara_helpers.rb +8 -5
- data/lib/alchemy/test_support/rspec_matchers.rb +14 -0
- data/lib/alchemy/test_support/shared_uploader_examples.rb +1 -1
- data/lib/alchemy/tinymce.rb +8 -3
- data/lib/alchemy/version.rb +1 -1
- data/package.json +14 -5
- data/vendor/assets/fonts/remixicon.eot +0 -0
- data/vendor/assets/fonts/remixicon.svg +7816 -0
- 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 +10480 -0
- metadata +85 -97
- data/.gem_release.yml +0 -9
- data/app/assets/javascripts/alchemy/alchemy.autocomplete.js.coffee +0 -30
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -53
- data/app/assets/javascripts/alchemy/alchemy.buttons.js.coffee +0 -45
- data/app/assets/javascripts/alchemy/alchemy.char_counter.js.coffee +0 -19
- data/app/assets/javascripts/alchemy/alchemy.dirty.js.coffee +0 -59
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -79
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +0 -267
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +0 -27
- data/app/assets/javascripts/alchemy/alchemy.spinner.js +0 -32
- data/app/assets/javascripts/alchemy/alchemy.tooltips.coffee +0 -10
- data/app/assets/javascripts/alchemy/alchemy.uploader.js.coffee +0 -131
- data/app/assets/javascripts/alchemy/menubar.js.coffee +0 -8
- data/app/assets/javascripts/alchemy/node_select.js +0 -39
- data/app/assets/javascripts/alchemy/page_select.js +0 -46
- data/app/assets/javascripts/alchemy/templates/node.hbs +0 -16
- data/app/assets/javascripts/alchemy/templates/spinner.hbs +0 -7
- data/app/assets/stylesheets/alchemy/jquery-ui.scss +0 -435
- data/app/javascript/alchemy_admin/datepicker.js +0 -40
- data/app/javascript/alchemy_admin/tinymce.js +0 -146
- data/app/javascript/alchemy_admin/translations.js +0 -32
- data/app/views/alchemy/admin/elements/fold.js.erb +0 -33
- data/app/views/alchemy/admin/elements/order.js.erb +0 -11
- data/app/views/alchemy/admin/elements/publish.js.erb +0 -21
- data/app/views/alchemy/admin/elements/update.js.erb +0 -27
- data/vendor/assets/fonts/fa-regular-400.eot +0 -0
- data/vendor/assets/fonts/fa-regular-400.svg +0 -803
- data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-solid-900.eot +0 -0
- data/vendor/assets/fonts/fa-solid-900.svg +0 -4938
- data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
- data/vendor/assets/javascripts/fileupload/jquery.fileupload-process.js +0 -178
- data/vendor/assets/javascripts/fileupload/jquery.fileupload-validate.js +0 -125
- data/vendor/assets/javascripts/fileupload/jquery.fileupload.js +0 -1502
- data/vendor/assets/javascripts/fileupload/jquery.iframe-transport.js +0 -224
- data/vendor/assets/javascripts/jquery-ui/data.js +0 -45
- data/vendor/assets/javascripts/jquery-ui/ie.js +0 -20
- data/vendor/assets/javascripts/jquery-ui/keycode.js +0 -51
- data/vendor/assets/javascripts/jquery-ui/plugin.js +0 -49
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +0 -46
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +0 -27
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +0 -50
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +0 -54
- data/vendor/assets/javascripts/jquery-ui/version.js +0 -20
- data/vendor/assets/javascripts/jquery-ui/widget.js +0 -754
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +0 -1268
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +0 -241
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +0 -1623
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +0 -931
- data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo.min.js +0 -7
- data/vendor/assets/javascripts/jquery_plugins/jquery.ui.tabspaging.js +0 -296
- data/vendor/assets/stylesheets/fontawesome/_animated.scss +0 -20
- data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +0 -20
- data/vendor/assets/stylesheets/fontawesome/_core.scss +0 -21
- data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +0 -6
- data/vendor/assets/stylesheets/fontawesome/_icons.scss +0 -1441
- data/vendor/assets/stylesheets/fontawesome/_larger.scss +0 -23
- data/vendor/assets/stylesheets/fontawesome/_list.scss +0 -18
- data/vendor/assets/stylesheets/fontawesome/_mixins.scss +0 -56
- data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +0 -24
- data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +0 -5
- data/vendor/assets/stylesheets/fontawesome/_stacked.scss +0 -31
- data/vendor/assets/stylesheets/fontawesome/_variables.scss +0 -1458
- data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +0 -16
- data/vendor/assets/stylesheets/fontawesome/regular.scss +0 -23
- data/vendor/assets/stylesheets/fontawesome/solid.scss +0 -24
@@ -138,29 +138,27 @@ module Alchemy
|
|
138
138
|
def icon_css_class
|
139
139
|
case file_mime_type
|
140
140
|
when "application/pdf"
|
141
|
-
"file-pdf"
|
142
|
-
when "application/msword"
|
143
|
-
"file-word"
|
141
|
+
"file-pdf-2"
|
144
142
|
when *TEXT_FILE_TYPES
|
145
|
-
"file-
|
143
|
+
"file-text"
|
146
144
|
when *EXCEL_FILE_TYPES
|
147
|
-
"file-excel"
|
145
|
+
"file-excel-2"
|
148
146
|
when *POWERPOINT_FILE_TYPES
|
149
|
-
"file-
|
147
|
+
"file-ppt-2"
|
150
148
|
when *WORD_FILE_TYPES
|
151
|
-
"file-word"
|
149
|
+
"file-word-2"
|
152
150
|
when *VCARD_FILE_TYPES
|
153
|
-
"
|
151
|
+
"profile"
|
154
152
|
when *ARCHIVE_FILE_TYPES
|
155
|
-
"file-
|
153
|
+
"file-zip"
|
156
154
|
when *AUDIO_FILE_TYPES
|
157
|
-
"file-
|
155
|
+
"file-music"
|
158
156
|
when *IMAGE_FILE_TYPES
|
159
157
|
"file-image"
|
160
158
|
when *VIDEO_FILE_TYPES
|
161
159
|
"file-video"
|
162
160
|
else
|
163
|
-
"file"
|
161
|
+
"file-3"
|
164
162
|
end
|
165
163
|
end
|
166
164
|
|
@@ -183,6 +183,17 @@ module Alchemy
|
|
183
183
|
end
|
184
184
|
end
|
185
185
|
|
186
|
+
# Heavily unoptimized naive way to get all parent ids
|
187
|
+
def parent_element_ids
|
188
|
+
ids ||= []
|
189
|
+
parent = parent_element
|
190
|
+
while parent
|
191
|
+
ids.push parent.id
|
192
|
+
parent = parent.parent_element
|
193
|
+
end
|
194
|
+
ids
|
195
|
+
end
|
196
|
+
|
186
197
|
# Returns next public element from same page.
|
187
198
|
#
|
188
199
|
# Pass an element name to get next of this kind.
|
@@ -28,21 +28,12 @@ module Alchemy
|
|
28
28
|
stripped_body.to_s[0..max_length - 1]
|
29
29
|
end
|
30
30
|
|
31
|
-
def element_id
|
32
|
-
"tinymce_#{id}"
|
33
|
-
end
|
34
|
-
|
35
31
|
def has_tinymce?
|
36
32
|
true
|
37
33
|
end
|
38
34
|
|
39
|
-
# Returns true if there is a tinymce setting defined that contains settings.
|
40
|
-
def has_custom_tinymce_config?
|
41
|
-
custom_tinymce_config.is_a?(Hash)
|
42
|
-
end
|
43
|
-
|
44
35
|
def custom_tinymce_config
|
45
|
-
settings[:tinymce]
|
36
|
+
settings[:tinymce] || {}
|
46
37
|
end
|
47
38
|
|
48
39
|
private
|
data/app/models/alchemy/node.rb
CHANGED
@@ -37,20 +37,11 @@ module Alchemy
|
|
37
37
|
#
|
38
38
|
def copy_elements(source, target)
|
39
39
|
repository = source.draft_version.element_repository
|
40
|
-
elements = repository.not_nested
|
41
|
-
page_version = target.draft_version
|
42
|
-
duplicate_elements(elements.unfixed, repository, page_version) +
|
43
|
-
duplicate_elements(elements.fixed, repository, page_version)
|
44
|
-
end
|
45
|
-
|
46
|
-
private
|
47
|
-
|
48
|
-
def duplicate_elements(elements, repository, page_version)
|
49
40
|
transaction do
|
50
41
|
Element.acts_as_list_no_update do
|
51
|
-
|
42
|
+
repository.not_nested.each.with_index(1) do |element, position|
|
52
43
|
Alchemy::DuplicateElement.new(element, repository: repository).call(
|
53
|
-
page_version_id:
|
44
|
+
page_version_id: target.draft_version.id,
|
54
45
|
position: position
|
55
46
|
)
|
56
47
|
end
|
@@ -62,14 +62,22 @@ module Alchemy
|
|
62
62
|
}
|
63
63
|
end
|
64
64
|
|
65
|
-
# Returns the translated status for given status type.
|
65
|
+
# Returns the long translated status message for given status type.
|
66
66
|
#
|
67
67
|
# @param [Symbol] status_type
|
68
68
|
#
|
69
|
-
def
|
69
|
+
def status_message(status_type)
|
70
70
|
Alchemy.t(status[status_type].to_s, scope: "page_states.#{status_type}")
|
71
71
|
end
|
72
72
|
|
73
|
+
# Returns the sort translated status title for given status type.
|
74
|
+
#
|
75
|
+
# @param [Symbol] status_type
|
76
|
+
#
|
77
|
+
def status_title(status_type)
|
78
|
+
Alchemy.t(status[status_type].to_s, scope: "page_status_titles.#{status_type}")
|
79
|
+
end
|
80
|
+
|
73
81
|
# Returns the self#page_layout definition from config/alchemy/page_layouts.yml file.
|
74
82
|
def definition
|
75
83
|
definition = PageLayout.get(page_layout)
|
data/app/models/alchemy/page.rb
CHANGED
@@ -121,8 +121,6 @@ module Alchemy
|
|
121
121
|
has_one :draft_version, -> { drafts }, class_name: "Alchemy::PageVersion"
|
122
122
|
has_one :public_version, -> { published }, class_name: "Alchemy::PageVersion", autosave: -> { persisted? }
|
123
123
|
|
124
|
-
has_many :page_ingredients, class_name: "Alchemy::Ingredients::Page", foreign_key: :related_object_id, dependent: :nullify
|
125
|
-
|
126
124
|
before_validation :set_language,
|
127
125
|
if: -> { language.nil? }
|
128
126
|
|
@@ -235,23 +233,17 @@ module Alchemy
|
|
235
233
|
# @return [Alchemy::Page]
|
236
234
|
#
|
237
235
|
def copy(source, differences = {})
|
238
|
-
|
239
|
-
page = Alchemy::Page.new(attributes_from_source_for_copy(source, differences))
|
240
|
-
page.tag_list = source.tag_list
|
241
|
-
if page.save!
|
242
|
-
copy_elements(source, page)
|
243
|
-
page
|
244
|
-
end
|
245
|
-
end
|
236
|
+
Alchemy::CopyPage.new(page: source).call(changed_attributes: differences)
|
246
237
|
end
|
247
238
|
|
248
239
|
def copy_and_paste(source, new_parent, new_name)
|
249
|
-
page =
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
240
|
+
page = Alchemy::CopyPage.new(page: source)
|
241
|
+
.call(changed_attributes: {
|
242
|
+
parent: new_parent,
|
243
|
+
language: new_parent&.language,
|
244
|
+
name: new_name,
|
245
|
+
title: new_name
|
246
|
+
})
|
255
247
|
if source.children.any?
|
256
248
|
source.copy_children_to(page)
|
257
249
|
end
|
@@ -282,40 +274,6 @@ module Alchemy
|
|
282
274
|
end
|
283
275
|
options
|
284
276
|
end
|
285
|
-
|
286
|
-
private
|
287
|
-
|
288
|
-
# Aggregates the attributes from given source for copy of page.
|
289
|
-
#
|
290
|
-
# @param [Alchemy::Page]
|
291
|
-
# The source page
|
292
|
-
# @param [Hash]
|
293
|
-
# A optional hash with attributes that take precedence over the source attributes
|
294
|
-
#
|
295
|
-
def attributes_from_source_for_copy(source, differences = {})
|
296
|
-
source.attributes.stringify_keys!
|
297
|
-
differences.stringify_keys!
|
298
|
-
attributes = source.attributes.merge(differences)
|
299
|
-
attributes.merge!(DEFAULT_ATTRIBUTES_FOR_COPY)
|
300
|
-
attributes["name"] = new_name_for_copy(differences["name"], source.name)
|
301
|
-
attributes.except(*SKIPPED_ATTRIBUTES_ON_COPY)
|
302
|
-
end
|
303
|
-
|
304
|
-
# Returns a new name for copy of page.
|
305
|
-
#
|
306
|
-
# If the differences hash includes a new name this is taken.
|
307
|
-
# Otherwise +source.name+
|
308
|
-
#
|
309
|
-
# @param [String]
|
310
|
-
# The differences hash that contains a new name
|
311
|
-
# @param [String]
|
312
|
-
# The name of the source
|
313
|
-
#
|
314
|
-
def new_name_for_copy(custom_name, source_name)
|
315
|
-
return custom_name if custom_name.present?
|
316
|
-
|
317
|
-
"#{source_name} (#{Alchemy.t("Copy")})"
|
318
|
-
end
|
319
277
|
end
|
320
278
|
|
321
279
|
# Instance methods
|
@@ -449,7 +407,7 @@ module Alchemy
|
|
449
407
|
children.each do |child|
|
450
408
|
next if child == new_parent
|
451
409
|
|
452
|
-
new_child =
|
410
|
+
new_child = Alchemy::CopyPage.new(page: child).call(changed_attributes: {
|
453
411
|
parent_id: new_parent.id,
|
454
412
|
language_id: new_parent.language_id,
|
455
413
|
language_code: new_parent.language_code
|
@@ -35,7 +35,7 @@ module Alchemy
|
|
35
35
|
thumb.uid
|
36
36
|
else
|
37
37
|
uid = PictureThumb::Uid.call(signature, variant)
|
38
|
-
ActiveRecord::Base.connected_to(role:
|
38
|
+
ActiveRecord::Base.connected_to(role: ActiveRecord.writing_role) do
|
39
39
|
PictureThumb::Create.call(variant, signature, uid)
|
40
40
|
end
|
41
41
|
uid
|
@@ -49,14 +49,6 @@ module Alchemy
|
|
49
49
|
variant.picture.thumbs.find_by(signature: signature)
|
50
50
|
end
|
51
51
|
end
|
52
|
-
|
53
|
-
def db_writing_role
|
54
|
-
if ActiveRecord::Base.respond_to?(:writing_role)
|
55
|
-
ActiveRecord::Base.writing_role
|
56
|
-
else
|
57
|
-
ActiveRecord.writing_role
|
58
|
-
end
|
59
|
-
end
|
60
52
|
end
|
61
53
|
end
|
62
54
|
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Alchemy
|
4
|
+
# Creates a copy of given source page.
|
5
|
+
#
|
6
|
+
# Also copies all elements included in source page.
|
7
|
+
#
|
8
|
+
# === Note:
|
9
|
+
#
|
10
|
+
# It prevents the element auto generator from running.
|
11
|
+
class CopyPage
|
12
|
+
DEFAULT_ATTRIBUTES_FOR_COPY = {
|
13
|
+
autogenerate_elements: false,
|
14
|
+
public_on: nil,
|
15
|
+
public_until: nil,
|
16
|
+
locked_at: nil,
|
17
|
+
locked_by: nil
|
18
|
+
}
|
19
|
+
|
20
|
+
SKIPPED_ATTRIBUTES_ON_COPY = %w[
|
21
|
+
id
|
22
|
+
updated_at
|
23
|
+
created_at
|
24
|
+
creator_id
|
25
|
+
updater_id
|
26
|
+
lft
|
27
|
+
rgt
|
28
|
+
depth
|
29
|
+
urlname
|
30
|
+
cached_tag_list
|
31
|
+
]
|
32
|
+
|
33
|
+
attr_reader :page
|
34
|
+
|
35
|
+
# @param page [Alchemy::Page]
|
36
|
+
# The source page the copy is taken from
|
37
|
+
def initialize(page:)
|
38
|
+
@page = page
|
39
|
+
end
|
40
|
+
|
41
|
+
# @param changed_attributes [Hash]
|
42
|
+
# A optional hash with attributes that take precedence over the source attributes
|
43
|
+
#
|
44
|
+
# @return [Alchemy::Page]
|
45
|
+
#
|
46
|
+
def call(changed_attributes:)
|
47
|
+
Alchemy::Page.transaction do
|
48
|
+
new_page = Alchemy::Page.new(attributes_from_source_for_copy(changed_attributes))
|
49
|
+
new_page.tag_list = page.tag_list
|
50
|
+
if new_page.save!
|
51
|
+
Alchemy::Page.copy_elements(page, new_page)
|
52
|
+
end
|
53
|
+
new_page
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
private
|
58
|
+
|
59
|
+
# Aggregates the attributes from given source for copy of page.
|
60
|
+
#
|
61
|
+
# @param [Alchemy::Page]
|
62
|
+
# The source page
|
63
|
+
# @param [Hash]
|
64
|
+
# A optional hash with attributes that take precedence over the source attributes
|
65
|
+
#
|
66
|
+
def attributes_from_source_for_copy(differences = {})
|
67
|
+
source_attributes = page.attributes.stringify_keys
|
68
|
+
differences.stringify_keys!
|
69
|
+
desired_attributes = source_attributes
|
70
|
+
.merge(DEFAULT_ATTRIBUTES_FOR_COPY)
|
71
|
+
.merge(differences)
|
72
|
+
desired_attributes["name"] = best_name_for_copy(source_attributes, desired_attributes)
|
73
|
+
desired_attributes.except(*SKIPPED_ATTRIBUTES_ON_COPY)
|
74
|
+
end
|
75
|
+
|
76
|
+
# Returns a new name for copy of page.
|
77
|
+
#
|
78
|
+
# If the differences hash includes a new name this is taken.
|
79
|
+
# Otherwise +source.name+
|
80
|
+
#
|
81
|
+
# @param [Hash]
|
82
|
+
# The differences hash that contains a new name
|
83
|
+
# @param [Hash]
|
84
|
+
# The name of the source
|
85
|
+
#
|
86
|
+
def best_name_for_copy(source_attributes, desired_attributes)
|
87
|
+
desired_name = desired_attributes["name"].presence || source_attributes["name"]
|
88
|
+
|
89
|
+
new_parent_id = desired_attributes["parent"]&.id || desired_attributes["parent_id"]
|
90
|
+
|
91
|
+
if Alchemy::Page.where(parent_id: new_parent_id, name: desired_name).exists?
|
92
|
+
"#{desired_name} (#{Alchemy.t("Copy")})"
|
93
|
+
else
|
94
|
+
desired_name
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
@@ -1,16 +1,20 @@
|
|
1
1
|
<% if !@preview_mode && @page && can?(:edit_content, @page) %>
|
2
|
-
<
|
3
|
-
<
|
4
|
-
|
5
|
-
<
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
2
|
+
<alchemy-menubar>
|
3
|
+
<template>
|
4
|
+
<%= stylesheet_link_tag("alchemy/menubar") %>
|
5
|
+
<div id="alchemy_menubar" data-turbo="false">
|
6
|
+
<ul>
|
7
|
+
<li><%= link_to Alchemy.t(:to_alchemy), alchemy.admin_dashboard_url %></li>
|
8
|
+
<li><%= link_to Alchemy.t(:edit_page), alchemy.edit_admin_page_url(@page) %></li>
|
9
|
+
<li>
|
10
|
+
<%= form_tag Alchemy.logout_path, method: Alchemy.logout_method do %>
|
11
|
+
<%= button_tag Alchemy.t(:logout) %>
|
12
|
+
<% end %>
|
13
|
+
</li>
|
14
|
+
</ul>
|
15
|
+
</div>
|
16
|
+
</template>
|
17
|
+
</alchemy-menubar>
|
13
18
|
|
14
|
-
<%=
|
15
|
-
<%= javascript_include_tag('alchemy/menubar') %>
|
19
|
+
<%= javascript_include_tag('menubar', type: "module") %>
|
16
20
|
<% end %>
|
@@ -1,14 +1,18 @@
|
|
1
1
|
<div id="overlay_toolbar">
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
2
|
+
<div class="toolbar_buttons">
|
3
|
+
<% if can? :create, Alchemy::Attachment %>
|
4
|
+
<div class="toolbar_button">
|
5
|
+
<%= render 'alchemy/admin/uploader/button',
|
6
|
+
object: Alchemy::Attachment.new,
|
7
|
+
dropzone: '#assign_file_list',
|
8
|
+
file_attribute: 'file',
|
9
|
+
in_dialog: true,
|
10
|
+
redirect_url: admin_attachments_path(
|
11
|
+
form_field_id: @form_field_id
|
12
|
+
) %>
|
13
|
+
</div>
|
14
|
+
<% end %>
|
15
|
+
</div>
|
12
16
|
<%= render 'alchemy/admin/partials/remote_search_form' %>
|
13
17
|
</div>
|
14
18
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<tr class="<%= cycle('even', 'odd') %>">
|
2
2
|
<td class="icon">
|
3
|
-
<%= render_icon attachment.icon_css_class,
|
3
|
+
<%= render_icon attachment.icon_css_class, size: "xl" %>
|
4
4
|
</td>
|
5
5
|
<td class="name">
|
6
6
|
<% if can?(:show, attachment) %>
|
@@ -25,49 +25,57 @@
|
|
25
25
|
<td class="date"><%= l(attachment.created_at, format: :'alchemy.default') %></td>
|
26
26
|
<td class="tools long">
|
27
27
|
<% if can?(:show, attachment) %>
|
28
|
-
<%=
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
28
|
+
<sl-tooltip content="<%= Alchemy.t('Attachment Preview') %>">
|
29
|
+
<%= link_to_dialog(
|
30
|
+
render_icon(:information),
|
31
|
+
alchemy.admin_attachment_path(attachment),
|
32
|
+
{
|
33
|
+
title: attachment.name,
|
34
|
+
size: attachment_preview_size(attachment)
|
35
|
+
},
|
36
|
+
class: "icon_button"
|
37
|
+
) %>
|
38
|
+
</sl-tooltip>
|
39
39
|
<% end %>
|
40
40
|
<% if can?(:download, attachment) %>
|
41
|
-
<%=
|
42
|
-
|
43
|
-
|
44
|
-
|
41
|
+
<sl-tooltip content="<%= Alchemy.t("download_file", filename: attachment.file_name) %>">
|
42
|
+
<%= link_to render_icon(:download),
|
43
|
+
alchemy.download_admin_attachment_path(attachment),
|
44
|
+
target: "_blank",
|
45
|
+
class: "icon_button" %>
|
46
|
+
</sl-tooltip>
|
45
47
|
<% end %>
|
46
48
|
<% if can?(:edit, attachment) %>
|
47
|
-
<%=
|
48
|
-
|
49
|
-
|
50
|
-
|
49
|
+
<sl-tooltip content="<%= Alchemy.t(:replace_file) %>">
|
50
|
+
<%= render 'alchemy/admin/attachments/replace_button',
|
51
|
+
redirect_url: alchemy.admin_attachments_path,
|
52
|
+
object: attachment,
|
53
|
+
file_attribute: 'file' %>
|
54
|
+
</sl-tooltip>
|
51
55
|
<% end %>
|
52
56
|
<% if can?(:destroy, attachment) %>
|
53
|
-
<%=
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
57
|
+
<sl-tooltip content="<%= Alchemy.t(:delete_file) %>">
|
58
|
+
<%= link_to_confirm_dialog render_icon(:minus),
|
59
|
+
Alchemy.t(:confirm_to_delete_file),
|
60
|
+
alchemy.admin_attachment_path(
|
61
|
+
id: attachment,
|
62
|
+
q: search_filter_params[:q],
|
63
|
+
page: params[:page],
|
64
|
+
per_page: params[:per_page]
|
65
|
+
),
|
66
|
+
class: "icon_button" %>
|
67
|
+
</sl-tooltip>
|
62
68
|
<% end %>
|
63
69
|
<% if can?(:edit, attachment) %>
|
64
|
-
<%=
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
70
|
+
<sl-tooltip content="<%= Alchemy.t(:rename_file) %>">
|
71
|
+
<%= link_to_dialog render_icon(:edit),
|
72
|
+
alchemy.edit_admin_attachment_path(attachment, q: search_filter_params[:q], page: params[:page]),
|
73
|
+
{
|
74
|
+
title: Alchemy.t(:rename_file),
|
75
|
+
size: '500x250'
|
76
|
+
},
|
77
|
+
class: "icon_button" %>
|
78
|
+
</sl-tooltip>
|
71
79
|
<% end %>
|
72
80
|
</td>
|
73
81
|
</tr>
|
@@ -1,25 +1,19 @@
|
|
1
|
-
|
2
|
-
<%= f.file_field file_attribute,
|
3
|
-
class: 'fileupload--field',
|
4
|
-
name: "#{f.object_name}[#{file_attribute}]",
|
5
|
-
id: "replace_#{dom_id(object)}" %>
|
6
|
-
<%= label_tag "replace_#{dom_id(object)}", title: Alchemy.t(:replace_file) do %>
|
7
|
-
<%= render_icon :sync %>
|
8
|
-
<% end %>
|
9
|
-
<% end %>
|
1
|
+
<% file_upload_id = "file_upload_#{dom_id(object)}" %>
|
10
2
|
|
11
|
-
|
12
|
-
|
3
|
+
<alchemy-uploader id="<%= file_upload_id %>">
|
4
|
+
<%= form_for [:admin, object], html: {multipart: true, class: 'upload-button'} do |f| %>
|
5
|
+
<%= f.file_field file_attribute,
|
6
|
+
class: 'fileupload--field',
|
7
|
+
name: "#{f.object_name}[#{file_attribute}]",
|
8
|
+
id: "replace_#{dom_id(object)}" %>
|
9
|
+
<%= label_tag "replace_#{dom_id(object)}", class: "icon_button" do %>
|
10
|
+
<%= render_icon "file-upload" %>
|
11
|
+
<% end %>
|
12
|
+
<% end %>
|
13
|
+
</alchemy-uploader>
|
13
14
|
|
14
15
|
<script type='text/javascript'>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
file_types: '<%= file_types.join("|") %>',
|
19
|
-
complete: function() {
|
20
|
-
Turbo.visit('<%= redirect_url.html_safe %>');
|
21
|
-
}
|
22
|
-
};
|
23
|
-
Alchemy.Uploader(options);
|
24
|
-
});
|
16
|
+
document.getElementById("<%= file_upload_id %>").addEventListener("Alchemy.upload.successful", (event) => {
|
17
|
+
Turbo.visit('<%= redirect_url.html_safe %>');
|
18
|
+
})
|
25
19
|
</script>
|
@@ -6,6 +6,6 @@
|
|
6
6
|
$form_field.parent().find("> .file_icon").html("<%= j render_icon(@attachment.icon_css_class) %>")
|
7
7
|
$form_field.parent().find("> .remove_file_link").removeClass("hidden")
|
8
8
|
Alchemy.closeCurrentDialog(function() {
|
9
|
-
|
9
|
+
$form_field[0].closest("alchemy-element-editor").setDirty()
|
10
10
|
})
|
11
11
|
})()
|
@@ -1,10 +1,12 @@
|
|
1
1
|
<% content_for(:toolbar) do %>
|
2
2
|
<div class="toolbar_buttons">
|
3
3
|
<% if can? :create, Alchemy::Attachment %>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
<div class="toolbar_button">
|
5
|
+
<%= render 'alchemy/admin/uploader/button',
|
6
|
+
redirect_url: alchemy.admin_attachments_path,
|
7
|
+
object: Alchemy::Attachment.new,
|
8
|
+
file_attribute: 'file' %>
|
9
|
+
</div>
|
8
10
|
<% end %>
|
9
11
|
</div>
|
10
12
|
<%= render 'alchemy/admin/partials/search_form' %>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="resource_info">
|
2
2
|
<div class="value">
|
3
3
|
<label>
|
4
|
-
<%= render_icon @attachment.icon_css_class
|
4
|
+
<%= render_icon @attachment.icon_css_class %>
|
5
5
|
</label>
|
6
6
|
<p><%= @attachment.file_name %></p>
|
7
7
|
</div>
|
@@ -9,32 +9,32 @@
|
|
9
9
|
<label><%= Alchemy::Attachment.human_attribute_name(:url) %></label>
|
10
10
|
<p><%= @attachment.url %></p>
|
11
11
|
<a data-clipboard-text="<%= @attachment.url %>" class="icon_button--right">
|
12
|
-
<%= render_icon(:clipboard
|
12
|
+
<%= render_icon(:clipboard) %>
|
13
13
|
</a>
|
14
14
|
</div>
|
15
15
|
<div class="value with-icon">
|
16
16
|
<label><%= Alchemy::Attachment.human_attribute_name(:download_url) %></label>
|
17
17
|
<p><%= @attachment.url(download: true) %></p>
|
18
18
|
<a data-clipboard-text="<%= @attachment.url(download: true) %>" class="icon_button--right">
|
19
|
-
<%= render_icon(:clipboard
|
19
|
+
<%= render_icon(:clipboard) %>
|
20
20
|
</a>
|
21
21
|
</div>
|
22
22
|
</div>
|
23
23
|
|
24
|
-
<% case @attachment.
|
25
|
-
<% when
|
24
|
+
<% case @attachment.file_mime_type %>
|
25
|
+
<% when *Alchemy::Filetypes::IMAGE_FILE_TYPES %>
|
26
26
|
<div class="attachment_preview_container image-preview">
|
27
27
|
<%= image_tag(@attachment.url, class: "full_width") %>
|
28
28
|
</div>
|
29
|
-
<% when
|
29
|
+
<% when *Alchemy::Filetypes::AUDIO_FILE_TYPES %>
|
30
30
|
<div class="attachment_preview_container player-preview">
|
31
31
|
<%= audio_tag(@attachment.url, preload: "none", controls: true, class: "full_width") %>
|
32
32
|
</div>
|
33
|
-
<% when
|
33
|
+
<% when *Alchemy::Filetypes::VIDEO_FILE_TYPES %>
|
34
34
|
<div class="attachment_preview_container player-preview">
|
35
35
|
<%= video_tag(@attachment.url, preload: "metadata", controls: true, class: "full_width") %>
|
36
36
|
</div>
|
37
|
-
<% when "
|
37
|
+
<% when "application/pdf" %>
|
38
38
|
<iframe src="<%= @attachment.url %>" frameborder=0 class="full-iframe">
|
39
39
|
Your browser does not support frames.
|
40
40
|
</iframe>
|