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.
Files changed (289) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +6 -14
  3. data/.gitignore +0 -1
  4. data/.hound.yml +1 -1
  5. data/.rubocop.yml +46 -4
  6. data/CHANGELOG.md +114 -5
  7. data/Gemfile +8 -1
  8. data/README.md +5 -2
  9. data/alchemy_cms.gemspec +78 -65
  10. data/app/assets/javascripts/alchemy/admin.js +0 -2
  11. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
  12. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
  13. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -1
  14. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
  15. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
  16. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
  17. data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
  18. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
  19. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
  20. data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
  21. data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
  22. data/app/assets/stylesheets/alchemy/_extends.scss +15 -2
  23. data/app/assets/stylesheets/alchemy/admin.scss +1 -1
  24. data/app/assets/stylesheets/alchemy/archive.scss +20 -5
  25. data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
  26. data/app/assets/stylesheets/alchemy/elements.scss +73 -61
  27. data/app/assets/stylesheets/alchemy/images.scss +8 -0
  28. data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
  29. data/app/assets/stylesheets/alchemy/page-select.scss +1 -0
  30. data/app/controllers/alchemy/admin/attachments_controller.rb +8 -4
  31. data/app/controllers/alchemy/admin/base_controller.rb +5 -7
  32. data/app/controllers/alchemy/admin/elements_controller.rb +59 -34
  33. data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
  34. data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
  35. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
  36. data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
  37. data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
  38. data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
  39. data/app/controllers/alchemy/admin/pages_controller.rb +7 -22
  40. data/app/controllers/alchemy/admin/pictures_controller.rb +56 -17
  41. data/app/controllers/alchemy/admin/resources_controller.rb +84 -10
  42. data/app/controllers/alchemy/api/elements_controller.rb +13 -4
  43. data/app/controllers/alchemy/api/pages_controller.rb +4 -3
  44. data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
  45. data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
  46. data/app/decorators/alchemy/element_editor.rb +26 -1
  47. data/app/decorators/alchemy/ingredient_editor.rb +158 -0
  48. data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
  49. data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
  50. data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
  51. data/app/helpers/alchemy/elements_block_helper.rb +23 -6
  52. data/app/helpers/alchemy/elements_helper.rb +12 -5
  53. data/app/helpers/alchemy/pages_helper.rb +3 -11
  54. data/app/jobs/alchemy/base_job.rb +11 -0
  55. data/app/jobs/alchemy/publish_page_job.rb +11 -0
  56. data/app/models/alchemy/attachment.rb +24 -7
  57. data/app/models/alchemy/content.rb +1 -6
  58. data/app/models/alchemy/content/factory.rb +23 -27
  59. data/app/models/alchemy/element.rb +39 -72
  60. data/app/models/alchemy/element/definitions.rb +29 -27
  61. data/app/models/alchemy/element/element_contents.rb +131 -122
  62. data/app/models/alchemy/element/element_essences.rb +111 -98
  63. data/app/models/alchemy/element/element_ingredients.rb +184 -0
  64. data/app/models/alchemy/element/presenters.rb +104 -85
  65. data/app/models/alchemy/elements_repository.rb +126 -0
  66. data/app/models/alchemy/essence_audio.rb +12 -0
  67. data/app/models/alchemy/essence_headline.rb +40 -0
  68. data/app/models/alchemy/essence_picture.rb +4 -116
  69. data/app/models/alchemy/essence_richtext.rb +12 -0
  70. data/app/models/alchemy/essence_video.rb +12 -0
  71. data/app/models/alchemy/image_cropper_settings.rb +87 -0
  72. data/app/models/alchemy/ingredient.rb +183 -0
  73. data/app/models/alchemy/ingredient_validator.rb +97 -0
  74. data/app/models/alchemy/ingredients/audio.rb +29 -0
  75. data/app/models/alchemy/ingredients/boolean.rb +21 -0
  76. data/app/models/alchemy/ingredients/datetime.rb +20 -0
  77. data/app/models/alchemy/ingredients/file.rb +30 -0
  78. data/app/models/alchemy/ingredients/headline.rb +42 -0
  79. data/app/models/alchemy/ingredients/html.rb +19 -0
  80. data/app/models/alchemy/ingredients/link.rb +16 -0
  81. data/app/models/alchemy/ingredients/node.rb +23 -0
  82. data/app/models/alchemy/ingredients/page.rb +23 -0
  83. data/app/models/alchemy/ingredients/picture.rb +41 -0
  84. data/app/models/alchemy/ingredients/richtext.rb +57 -0
  85. data/app/models/alchemy/ingredients/select.rb +10 -0
  86. data/app/models/alchemy/ingredients/text.rb +17 -0
  87. data/app/models/alchemy/ingredients/video.rb +33 -0
  88. data/app/models/alchemy/language.rb +0 -11
  89. data/app/models/alchemy/page.rb +76 -33
  90. data/app/models/alchemy/page/fixed_attributes.rb +53 -51
  91. data/app/models/alchemy/page/page_elements.rb +186 -205
  92. data/app/models/alchemy/page/page_naming.rb +66 -64
  93. data/app/models/alchemy/page/page_natures.rb +139 -142
  94. data/app/models/alchemy/page/page_scopes.rb +117 -102
  95. data/app/models/alchemy/page/publisher.rb +50 -0
  96. data/app/models/alchemy/page/url_path.rb +1 -1
  97. data/app/models/alchemy/page_version.rb +58 -0
  98. data/app/models/alchemy/picture.rb +18 -40
  99. data/app/models/alchemy/picture/calculations.rb +2 -8
  100. data/app/models/alchemy/picture/preprocessor.rb +2 -0
  101. data/app/models/alchemy/picture/transformations.rb +24 -96
  102. data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
  103. data/app/models/concerns/alchemy/touch_elements.rb +2 -2
  104. data/app/presenters/alchemy/picture_view.rb +88 -0
  105. data/app/serializers/alchemy/element_serializer.rb +5 -0
  106. data/app/serializers/alchemy/page_tree_serializer.rb +3 -2
  107. data/app/services/alchemy/delete_elements.rb +44 -0
  108. data/app/services/alchemy/duplicate_element.rb +56 -0
  109. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +2 -3
  110. data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
  111. data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
  112. data/app/views/alchemy/admin/attachments/index.html.erb +2 -3
  113. data/app/views/alchemy/admin/crop.html.erb +36 -0
  114. data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
  115. data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
  116. data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
  117. data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +1 -1
  118. data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
  119. data/app/views/alchemy/admin/elements/create.js.erb +1 -1
  120. data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +2 -6
  121. data/app/views/alchemy/admin/elements/fold.js.erb +2 -2
  122. data/app/views/alchemy/admin/elements/new.html.erb +3 -3
  123. data/app/views/alchemy/admin/elements/order.js.erb +0 -17
  124. data/app/views/alchemy/admin/elements/update.js.erb +3 -2
  125. data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
  126. data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
  127. data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
  128. data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
  129. data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
  130. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
  131. data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
  132. data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
  133. data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
  134. data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
  135. data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
  136. data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
  137. data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
  138. data/app/views/alchemy/admin/pages/_form.html.erb +0 -6
  139. data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
  140. data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
  141. data/app/views/alchemy/admin/pages/_toolbar.html.erb +1 -1
  142. data/app/views/alchemy/admin/pages/edit.html.erb +36 -24
  143. data/app/views/alchemy/admin/pages/index.html.erb +2 -9
  144. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
  145. data/app/views/alchemy/admin/partials/_routes.html.erb +7 -11
  146. data/app/views/alchemy/admin/partials/_search_form.html.erb +9 -0
  147. data/app/views/alchemy/admin/pictures/_archive.html.erb +1 -1
  148. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
  149. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +5 -7
  150. data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
  151. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
  152. data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
  153. data/app/views/alchemy/admin/pictures/index.html.erb +8 -3
  154. data/app/views/alchemy/admin/resources/_filter.html.erb +12 -0
  155. data/app/views/alchemy/admin/resources/_filter_bar.html.erb +14 -17
  156. data/app/views/alchemy/admin/resources/_form.html.erb +3 -0
  157. data/app/views/alchemy/admin/resources/_table_header.html.erb +15 -0
  158. data/app/views/alchemy/admin/resources/index.html.erb +3 -11
  159. data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
  160. data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
  161. data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
  162. data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
  163. data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
  164. data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
  165. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
  166. data/app/views/alchemy/essences/_essence_picture_view.html.erb +3 -3
  167. data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
  168. data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
  169. data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
  170. data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
  171. data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
  172. data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
  173. data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
  174. data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
  175. data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
  176. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
  177. data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
  178. data/app/views/alchemy/ingredients/_file_editor.html.erb +52 -0
  179. data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
  180. data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
  181. data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
  182. data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
  183. data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
  184. data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
  185. data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
  186. data/app/views/alchemy/ingredients/_node_editor.html.erb +26 -0
  187. data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
  188. data/app/views/alchemy/ingredients/_page_editor.html.erb +25 -0
  189. data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
  190. data/app/views/alchemy/ingredients/_picture_editor.html.erb +60 -0
  191. data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
  192. data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
  193. data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
  194. data/app/views/alchemy/ingredients/_select_editor.html.erb +30 -0
  195. data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
  196. data/app/views/alchemy/ingredients/_text_editor.html.erb +20 -0
  197. data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
  198. data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
  199. data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
  200. data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
  201. data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
  202. data/config/brakeman.ignore +66 -159
  203. data/config/initializers/dragonfly.rb +10 -0
  204. data/config/locales/alchemy.en.yml +108 -64
  205. data/config/routes.rb +17 -22
  206. data/db/migrate/20201207131309_create_page_versions.rb +19 -0
  207. data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
  208. data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
  209. data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
  210. data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
  211. data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
  212. data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
  213. data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
  214. data/lib/alchemy/admin/preview_url.rb +2 -0
  215. data/lib/alchemy/deprecation.rb +1 -1
  216. data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
  217. data/lib/alchemy/dragonfly/processors/crop_resize.rb +35 -0
  218. data/lib/alchemy/elements_finder.rb +14 -60
  219. data/lib/alchemy/essence.rb +1 -2
  220. data/lib/alchemy/forms/builder.rb +21 -1
  221. data/lib/alchemy/hints.rb +8 -4
  222. data/lib/alchemy/page_layout.rb +0 -13
  223. data/lib/alchemy/permissions.rb +30 -29
  224. data/lib/alchemy/resource.rb +13 -3
  225. data/lib/alchemy/resource_filter.rb +40 -0
  226. data/lib/alchemy/resources_helper.rb +1 -16
  227. data/lib/alchemy/tasks/tidy.rb +29 -0
  228. data/lib/alchemy/test_support.rb +2 -11
  229. data/lib/alchemy/test_support/essence_shared_examples.rb +0 -1
  230. data/lib/alchemy/test_support/factories/element_factory.rb +8 -8
  231. data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
  232. data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
  233. data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
  234. data/lib/alchemy/test_support/factories/page_factory.rb +20 -1
  235. data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
  236. data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
  237. data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
  238. data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
  239. data/lib/alchemy/test_support/shared_ingredient_examples.rb +75 -0
  240. data/lib/alchemy/tinymce.rb +17 -0
  241. data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
  242. data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
  243. data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +62 -0
  244. data/lib/alchemy/version.rb +1 -1
  245. data/lib/alchemy_cms.rb +1 -0
  246. data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
  247. data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
  248. data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
  249. data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
  250. data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
  251. data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
  252. data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
  253. data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
  254. data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
  255. data/lib/generators/alchemy/menus/templates/node.html.erb +1 -1
  256. data/lib/generators/alchemy/menus/templates/node.html.haml +1 -1
  257. data/lib/generators/alchemy/menus/templates/node.html.slim +1 -1
  258. data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
  259. data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
  260. data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
  261. data/lib/tasks/alchemy/thumbnails.rake +4 -2
  262. data/lib/tasks/alchemy/tidy.rake +12 -0
  263. data/lib/tasks/alchemy/upgrade.rake +26 -0
  264. data/package.json +3 -2
  265. data/package/admin.js +11 -1
  266. data/package/src/__tests__/i18n.spec.js +23 -0
  267. data/package/src/file_editors.js +28 -0
  268. data/package/src/i18n.js +1 -3
  269. data/package/src/image_cropper.js +103 -0
  270. data/package/src/image_loader.js +58 -0
  271. data/package/src/node_tree.js +5 -5
  272. data/package/src/picture_editors.js +169 -0
  273. data/package/src/utils/__tests__/ajax.spec.js +20 -12
  274. data/package/src/utils/ajax.js +8 -3
  275. data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
  276. data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
  277. metadata +292 -55
  278. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
  279. data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
  280. data/app/assets/stylesheets/alchemy/trash.scss +0 -8
  281. data/app/controllers/alchemy/admin/trash_controller.rb +0 -44
  282. data/app/views/alchemy/admin/attachments/_filter_bar.html.erb +0 -29
  283. data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
  284. data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
  285. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
  286. data/app/views/alchemy/admin/pictures/_filter_bar.html.erb +0 -30
  287. data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
  288. data/app/views/alchemy/admin/trash/index.html.erb +0 -31
  289. data/lib/alchemy/test_support/factories.rb +0 -16
