alchemy_cms 5.2.4 → 6.0.0.b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +6 -14
- data/.gitignore +0 -1
- data/.hound.yml +1 -1
- data/.rubocop.yml +46 -4
- data/CHANGELOG.md +80 -25
- data/Gemfile +4 -2
- 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/admin.scss +1 -1
- data/app/assets/stylesheets/alchemy/archive.scss +4 -4
- data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
- data/app/assets/stylesheets/alchemy/elements.scss +73 -61
- data/app/assets/stylesheets/alchemy/images.scss +8 -0
- data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
- data/app/assets/stylesheets/alchemy/page-select.scss +1 -0
- data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +6 -6
- data/app/controllers/alchemy/admin/attachments_controller.rb +6 -2
- data/app/controllers/alchemy/admin/base_controller.rb +5 -7
- data/app/controllers/alchemy/admin/elements_controller.rb +58 -34
- data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
- data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
- data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
- data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
- data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +6 -13
- data/app/controllers/alchemy/admin/pictures_controller.rb +35 -9
- data/app/controllers/alchemy/api/elements_controller.rb +10 -5
- data/app/controllers/alchemy/api/pages_controller.rb +2 -4
- data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
- data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
- data/app/decorators/alchemy/element_editor.rb +23 -1
- data/app/decorators/alchemy/ingredient_editor.rb +154 -0
- data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
- data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
- data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
- data/app/helpers/alchemy/elements_block_helper.rb +22 -7
- data/app/helpers/alchemy/elements_helper.rb +12 -5
- data/app/helpers/alchemy/pages_helper.rb +3 -11
- data/app/jobs/alchemy/base_job.rb +11 -0
- data/app/jobs/alchemy/publish_page_job.rb +11 -0
- data/app/models/alchemy/attachment.rb +1 -1
- data/app/models/alchemy/content/factory.rb +23 -27
- data/app/models/alchemy/content.rb +1 -6
- data/app/models/alchemy/element/definitions.rb +29 -27
- data/app/models/alchemy/element/element_contents.rb +131 -122
- data/app/models/alchemy/element/element_essences.rb +100 -98
- data/app/models/alchemy/element/element_ingredients.rb +176 -0
- data/app/models/alchemy/element/presenters.rb +89 -87
- data/app/models/alchemy/element.rb +40 -73
- data/app/models/alchemy/elements_repository.rb +126 -0
- data/app/models/alchemy/essence_audio.rb +12 -0
- data/app/models/alchemy/essence_headline.rb +40 -0
- data/app/models/alchemy/essence_picture.rb +4 -116
- data/app/models/alchemy/essence_richtext.rb +12 -0
- data/app/models/alchemy/essence_video.rb +12 -0
- data/app/models/alchemy/image_cropper_settings.rb +87 -0
- data/app/models/alchemy/ingredient.rb +219 -0
- data/app/models/alchemy/ingredient_validator.rb +97 -0
- data/app/models/alchemy/ingredients/audio.rb +29 -0
- data/app/models/alchemy/ingredients/boolean.rb +21 -0
- data/app/models/alchemy/ingredients/datetime.rb +20 -0
- data/app/models/alchemy/ingredients/file.rb +30 -0
- data/app/models/alchemy/ingredients/headline.rb +42 -0
- data/app/models/alchemy/ingredients/html.rb +19 -0
- data/app/models/alchemy/ingredients/link.rb +16 -0
- data/app/models/alchemy/ingredients/node.rb +23 -0
- data/app/models/alchemy/ingredients/page.rb +23 -0
- data/app/models/alchemy/ingredients/picture.rb +41 -0
- data/app/models/alchemy/ingredients/richtext.rb +57 -0
- data/app/models/alchemy/ingredients/select.rb +10 -0
- data/app/models/alchemy/ingredients/text.rb +17 -0
- data/app/models/alchemy/ingredients/video.rb +33 -0
- data/app/models/alchemy/language.rb +0 -11
- data/app/models/alchemy/node.rb +1 -1
- data/app/models/alchemy/page/fixed_attributes.rb +53 -51
- data/app/models/alchemy/page/page_elements.rb +186 -205
- data/app/models/alchemy/page/page_naming.rb +66 -64
- data/app/models/alchemy/page/page_natures.rb +139 -142
- data/app/models/alchemy/page/page_scopes.rb +113 -102
- data/app/models/alchemy/page/publisher.rb +50 -0
- data/app/models/alchemy/page/url_path.rb +1 -1
- data/app/models/alchemy/page.rb +67 -33
- data/app/models/alchemy/page_version.rb +58 -0
- data/app/models/alchemy/picture/calculations.rb +2 -8
- data/app/models/alchemy/picture/preprocessor.rb +2 -0
- data/app/models/alchemy/picture/transformations.rb +24 -96
- data/app/models/alchemy/picture.rb +4 -2
- data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
- data/app/models/concerns/alchemy/touch_elements.rb +2 -2
- data/app/presenters/alchemy/picture_view.rb +88 -0
- data/app/serializers/alchemy/element_serializer.rb +5 -0
- data/app/serializers/alchemy/page_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 +1 -2
- data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
- data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
- data/app/views/alchemy/admin/crop.html.erb +36 -0
- data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
- data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
- data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
- data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +1 -3
- data/app/views/alchemy/admin/elements/new.html.erb +3 -3
- data/app/views/alchemy/admin/elements/order.js.erb +0 -17
- data/app/views/alchemy/admin/elements/update.js.erb +3 -2
- data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
- data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
- data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
- data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
- data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
- data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
- data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
- data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_form.html.erb +0 -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/edit.html.erb +36 -24
- 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/pictures/_filter_and_size_bar.html.erb +4 -8
- data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
- data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
- data/app/views/alchemy/admin/resources/_form.html.erb +1 -0
- data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
- data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
- data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
- data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
- data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
- data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
- data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
- data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
- data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
- data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
- data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
- data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
- data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_file_editor.html.erb +50 -0
- data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
- data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
- data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_node_editor.html.erb +25 -0
- data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_page_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +59 -0
- data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
- data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
- data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
- data/app/views/alchemy/ingredients/_select_editor.html.erb +29 -0
- data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_text_editor.html.erb +19 -0
- data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
- data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
- data/config/brakeman.ignore +66 -159
- data/config/initializers/dragonfly.rb +10 -0
- data/config/locales/alchemy.en.yml +23 -15
- 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/engine.rb +1 -1
- data/lib/alchemy/essence.rb +1 -2
- data/lib/alchemy/hints.rb +8 -4
- data/lib/alchemy/page_layout.rb +0 -13
- data/lib/alchemy/permissions.rb +30 -29
- data/lib/alchemy/resource.rb +13 -3
- data/lib/alchemy/tasks/tidy.rb +29 -0
- data/lib/alchemy/test_support/essence_shared_examples.rb +0 -1
- data/lib/alchemy/test_support/factories/element_factory.rb +8 -8
- data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
- data/lib/alchemy/test_support/factories/page_factory.rb +20 -1
- data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
- data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
- data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
- data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
- data/lib/alchemy/test_support/shared_ingredient_examples.rb +57 -0
- data/lib/alchemy/test_support.rb +2 -11
- data/lib/alchemy/tinymce.rb +17 -0
- data/lib/alchemy/upgrader/five_point_zero.rb +0 -32
- data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
- data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
- data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +51 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
- data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
- data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
- data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
- data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
- data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
- data/lib/generators/alchemy/install/install_generator.rb +1 -2
- data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.erb +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.haml +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.slim +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
- data/lib/tasks/alchemy/tidy.rake +12 -0
- data/lib/tasks/alchemy/upgrade.rake +21 -15
- data/package/admin.js +9 -1
- data/package/src/file_editors.js +28 -0
- data/package/src/image_cropper.js +103 -0
- data/package/src/image_loader.js +58 -0
- data/package/src/node_tree.js +5 -5
- data/package/src/picture_editors.js +169 -0
- data/package/src/utils/__tests__/ajax.spec.js +20 -12
- data/package/src/utils/ajax.js +8 -3
- data/package.json +3 -2
- data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
- data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
- metadata +285 -56
- 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/essence_files/assign.js.erb +0 -3
- data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
- data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
- data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
- data/app/views/alchemy/admin/trash/index.html.erb +0 -31
- data/lib/alchemy/test_support/factories.rb +0 -20
@@ -0,0 +1,17 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: datetime_editor.css_classes,
|
3
|
+
data: datetime_editor.data_attributes do %>
|
4
|
+
<%= element_form.fields_for(:ingredients, datetime_editor.ingredient) do |f| %>
|
5
|
+
<%= ingredient_label(datetime_editor) %>
|
6
|
+
<%= alchemy_datepicker(
|
7
|
+
datetime_editor, :value, {
|
8
|
+
name: datetime_editor.form_field_name,
|
9
|
+
id: datetime_editor.form_field_id,
|
10
|
+
value: datetime_editor.value
|
11
|
+
}
|
12
|
+
) %>
|
13
|
+
<% end %>
|
14
|
+
<label for="<%= datetime_editor.form_field_id %>" class="ingredient-date--label">
|
15
|
+
<i class="icon far fa-calendar-alt fa-fw fa-lg"></i>
|
16
|
+
</label>
|
17
|
+
<% end %>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<%- date_format = datetime_view.settings_value(:date_format,
|
2
|
+
local_assigns.fetch(:options, {})) -%>
|
3
|
+
<%- if datetime_view.value.present? -%>
|
4
|
+
<%- if date_format == 'rfc822' -%>
|
5
|
+
<%= datetime_view.value.to_s(:rfc822) %>
|
6
|
+
<%- else -%>
|
7
|
+
<%= l(datetime_view.value, format: date_format) %>
|
8
|
+
<%- end -%>
|
9
|
+
<%- end -%>
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<% dialog_link = link_to_dialog render_icon(:file, style: "regular"),
|
2
|
+
alchemy.admin_attachments_path(
|
3
|
+
form_field_id: file_editor.form_field_id(:attachment_id),
|
4
|
+
only: file_editor.settings[:only],
|
5
|
+
except: file_editor.settings[:except]
|
6
|
+
),
|
7
|
+
{
|
8
|
+
title: Alchemy.t(:assign_file),
|
9
|
+
size: "780x585",
|
10
|
+
padding: false
|
11
|
+
},
|
12
|
+
class: "file_icon",
|
13
|
+
title: Alchemy.t(:assign_file) %>
|
14
|
+
|
15
|
+
<%= content_tag :div,
|
16
|
+
class: file_editor.css_classes,
|
17
|
+
data: file_editor.data_attributes do %>
|
18
|
+
<%= element_form.fields_for(:ingredients, file_editor.ingredient) do |f| %>
|
19
|
+
<%= ingredient_label(file_editor) %>
|
20
|
+
<div class="file">
|
21
|
+
<% if file_editor.attachment %>
|
22
|
+
<div class="file_icon">
|
23
|
+
<%= render_icon(file_editor.attachment.icon_css_class) %>
|
24
|
+
</div>
|
25
|
+
<% end %>
|
26
|
+
<div class="file_name">
|
27
|
+
<%= file_editor.attachment&.name %>
|
28
|
+
</div>
|
29
|
+
<%= link_to render_icon(:times), "#",
|
30
|
+
class: [
|
31
|
+
"remove_file_link",
|
32
|
+
file_editor.attachment ? nil : "hidden"
|
33
|
+
],
|
34
|
+
data: {
|
35
|
+
form_field_id: file_editor.form_field_id(:attachment_id)
|
36
|
+
} %>
|
37
|
+
<div class="file_tools">
|
38
|
+
<%= dialog_link %>
|
39
|
+
<%= link_to_dialog render_icon(:edit),
|
40
|
+
alchemy.edit_admin_ingredient_path(file_editor),
|
41
|
+
{
|
42
|
+
title: Alchemy.t(:edit_file_properties),
|
43
|
+
size: "400x215"
|
44
|
+
},
|
45
|
+
title: Alchemy.t(:edit_file_properties) %>
|
46
|
+
</div>
|
47
|
+
<%= f.hidden_field :attachment_id, value: file_editor.attachment&.id %>
|
48
|
+
</div>
|
49
|
+
<% end %>
|
50
|
+
<% end %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<%- if attachment = file_view.attachment -%>
|
2
|
+
<%- html_options = local_assigns.fetch(:html_options, {}) -%>
|
3
|
+
<%= link_to(
|
4
|
+
file_view.link_text.presence ||
|
5
|
+
file_view.settings_value(:link_text, local_assigns.fetch(:options, {})) ||
|
6
|
+
attachment.name,
|
7
|
+
attachment.url(
|
8
|
+
download: true,
|
9
|
+
name: attachment.slug,
|
10
|
+
format: attachment.suffix
|
11
|
+
),
|
12
|
+
{
|
13
|
+
class: file_view.css_class.presence,
|
14
|
+
title: file_view.title.presence
|
15
|
+
}.merge(html_options)
|
16
|
+
) -%>
|
17
|
+
<%- end -%>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: headline_editor.css_classes,
|
3
|
+
data: headline_editor.data_attributes do %>
|
4
|
+
<%= element_form.fields_for(:ingredients, headline_editor.ingredient) do |f| %>
|
5
|
+
<%= ingredient_label(headline_editor) %>
|
6
|
+
<%= f.text_field :value %>
|
7
|
+
|
8
|
+
<div class="input-row">
|
9
|
+
<% if headline_editor.level_options.length > 1 %>
|
10
|
+
<div class="input-column">
|
11
|
+
<%= f.label :level %>
|
12
|
+
<%= f.select :level,
|
13
|
+
options_for_select(headline_editor.level_options, headline_editor.level),
|
14
|
+
{},
|
15
|
+
{ class: "alchemy_selectbox full_width" } %>
|
16
|
+
</div>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
<% if headline_editor.size_options.length > 1 %>
|
20
|
+
<div class="input-column">
|
21
|
+
<%= f.label :size %>
|
22
|
+
<%= f.select :size,
|
23
|
+
options_for_select(headline_editor.size_options, headline_editor.size),
|
24
|
+
{},
|
25
|
+
{ class: "alchemy_selectbox full_width" } %>
|
26
|
+
</div>
|
27
|
+
<% end %>
|
28
|
+
</div>
|
29
|
+
<% end %>
|
30
|
+
<% end %>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: html_editor.css_classes,
|
3
|
+
data: html_editor.data_attributes do %>
|
4
|
+
<%= element_form.fields_for(:ingredients, html_editor.ingredient) do |f| %>
|
5
|
+
<%= ingredient_label(html_editor) %>
|
6
|
+
<%= f.text_area :value %>
|
7
|
+
<% end %>
|
8
|
+
<% end %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= raw html_view.value -%>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: link_editor.css_classes,
|
3
|
+
data: link_editor.data_attributes do %>
|
4
|
+
<%= element_form.fields_for(:ingredients, link_editor.ingredient) do |f| %>
|
5
|
+
<%= ingredient_label(link_editor) %>
|
6
|
+
<%= f.text_field :value,
|
7
|
+
class: "thin_border text_with_icon disabled",
|
8
|
+
name: nil,
|
9
|
+
id: nil,
|
10
|
+
disabled: true
|
11
|
+
%>
|
12
|
+
<%= f.hidden_field :value, "data-link-value": true %>
|
13
|
+
<%= f.hidden_field :link_title, "data-link-title": true %>
|
14
|
+
<%= f.hidden_field :link_class_name, "data-link-class": true %>
|
15
|
+
<%= f.hidden_field :link_target, "data-link-target": true %>
|
16
|
+
<% end %>
|
17
|
+
<%= render "alchemy/ingredients/shared/link_tools", ingredient_editor: link_editor %>
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
<script>
|
21
|
+
$("#<%= link_editor.form_field_id %>").on("change", function() {
|
22
|
+
$("[data-ingredient-id='<%= link_editor.id %>'] input.text_with_icon").val($(this).val());
|
23
|
+
});
|
24
|
+
</script>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<%- if link_view.value.present? -%>
|
2
|
+
<%- html_options = {
|
3
|
+
target: link_view.link_target == "blank" ? "_blank" : nil
|
4
|
+
}.merge(local_assigns.fetch(:html_options, {})) -%>
|
5
|
+
<%= link_to(link_view.value, html_options) do -%>
|
6
|
+
<%= link_view.settings_value(:text, local_assigns.fetch(:options, {})) ||
|
7
|
+
link_view.value -%>
|
8
|
+
<%- end -%>
|
9
|
+
<%- end -%>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: node_editor.css_classes,
|
3
|
+
data: node_editor.data_attributes do %>
|
4
|
+
<%= element_form.fields_for(:ingredients, node_editor.ingredient) do |f| %>
|
5
|
+
<%= ingredient_label(node_editor, :node_id) %>
|
6
|
+
<%= f.text_field :node_id,
|
7
|
+
value: node_editor.node&.id,
|
8
|
+
class: 'alchemy_selectbox full_width' %>
|
9
|
+
<% end %>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<script>
|
13
|
+
<% query_params = node_editor.settings.fetch(:query_params, {}).merge({
|
14
|
+
include: :ancestors
|
15
|
+
}) %>
|
16
|
+
$('#<%= node_editor.form_field_id(:node_id) %>').alchemyNodeSelect({
|
17
|
+
placeholder: "<%= Alchemy.t(:search_node) %>",
|
18
|
+
url: "<%= alchemy.api_nodes_path %>",
|
19
|
+
query_params: <%== query_params.to_json %>,
|
20
|
+
<% if node_editor.node %>
|
21
|
+
<% serialized_node = ActiveModelSerializers::SerializableResource.new(node_editor.node, include: :ancestors) %>
|
22
|
+
initialSelection: <%== serialized_node.to_json %>
|
23
|
+
<% end %>
|
24
|
+
})
|
25
|
+
</script>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= render node_view.node if node_view.node %>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: page_editor.css_classes,
|
3
|
+
data: page_editor.data_attributes do %>
|
4
|
+
<%= element_form.fields_for(:ingredients, page_editor.ingredient) do |f| %>
|
5
|
+
<%= ingredient_label(page_editor, :page_id) %>
|
6
|
+
<%= f.text_field :page_id,
|
7
|
+
value: page_editor.page&.id,
|
8
|
+
class: 'alchemy_selectbox full_width' %>
|
9
|
+
<% end %>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<script>
|
13
|
+
$('#<%= page_editor.form_field_id(:page_id) %>').alchemyPageSelect({
|
14
|
+
placeholder: "<%= Alchemy.t(:search_page) %>",
|
15
|
+
url: "<%= alchemy.api_pages_path %>",
|
16
|
+
query_params: <%== page_editor.settings[:query_params].to_json %>,
|
17
|
+
<% if page_editor.page %>
|
18
|
+
initialSelection: {
|
19
|
+
id: <%= page_editor.page.id %>,
|
20
|
+
text: "<%= page_editor.page.name %>"
|
21
|
+
}
|
22
|
+
<% end %>
|
23
|
+
})
|
24
|
+
</script>
|
@@ -0,0 +1,59 @@
|
|
1
|
+
<% options = local_assigns.fetch(:options, {}) %>
|
2
|
+
|
3
|
+
<%= content_tag :div,
|
4
|
+
class: picture_editor.css_classes,
|
5
|
+
data: picture_editor.data_attributes do %>
|
6
|
+
<%= element_form.fields_for(:ingredients, picture_editor.ingredient) do |f| %>
|
7
|
+
<%= ingredient_label(picture_editor, :picture_id) %>
|
8
|
+
<%= content_tag :div,
|
9
|
+
data: {
|
10
|
+
target_size: picture_editor.settings[:size] || [
|
11
|
+
picture_editor.image_file_width.to_i,
|
12
|
+
picture_editor.image_file_height.to_i
|
13
|
+
].join("x"),
|
14
|
+
image_cropper: picture_editor.thumbnail_url_options[:crop],
|
15
|
+
},
|
16
|
+
class: "picture_thumbnail" do %>
|
17
|
+
<a class="picture_tool delete">
|
18
|
+
<%= render_icon(:times) %>
|
19
|
+
</a>
|
20
|
+
<div class="picture_image">
|
21
|
+
<div class="thumbnail_background">
|
22
|
+
<%- if picture_editor.picture -%>
|
23
|
+
<%= image_tag(
|
24
|
+
picture_editor.thumbnail_url,
|
25
|
+
alt: picture_editor.picture.name,
|
26
|
+
class: "img_paddingtop",
|
27
|
+
title: Alchemy.t(:image_name, name: picture_editor.picture.name),
|
28
|
+
) %>
|
29
|
+
<% else %>
|
30
|
+
<%= render_icon(:image, style: "regular") %>
|
31
|
+
<% end %>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
<%- if picture_editor.essence.css_class.present? -%>
|
35
|
+
<div class="essence_picture_css_class">
|
36
|
+
<%= Alchemy.t("alchemy.essence_pictures.css_classes.#{picture_editor.essence.css_class}",
|
37
|
+
default: picture_editor.essence.css_class.camelcase) %>
|
38
|
+
</div>
|
39
|
+
<%- end -%>
|
40
|
+
<div class="edit_images_bottom">
|
41
|
+
<%= render "alchemy/ingredients/shared/picture_tools", {
|
42
|
+
picture_editor: picture_editor
|
43
|
+
} %>
|
44
|
+
</div>
|
45
|
+
<% end %>
|
46
|
+
<%= f.hidden_field :picture_id, value: picture_editor.picture&.id,
|
47
|
+
data: {
|
48
|
+
picture_id: true,
|
49
|
+
image_file_width: picture_editor.image_file_width,
|
50
|
+
image_file_height: picture_editor.image_file_height
|
51
|
+
} %>
|
52
|
+
<%= f.hidden_field :link, data: { link_value: true } %>
|
53
|
+
<%= f.hidden_field :link_title, data: { link_title: true } %>
|
54
|
+
<%= f.hidden_field :link_class_name, data: { link_class: true } %>
|
55
|
+
<%= f.hidden_field :link_target, data: { link_target: true } %>
|
56
|
+
<%= f.hidden_field :crop_from, data: { crop_from: true } %>
|
57
|
+
<%= f.hidden_field :crop_size, data: { crop_size: true } %>
|
58
|
+
<% end %>
|
59
|
+
<% end %>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: richtext_editor.css_classes,
|
3
|
+
data: richtext_editor.data_attributes do %>
|
4
|
+
<%= element_form.fields_for(:ingredients, richtext_editor.ingredient) do |f| %>
|
5
|
+
<%= ingredient_label(richtext_editor) %>
|
6
|
+
<div class="tinymce_container">
|
7
|
+
<%= f.text_area :value,
|
8
|
+
class: richtext_editor.tinymce_class_name,
|
9
|
+
id: "tinymce_#{richtext_editor.id}" %>
|
10
|
+
</div>
|
11
|
+
<% end %>
|
12
|
+
<% end %>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<% select_values = select_editor.settings[:select_values] %>
|
2
|
+
|
3
|
+
<%= content_tag :div,
|
4
|
+
class: [
|
5
|
+
select_editor.css_classes,
|
6
|
+
select_editor.settings[:display_inline] ? 'display_inline' : ''
|
7
|
+
], data: select_editor.data_attributes do %>
|
8
|
+
<%= element_form.fields_for(:ingredients, select_editor.ingredient) do |f| %>
|
9
|
+
<%= ingredient_label(select_editor) %>
|
10
|
+
|
11
|
+
<% if select_values.nil? %>
|
12
|
+
<%= warning(':select_values is nil',
|
13
|
+
"<strong>No select values given.</strong>
|
14
|
+
<br>Please provide <code>select_values</code> on the
|
15
|
+
content definition <code>settings</code> in
|
16
|
+
<code>elements.yml</code>.") %>
|
17
|
+
<% else %>
|
18
|
+
<%
|
19
|
+
if select_values.is_a?(Hash)
|
20
|
+
options_tags = grouped_options_for_select(select_values, select_editor.value)
|
21
|
+
else
|
22
|
+
options_tags = options_for_select(select_values, select_editor.value)
|
23
|
+
end %>
|
24
|
+
<%= f.select :value, options_tags, {}, {
|
25
|
+
class: ["alchemy_selectbox", "ingredient-editor-select"]
|
26
|
+
} %>
|
27
|
+
<% end %>
|
28
|
+
<% end %>
|
29
|
+
<% end %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= select_view.value %>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<%= content_tag :div,
|
2
|
+
class: [
|
3
|
+
text_editor.css_classes,
|
4
|
+
text_editor.settings[:display_inline] ? "display_inline" : ""
|
5
|
+
], data: text_editor.data_attributes do %>
|
6
|
+
<%= element_form.fields_for(:ingredients, text_editor.ingredient) do |f| %>
|
7
|
+
<%= ingredient_label(text_editor) %>
|
8
|
+
<%= f.text_field :value,
|
9
|
+
class: text_editor.settings[:linkable] ? "text_with_icon" : "",
|
10
|
+
type: text_editor.settings[:input_type] || "text" %>
|
11
|
+
<% if text_editor.settings[:linkable] %>
|
12
|
+
<%= f.hidden_field :link, "data-link-value": true %>
|
13
|
+
<%= f.hidden_field :link_title, "data-link-title": true %>
|
14
|
+
<%= f.hidden_field :link_class_name, "data-link-class": true%>
|
15
|
+
<%= f.hidden_field :link_target, "data-link-target": true %>
|
16
|
+
<%= render "alchemy/ingredients/shared/link_tools", ingredient_editor: text_editor %>
|
17
|
+
<% end %>
|
18
|
+
<% end %>
|
19
|
+
<% end %>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<%- options = local_assigns.fetch(:options, {}) -%>
|
2
|
+
<%- html_options = local_assigns.fetch(:html_options, {}) -%>
|
3
|
+
<%- if text_view.link.blank? ||
|
4
|
+
text_view.settings_value(:disable_link, options) -%>
|
5
|
+
<%= text_view.value -%>
|
6
|
+
<%- else -%>
|
7
|
+
<%= link_to(
|
8
|
+
text_view.value,
|
9
|
+
url_for(text_view.link),
|
10
|
+
{
|
11
|
+
title: text_view.link_title,
|
12
|
+
target: (text_view.link_target == "blank" ? "_blank" : nil),
|
13
|
+
'data-link-target' => text_view.link_target
|
14
|
+
}.merge(html_options)
|
15
|
+
) -%>
|
16
|
+
<%- end -%>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<%- if video_view.attachment -%>
|
2
|
+
<%= content_tag :video,
|
3
|
+
controls: video_view.controls,
|
4
|
+
autoplay: video_view.autoplay,
|
5
|
+
loop: video_view.loop,
|
6
|
+
muted: video_view.muted,
|
7
|
+
preload: video_view.preload.presence,
|
8
|
+
width: video_view.width.presence,
|
9
|
+
height: video_view.height.presence do %>
|
10
|
+
<%= tag :source,
|
11
|
+
src: alchemy.show_attachment_path(
|
12
|
+
video_view.attachment,
|
13
|
+
format: video_view.attachment.suffix
|
14
|
+
),
|
15
|
+
type: video_view.attachment.file_mime_type %>
|
16
|
+
<% end %>
|
17
|
+
<%- end -%>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<span class="linkable_essence_tools">
|
2
|
+
<%= link_to(
|
3
|
+
render_icon(:link),
|
4
|
+
'#',
|
5
|
+
onclick: 'new Alchemy.LinkDialog(this).open(); return false;',
|
6
|
+
class: "icon_button#{ingredient_editor.linked? ? ' linked' : ''} link-essence",
|
7
|
+
"data-parent-selector": "[data-ingredient-id='#{ingredient_editor.id}']",
|
8
|
+
title: Alchemy.t(:place_link),
|
9
|
+
id: "edit_link_#{ingredient_editor.id}"
|
10
|
+
) %>
|
11
|
+
<%= link_to(
|
12
|
+
render_icon(:unlink),
|
13
|
+
'#',
|
14
|
+
onclick: "return Alchemy.LinkDialog.removeLink(this, '[data-ingredient-id=\"#{ingredient_editor.id}\"]')",
|
15
|
+
class: "icon_button unlink-essence #{ingredient_editor.linked? ? 'linked' : 'disabled'}",
|
16
|
+
tabindex: ingredient_editor.linked? ? nil : '-1',
|
17
|
+
'data-ingredient-id' => ingredient_editor.id,
|
18
|
+
title: Alchemy.t(:unlink)
|
19
|
+
) %>
|
20
|
+
</span>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<% linkable = picture_editor.settings[:linkable] != false %>
|
2
|
+
<% croppable = picture_editor.allow_image_cropping? %>
|
3
|
+
|
4
|
+
<%= link_to_dialog render_icon(:crop),
|
5
|
+
alchemy.crop_admin_ingredient_path(picture_editor.ingredient, {
|
6
|
+
crop_from_form_field_id: picture_editor.form_field_id(:crop_from),
|
7
|
+
crop_size_form_field_id: picture_editor.form_field_id(:crop_size),
|
8
|
+
picture_id: picture_editor.picture&.id
|
9
|
+
}), {
|
10
|
+
size: "1080x615",
|
11
|
+
title: Alchemy.t("Edit Picturemask"),
|
12
|
+
image_loader: false,
|
13
|
+
padding: false
|
14
|
+
}, {
|
15
|
+
title: Alchemy.t("Edit Picturemask"),
|
16
|
+
class: croppable ? "crop_link" : "disabled crop_link",
|
17
|
+
tabindex: croppable ? nil : "-1",
|
18
|
+
onclick: "return false"
|
19
|
+
} %>
|
20
|
+
|
21
|
+
<%= link_to_dialog render_icon("file-image", style: "regular"),
|
22
|
+
alchemy.admin_pictures_path(
|
23
|
+
form_field_id: picture_editor.form_field_id(:picture_id)
|
24
|
+
),
|
25
|
+
{
|
26
|
+
title: (picture_editor.picture ? Alchemy.t(:swap_image) : Alchemy.t(:insert_image)),
|
27
|
+
size: "790x590",
|
28
|
+
padding: false
|
29
|
+
},
|
30
|
+
title: (picture_editor.picture ? Alchemy.t(:swap_image) : Alchemy.t(:insert_image)) %>
|
31
|
+
|
32
|
+
<%= link_to_if linkable, render_icon(:link), "", {
|
33
|
+
onclick: "new Alchemy.LinkDialog(this).open(); return false;",
|
34
|
+
class: picture_editor.linked? ? "linked" : nil,
|
35
|
+
title: Alchemy.t(:link_image),
|
36
|
+
"data-parent-selector": "[data-ingredient-id='#{picture_editor.id}']",
|
37
|
+
id: "edit_link_#{picture_editor.id}"
|
38
|
+
} do %>
|
39
|
+
<span class="disabled" tabindex="-1"><%= render_icon(:link) %></span>
|
40
|
+
<% end %>
|
41
|
+
|
42
|
+
<%= link_to_if linkable, render_icon(:unlink), "", {
|
43
|
+
onclick: "return Alchemy.LinkDialog.removeLink(this, '[data-ingredient-id=\"#{picture_editor.id}\"]')",
|
44
|
+
class: picture_editor.linked? ? "linked" : "disabled",
|
45
|
+
tabindex: picture_editor.linked? ? nil : "-1",
|
46
|
+
title: Alchemy.t(:unlink)
|
47
|
+
} do %>
|
48
|
+
<span class="disabled" tabindex="-1"><%= render_icon(:unlink) %></span>
|
49
|
+
<% end %>
|
50
|
+
|
51
|
+
<%= link_to_dialog render_icon(:edit),
|
52
|
+
alchemy.edit_admin_ingredient_path(id: picture_editor.id),
|
53
|
+
{
|
54
|
+
title: Alchemy.t(:edit_image_properties),
|
55
|
+
size: "380x255"
|
56
|
+
},
|
57
|
+
title: Alchemy.t(:edit_image_properties) %>
|