alchemy_cms 5.2.0 → 6.0.0.b3
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 +0 -1
- data/.hound.yml +1 -1
- data/.rubocop.yml +46 -4
- data/CHANGELOG.md +114 -5
- data/Gemfile +8 -1
- data/README.md +5 -2
- data/alchemy_cms.gemspec +78 -65
- data/app/assets/javascripts/alchemy/admin.js +0 -2
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
- data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
- data/app/assets/stylesheets/alchemy/_extends.scss +15 -2
- data/app/assets/stylesheets/alchemy/admin.scss +1 -1
- data/app/assets/stylesheets/alchemy/archive.scss +20 -5
- 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 +1 -0
- data/app/controllers/alchemy/admin/attachments_controller.rb +8 -4
- data/app/controllers/alchemy/admin/base_controller.rb +5 -7
- data/app/controllers/alchemy/admin/elements_controller.rb +59 -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 +7 -22
- data/app/controllers/alchemy/admin/pictures_controller.rb +56 -17
- data/app/controllers/alchemy/admin/resources_controller.rb +84 -10
- data/app/controllers/alchemy/api/elements_controller.rb +13 -4
- data/app/controllers/alchemy/api/pages_controller.rb +4 -3
- 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 +26 -1
- data/app/decorators/alchemy/ingredient_editor.rb +158 -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 +23 -6
- data/app/helpers/alchemy/elements_helper.rb +12 -5
- data/app/helpers/alchemy/pages_helper.rb +3 -11
- data/app/jobs/alchemy/base_job.rb +11 -0
- data/app/jobs/alchemy/publish_page_job.rb +11 -0
- data/app/models/alchemy/attachment.rb +24 -7
- data/app/models/alchemy/content.rb +1 -6
- data/app/models/alchemy/content/factory.rb +23 -27
- data/app/models/alchemy/element.rb +39 -72
- 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 +111 -98
- data/app/models/alchemy/element/element_ingredients.rb +184 -0
- data/app/models/alchemy/element/presenters.rb +104 -85
- 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 +183 -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/page.rb +76 -33
- 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 +117 -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_version.rb +58 -0
- data/app/models/alchemy/picture.rb +18 -40
- 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 +24 -96
- 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_tree_serializer.rb +3 -2
- 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 +2 -3
- 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/attachments/index.html.erb +2 -3
- 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/create.js.erb +1 -1
- data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +2 -6
- data/app/views/alchemy/admin/elements/fold.js.erb +2 -2
- 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 -6
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
- data/app/views/alchemy/admin/pages/_toolbar.html.erb +1 -1
- data/app/views/alchemy/admin/pages/edit.html.erb +36 -24
- data/app/views/alchemy/admin/pages/index.html.erb +2 -9
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
- data/app/views/alchemy/admin/partials/_routes.html.erb +7 -11
- data/app/views/alchemy/admin/partials/_search_form.html.erb +9 -0
- data/app/views/alchemy/admin/pictures/_archive.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +5 -7
- 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/pictures/index.html.erb +8 -3
- data/app/views/alchemy/admin/resources/_filter.html.erb +12 -0
- data/app/views/alchemy/admin/resources/_filter_bar.html.erb +14 -17
- data/app/views/alchemy/admin/resources/_form.html.erb +3 -0
- data/app/views/alchemy/admin/resources/_table_header.html.erb +15 -0
- data/app/views/alchemy/admin/resources/index.html.erb +3 -11
- 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_picture_editor.html.erb +27 -12
- data/app/views/alchemy/essences/_essence_picture_view.html.erb +3 -3
- 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 +52 -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 +26 -0
- data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_page_editor.html.erb +25 -0
- data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +60 -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 +30 -0
- data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_text_editor.html.erb +20 -0
- data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
- data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
- data/config/brakeman.ignore +66 -159
- data/config/initializers/dragonfly.rb +10 -0
- data/config/locales/alchemy.en.yml +108 -64
- data/config/routes.rb +17 -22
- 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/dragonfly/processors/crop_resize.rb +35 -0
- data/lib/alchemy/elements_finder.rb +14 -60
- data/lib/alchemy/essence.rb +1 -2
- data/lib/alchemy/forms/builder.rb +21 -1
- data/lib/alchemy/hints.rb +8 -4
- data/lib/alchemy/page_layout.rb +0 -13
- data/lib/alchemy/permissions.rb +30 -29
- data/lib/alchemy/resource.rb +13 -3
- data/lib/alchemy/resource_filter.rb +40 -0
- data/lib/alchemy/resources_helper.rb +1 -16
- data/lib/alchemy/tasks/tidy.rb +29 -0
- data/lib/alchemy/test_support.rb +2 -11
- 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 +75 -0
- data/lib/alchemy/tinymce.rb +17 -0
- 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 +62 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy_cms.rb +1 -0
- 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/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/thumbnails.rake +4 -2
- data/lib/tasks/alchemy/tidy.rake +12 -0
- data/lib/tasks/alchemy/upgrade.rake +26 -0
- data/package.json +3 -2
- data/package/admin.js +11 -1
- data/package/src/__tests__/i18n.spec.js +23 -0
- data/package/src/file_editors.js +28 -0
- data/package/src/i18n.js +1 -3
- data/package/src/image_cropper.js +103 -0
- data/package/src/image_loader.js +58 -0
- data/package/src/node_tree.js +5 -5
- data/package/src/picture_editors.js +169 -0
- data/package/src/utils/__tests__/ajax.spec.js +20 -12
- data/package/src/utils/ajax.js +8 -3
- data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
- data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
- metadata +292 -55
- 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/stylesheets/alchemy/trash.scss +0 -8
- data/app/controllers/alchemy/admin/trash_controller.rb +0 -44
- data/app/views/alchemy/admin/attachments/_filter_bar.html.erb +0 -29
- 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/pictures/_filter_bar.html.erb +0 -30
- 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/test_support/factories.rb +0 -16
@@ -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,10 +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
|
-
|
8
2
|
<div class="input check_boxes">
|
9
3
|
<label class="control-label"><%= Alchemy.t(:page_status) %></label>
|
10
4
|
<div class="control_group">
|
@@ -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 %>
|
@@ -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 %>
|
@@ -74,4 +74,4 @@
|
|
74
74
|
<% search_filter_params[:view] = "list" %>
|
75
75
|
<%= render "alchemy/admin/partials/search_form",
|
76
76
|
url: alchemy.admin_pages_path(search_filter_params.except(:q, :page)),
|
77
|
-
additional_params: [:view
|
77
|
+
additional_params: [:view] %>
|
@@ -56,23 +56,44 @@
|
|
56
56
|
<% end %>
|
57
57
|
<label><%= Alchemy.t(:page_properties) %></label>
|
58
58
|
</div>
|
59
|
-
|
60
|
-
|
61
|
-
<%=
|
62
|
-
<%=
|
63
|
-
<%= render_icon('cloud-upload-alt') %>
|
64
|
-
<% end %>
|
65
|
-
<label><%= Alchemy.t("Publish page") %></label>
|
59
|
+
<div class="button_with_label">
|
60
|
+
<%= form_tag alchemy.publish_admin_page_path(@page), id: 'publish_page_form' do %>
|
61
|
+
<%= button_tag class: 'icon_button', disabled: cannot?(:publish, @page) do %>
|
62
|
+
<%= render_icon('cloud-upload-alt') %>
|
66
63
|
<% end %>
|
67
|
-
|
68
|
-
|
64
|
+
<label>
|
65
|
+
<% if @page.language.public? %>
|
66
|
+
<%= Alchemy.t(:explain_publishing) %>
|
67
|
+
<% elsif @page.editable_by?(current_alchemy_user) %>
|
68
|
+
<%= Alchemy.t(:publish_page_language_not_public) %>
|
69
|
+
<% else %>
|
70
|
+
<%= Alchemy.t(:publish_page_not_allowed) %>
|
71
|
+
<% end %>
|
72
|
+
</label>
|
73
|
+
<% end %>
|
74
|
+
</div>
|
69
75
|
<% unless @page.layoutpage? %>
|
70
76
|
<div class="button_with_label">
|
71
|
-
|
72
|
-
<%=
|
77
|
+
<% if @page.public? %>
|
78
|
+
<%= link_to show_page_url(
|
79
|
+
urlname: @page.urlname,
|
80
|
+
locale: prefix_locale? ? @page.language_code : nil,
|
81
|
+
host: @page.site.host == "*" ? request.host : @page.site.host,
|
82
|
+
),
|
83
|
+
title: Alchemy.t("Visit page"),
|
84
|
+
data: { turbolinks: false },
|
85
|
+
target: "_blank",
|
86
|
+
class: 'icon_button' do %>
|
73
87
|
<%= render_icon('external-link-alt') %>
|
74
88
|
<% end %>
|
75
89
|
<label><%= Alchemy.t("Visit page") %></label>
|
90
|
+
<% else %>
|
91
|
+
<%= content_tag "a",
|
92
|
+
title: Alchemy.t(:cannot_visit_unpublic_page),
|
93
|
+
class: 'disabled icon_button' do %>
|
94
|
+
<%= render_icon('external-link-alt') %>
|
95
|
+
<% end %>
|
96
|
+
<label><%= Alchemy.t(:cannot_visit_unpublic_page) %></label>
|
76
97
|
<% end %>
|
77
98
|
</div>
|
78
99
|
<% end %>
|
@@ -128,14 +149,14 @@
|
|
128
149
|
<script type="text/javascript" charset="utf-8">
|
129
150
|
|
130
151
|
$(function() {
|
131
|
-
$('#unlock_page_form, #
|
152
|
+
$('#unlock_page_form, #publish_page_form').on('submit', function(event) {
|
132
153
|
var not_dirty = Alchemy.checkPageDirtyness(this);
|
133
154
|
if (!not_dirty) Alchemy.pleaseWaitOverlay(false);
|
134
155
|
return not_dirty;
|
135
156
|
});
|
136
157
|
Alchemy.Sitemap.watchPagePublicationState();
|
137
158
|
Alchemy.PageLeaveObserver();
|
138
|
-
Alchemy.ElementsWindow.init('<%= alchemy.admin_elements_path(
|
159
|
+
Alchemy.ElementsWindow.init('<%= alchemy.admin_elements_path(page_version_id: @page_version.id) %>', {
|
139
160
|
texts: {
|
140
161
|
title: '<%= Alchemy.t("Elements") %>',
|
141
162
|
dirtyTitle: '<%= Alchemy.t("Warning!") %>',
|
@@ -152,7 +173,7 @@
|
|
152
173
|
hotkey: 'alt+n',
|
153
174
|
iconClass: 'plus',
|
154
175
|
onClick: function() {
|
155
|
-
Alchemy.openDialog('<%= alchemy.new_admin_element_path(
|
176
|
+
Alchemy.openDialog('<%= alchemy.new_admin_element_path(page_version_id: @page_version.id) %>', {
|
156
177
|
title: '<%= Alchemy.t("New Element") %>',
|
157
178
|
size: '320x125'
|
158
179
|
});
|
@@ -169,15 +190,6 @@
|
|
169
190
|
size: '400x305'
|
170
191
|
});
|
171
192
|
}
|
172
|
-
},
|
173
|
-
{
|
174
|
-
title: '<%= Alchemy.t("Show trash") %>',
|
175
|
-
label: '<%= Alchemy.t("Show trash") %>',
|
176
|
-
iconClass: 'trash-alt<%= trash_empty?("elements") ? "" : " full" %>',
|
177
|
-
buttonId: 'element_trash_button',
|
178
|
-
onClick: function() {
|
179
|
-
Alchemy.TrashWindow.open(<%= @page.id %>, '<%= Alchemy.t("Trash") %>');
|
180
|
-
}
|
181
193
|
}
|
182
194
|
]
|
183
195
|
}, function() {
|
@@ -185,7 +197,7 @@
|
|
185
197
|
Alchemy.SortableElements(<%= @page.id %>, '<%= form_authenticity_token %>');
|
186
198
|
Alchemy.ElementEditors.init();
|
187
199
|
Alchemy.SelectBox('.element-editor');
|
188
|
-
Alchemy.Tinymce.init(<%= @page.richtext_contents_ids.to_json %>);
|
200
|
+
Alchemy.Tinymce.init(<%= (@page.richtext_contents_ids + @page.richtext_ingredients_ids).to_json %>);
|
189
201
|
$('#fixed-elements').tabs().tabs('paging', {
|
190
202
|
follow: true,
|
191
203
|
followOnSelect: true,
|
@@ -24,15 +24,8 @@
|
|
24
24
|
<%= paginate @pages, scope: alchemy, theme: "alchemy" %>
|
25
25
|
|
26
26
|
<div id="library_sidebar">
|
27
|
-
<%= render "
|
28
|
-
|
29
|
-
<%= render "filter_bar",
|
30
|
-
label: Alchemy::Page.human_attribute_name(:status),
|
31
|
-
url: alchemy.admin_pages_path(search_filter_params.except(:filter, :page).merge(view: "list")) %>
|
32
|
-
|
33
|
-
<% if resource_has_tags %>
|
34
|
-
<%= render "tag_list" %>
|
35
|
-
<% end %>
|
27
|
+
<%= render "filter_bar" if resource_has_filters %>
|
28
|
+
<%= render "tag_list" if resource_has_tags %>
|
36
29
|
</div>
|
37
30
|
<% else %>
|
38
31
|
<% if @page_root %>
|
@@ -3,8 +3,7 @@
|
|
3
3
|
size: @size,
|
4
4
|
}.merge(search_filter_params.except(:q))
|
5
5
|
), remote: true, html: {class: 'search_form', id: nil} do |f| %>
|
6
|
-
<%= hidden_field_tag
|
7
|
-
<%= hidden_field_tag("content_id", @content.blank? ? "" : @content.id, id: nil) %>
|
6
|
+
<%= hidden_field_tag :form_field_id, @form_field_id %>
|
8
7
|
<div class="search_field">
|
9
8
|
<button type="submit">
|
10
9
|
<%= render_icon('search') %>
|
@@ -15,8 +14,7 @@
|
|
15
14
|
id: nil %>
|
16
15
|
<%= link_to render_icon(:times, size: 'xs'), url_for({
|
17
16
|
action: 'index',
|
18
|
-
|
19
|
-
content_id: @content.blank? ? '' : @content.id,
|
17
|
+
form_field_id: @form_field_id,
|
20
18
|
size: @size,
|
21
19
|
overlay: true
|
22
20
|
}.merge(search_filter_params.except(:q))),
|
@@ -5,22 +5,18 @@
|
|
5
5
|
return '<%= alchemy.admin_picture_path(id: 1) %>'.replace(/1/, id);
|
6
6
|
},
|
7
7
|
|
8
|
-
admin_trash_path: function(page_id) {
|
9
|
-
var url = '<%= alchemy.admin_trash_path %>';
|
10
|
-
if (page_id) url += '?page_id=' + page_id;
|
11
|
-
return url;
|
12
|
-
},
|
13
|
-
|
14
8
|
fold_admin_element_path: function(id) {
|
15
9
|
return '<%= alchemy.fold_admin_element_path(id: 1) %>'.replace(/1/, id);
|
16
10
|
},
|
17
11
|
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
node: {
|
13
|
+
toggle_folded_api_path: function(id) {
|
14
|
+
return '<%= alchemy.toggle_folded_api_node_path(id: 1) %>'.replace(/1/, id);
|
15
|
+
},
|
21
16
|
|
22
|
-
|
23
|
-
|
17
|
+
move_api_path: function(id) {
|
18
|
+
return '<%= alchemy.move_api_node_path(id: 1) %>'.replace(/1/, id);
|
19
|
+
},
|
24
20
|
},
|
25
21
|
|
26
22
|
order_admin_elements_path: '<%= alchemy.order_admin_elements_path %>',
|
@@ -16,6 +16,15 @@
|
|
16
16
|
id: 'search_field_clear',
|
17
17
|
title: Alchemy.t(:click_to_show_all),
|
18
18
|
style: search_filter_params.fetch(:q, {}).fetch(resource_handler.search_field_name, '').present? ? 'display: block' : 'display: none' %>
|
19
|
+
|
20
|
+
<% search_filter_params.fetch(:filter, []).each do |filter_param| %>
|
21
|
+
<%= hidden_field_tag "filter[#{filter_param[0]}]", filter_param[1], id: nil %>
|
22
|
+
<% end %>
|
23
|
+
|
24
|
+
<% if search_filter_params.fetch(:tagged_with, nil) %>
|
25
|
+
<%= hidden_field_tag :tagged_with, search_filter_params.fetch(:tagged_with), id: nil %>
|
26
|
+
<% end %>
|
27
|
+
|
19
28
|
<% local_assigns.fetch(:additional_params, []).each do |additional_param| %>
|
20
29
|
<%= hidden_field_tag additional_param, search_filter_params[additional_param], id: nil %>
|
21
30
|
<% end %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
</div>
|
4
4
|
<div id="assign_image_list" class="with_padding<%= search_filter_params[:tagged_with].present? ? ' filtered' : '' %>">
|
5
5
|
<div id="library_sidebar">
|
6
|
-
<%= render 'filter_bar' %>
|
6
|
+
<%= render 'filter_bar' if resource_has_filters %>
|
7
7
|
<div class="tag-list">
|
8
8
|
<%= render 'tag_list' %>
|
9
9
|
</div>
|
@@ -7,7 +7,8 @@
|
|
7
7
|
in_dialog: true,
|
8
8
|
redirect_url: alchemy.admin_pictures_path(
|
9
9
|
size: search_filter_params[:size],
|
10
|
-
filter: 'last_upload',
|
10
|
+
filter: { misc: 'last_upload' },
|
11
|
+
form_field_id: @form_field_id,
|
11
12
|
content_id: @content.try(:id),
|
12
13
|
element_id: @element.try(:id)
|
13
14
|
) %>
|
@@ -19,8 +20,7 @@
|
|
19
20
|
render_icon('search-minus'),
|
20
21
|
alchemy.admin_pictures_path({
|
21
22
|
size: "small",
|
22
|
-
|
23
|
-
element_id: @element,
|
23
|
+
form_field_id: @form_field_id,
|
24
24
|
q: search_filter_params[:q],
|
25
25
|
filter: search_filter_params[:filter],
|
26
26
|
tagged_with: search_filter_params[:tagged_with]
|
@@ -35,8 +35,7 @@
|
|
35
35
|
render_icon('search'),
|
36
36
|
alchemy.admin_pictures_path({
|
37
37
|
size: "medium",
|
38
|
-
|
39
|
-
element_id: @element,
|
38
|
+
form_field_id: @form_field_id,
|
40
39
|
q: search_filter_params[:q],
|
41
40
|
filter: search_filter_params[:filter],
|
42
41
|
tagged_with: search_filter_params[:tagged_with]
|
@@ -51,8 +50,7 @@
|
|
51
50
|
render_icon('search-plus'),
|
52
51
|
alchemy.admin_pictures_path({
|
53
52
|
size: "large",
|
54
|
-
|
55
|
-
element_id: @element,
|
53
|
+
form_field_id: @form_field_id,
|
56
54
|
q: search_filter_params[:q],
|
57
55
|
filter: search_filter_params[:filter],
|
58
56
|
tagged_with: search_filter_params[:tagged_with]
|