@@ -1,22 +1,27 @@
1
+ <% content = essence_picture_editor.essence.content %>
1
2
  <% linkable = content.settings[:linkable] != false %>
3
+ <% croppable = content.essence && content.essence.allow_image_cropping? %>
2
4
 
3
- <% if content.essence && content.essence.allow_image_cropping? %>
4
- <%= link_to_dialog render_icon(:crop),
5
- alchemy.crop_admin_essence_picture_path(content.essence), {
6
- size: "1080x615",
7
- title: Alchemy.t('Edit Picturemask'),
8
- image_loader: false,
9
- padding: false
10
- }, {title: Alchemy.t('Edit Picturemask')} %>
11
- <%- else -%>
12
- <a href="#" class="disabled" tabindex="-1"><%= render_icon(:crop) %></a>
13
- <%- end -%>
5
+ <%= link_to_dialog render_icon(:crop),
6
+ alchemy.crop_admin_essence_picture_path(content.essence, {
7
+ crop_from_form_field_id: essence_picture_editor.form_field_id(:crop_from),
8
+ crop_size_form_field_id: essence_picture_editor.form_field_id(:crop_size),
9
+ picture_id: content.essence.picture_id
10
+ }), {
11
+ size: "1080x615",
12
+ title: Alchemy.t('Edit Picturemask'),
13
+ image_loader: false,
14
+ padding: false
15
+ }, {
16
+ title: Alchemy.t('Edit Picturemask'),
17
+ class: croppable ? "crop_link" : "disabled crop_link",
18
+ tabindex: croppable ? nil : "-1",
19
+ onclick: "return false"
20
+ } %>
14
21
 
15
22
  <%= link_to_dialog render_icon('file-image', style: 'regular'),
16
23
  alchemy.admin_pictures_path(
17
- element_id: content.element,
18
- content_id: content.id,
19
- swap: true
24
+ form_field_id: essence_picture_editor.form_field_id(:picture_id)
20
25
  ),
21
26
  {
22
27
  title: (content.ingredient ? Alchemy.t(:swap_image) : Alchemy.t(:insert_image)),
@@ -29,14 +34,14 @@
29
34
  onclick: 'new Alchemy.LinkDialog(this).open(); return false;',
30
35
  class: content.linked? ? 'linked' : nil,
31
36
  title: Alchemy.t(:link_image),
32
- 'data-content-id' => content.id,
37
+ "data-parent-selector": "##{content.dom_id}",
33
38
  id: "edit_link_#{content.id}"
34
39
  } do %>
35
40
  <span class="disabled" tabindex="-1"><%= render_icon(:link) %></span>
36
41
  <% end %>
37
42
 
38
43
  <%= link_to_if linkable, render_icon(:unlink), '', {
39
- onclick: "return Alchemy.LinkDialog.removeLink(this, #{content.id})",
44
+ onclick: "return Alchemy.LinkDialog.removeLink(this, '##{content.dom_id}')",
40
45
  class: content.linked? ? 'linked' : 'disabled',
41
46
  tabindex: content.linked? ? nil : '-1',
42
47
  title: Alchemy.t(:unlink)
@@ -4,14 +4,14 @@
4
4
  '#',
5
5
  onclick: 'new Alchemy.LinkDialog(this).open(); return false;',
6
6
  class: "icon_button#{content.linked? ? ' linked' : ''} link-essence",
7
- 'data-content-id' => content.id,
7
+ "data-parent-selector": "##{content.dom_id}",
8
8
  title: Alchemy.t(:place_link),
9
9
  id: "edit_link_#{content.id}"
10
10
  ) %>
11
11
  <%= link_to(
12
12
  render_icon(:unlink),
13
13
  '#',
14
- onclick: "return Alchemy.LinkDialog.removeLink(this, #{content.id})",
14
+ onclick: "return Alchemy.LinkDialog.removeLink(this, '##{content.dom_id}')",
15
15
  class: "icon_button unlink-essence #{content.linked? ? 'linked' : 'disabled'}",
16
16
  tabindex: content.linked? ? nil : '-1',
17
17
  'data-content-id' => content.id,
@@ -0,0 +1,5 @@
1
+ <%= render(
2
+ "alchemy/ingredients/file_editor",
3
+ element_form: element_form,
4
+ file_editor: audio_editor
5
+ ) %>
@@ -0,0 +1,14 @@
1
+ <%- if audio_view.attachment -%>
2
+ <%= content_tag :audio,
3
+ controls: audio_view.controls,
4
+ autoplay: audio_view.autoplay,
5
+ loop: audio_view.loop,
6
+ muted: audio_view.muted do %>
7
+ <%= tag :source,
8
+ src: alchemy.show_attachment_path(
9
+ audio_view.attachment,
10
+ format: audio_view.attachment.suffix
11
+ ),
12
+ type: audio_view.attachment.file_mime_type %>
13
+ <% end %>
14
+ <%- end -%>
@@ -0,0 +1,11 @@
1
+ <%= content_tag :div,
2
+ class: boolean_editor.css_classes,
3
+ data: boolean_editor.data_attributes do %>
4
+ <%= element_form.fields_for(:ingredients, boolean_editor.ingredient) do |f| %>
5
+ <%= f.label :value, style: "display: inline-block" do %>
6
+ <%= f.check_box :value, id: nil %>
7
+ <%= render_ingredient_role(boolean_editor) %>
8
+ <% end %>
9
+ <%= render_hint_for(boolean_editor) %>
10
+ <% end %>
11
+ <% end %>
@@ -0,0 +1 @@
1
+ <%= Alchemy.t(boolean_view.value, scope: "ingredient_values.boolean") unless boolean_view.value.nil? -%>
@@ -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,52 @@
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,
48
+ value: file_editor.attachment&.id,
49
+ id: file_editor.form_field_id(:attachment_id) %>
50
+ </div>
51
+ <% end %>
52
+ <% 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, id: nil %>
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,9 @@
1
+ <%- html_options = local_assigns.fetch(:html_options, {}) -%>
2
+
3
+ <%= content_tag "h#{headline_view.level}",
4
+ headline_view.value,
5
+ class: [
6
+ headline_view.size ? "h#{headline_view.size}" : nil,
7
+ html_options[:class]
8
+ ]
9
+ %>
@@ -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, id: nil %>
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 readonly",
8
+ id: link_editor.form_field_id,
9
+ "data-link-value": true,
10
+ readonly: true,
11
+ tabindex: -1
12
+ %>
13
+ <%= f.hidden_field :link_title, "data-link-title": true, id: nil %>
14
+ <%= f.hidden_field :link_class_name, "data-link-class": true, id: nil %>
15
+ <%= f.hidden_field :link_target, "data-link-target": true, id: nil %>
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,26 @@
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
+ id: node_editor.form_field_id(:node_id),
9
+ class: 'alchemy_selectbox full_width' %>
10
+ <% end %>
11
+ <% end %>
12
+
13
+ <script>
14
+ <% query_params = node_editor.settings.fetch(:query_params, {}).merge({
15
+ include: :ancestors
16
+ }) %>
17
+ $('#<%= node_editor.form_field_id(:node_id) %>').alchemyNodeSelect({
18
+ placeholder: "<%= Alchemy.t(:search_node) %>",
19
+ url: "<%= alchemy.api_nodes_path %>",
20
+ query_params: <%== query_params.to_json %>,
21
+ <% if node_editor.node %>
22
+ <% serialized_node = ActiveModelSerializers::SerializableResource.new(node_editor.node, include: :ancestors) %>
23
+ initialSelection: <%== serialized_node.to_json %>
24
+ <% end %>
25
+ })
26
+ </script>
@@ -0,0 +1 @@
1
+ <%= render node_view.node if node_view.node %>
@@ -0,0 +1,25 @@
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
+ id: page_editor.form_field_id(:page_id),
9
+ class: 'alchemy_selectbox full_width' %>
10
+ <% end %>
11
+ <% end %>
12
+
13
+ <script>
14
+ $('#<%= page_editor.form_field_id(:page_id) %>').alchemyPageSelect({
15
+ placeholder: "<%= Alchemy.t(:search_page) %>",
16
+ url: "<%= alchemy.api_pages_path %>",
17
+ query_params: <%== page_editor.settings[:query_params].to_json %>,
18
+ <% if page_editor.page %>
19
+ initialSelection: {
20
+ id: <%= page_editor.page.id %>,
21
+ text: "<%= page_editor.page.name %>"
22
+ }
23
+ <% end %>
24
+ })
25
+ </script>
@@ -0,0 +1,4 @@
1
+ <% page = page_view.page %>
2
+ <% if page %>
3
+ <%= link_to page.name, alchemy.show_page_path(urlname: page.urlname) %>
4
+ <% end %>
@@ -0,0 +1,60 @@
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
+ id: picture_editor.form_field_id(:picture_id),
48
+ data: {
49
+ picture_id: true,
50
+ image_file_width: picture_editor.image_file_width,
51
+ image_file_height: picture_editor.image_file_height
52
+ } %>
53
+ <%= f.hidden_field :link, data: { link_value: true }, id: nil %>
54
+ <%= f.hidden_field :link_title, data: { link_title: true }, id: nil %>
55
+ <%= f.hidden_field :link_class_name, data: { link_class: true }, id: nil %>
56
+ <%= f.hidden_field :link_target, data: { link_target: true }, id: nil %>
57
+ <%= f.hidden_field :crop_from, data: { crop_from: true }, id: nil %>
58
+ <%= f.hidden_field :crop_size, data: { crop_size: true }, id: nil %>
59
+ <% end %>
60
+ <% end %>
@@ -0,0 +1,5 @@
1
+ <%= Alchemy::PictureView.new(
2
+ picture_view,
3
+ local_assigns[:options],
4
+ local_assigns[:html_options]
5
+ ).render %>