alchemy_cms 5.2.1 → 6.0.0.pre.b4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (302) 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 +121 -8
  7. data/Gemfile +4 -2
  8. data/README.md +19 -4
  9. data/Rakefile +37 -23
  10. data/alchemy_cms.gemspec +78 -65
  11. data/app/assets/javascripts/alchemy/admin.js +0 -2
  12. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
  13. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
  14. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -1
  15. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
  16. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
  17. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
  18. data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
  19. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
  20. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
  21. data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
  22. data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
  23. data/app/assets/stylesheets/alchemy/_extends.scss +15 -2
  24. data/app/assets/stylesheets/alchemy/admin.scss +1 -1
  25. data/app/assets/stylesheets/alchemy/archive.scss +20 -5
  26. data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
  27. data/app/assets/stylesheets/alchemy/elements.scss +73 -61
  28. data/app/assets/stylesheets/alchemy/fonts.scss +0 -0
  29. data/app/assets/stylesheets/alchemy/images.scss +8 -0
  30. data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
  31. data/app/assets/stylesheets/alchemy/page-select.scss +1 -0
  32. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.svg +0 -0
  33. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.ttf +0 -0
  34. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.woff +0 -0
  35. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.svg +0 -0
  36. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.ttf +0 -0
  37. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.woff +0 -0
  38. data/app/assets/stylesheets/tinymce/skins/alchemy/img/anchor.gif +0 -0
  39. data/app/assets/stylesheets/tinymce/skins/alchemy/img/loader.gif +0 -0
  40. data/app/assets/stylesheets/tinymce/skins/alchemy/img/object.gif +0 -0
  41. data/app/assets/stylesheets/tinymce/skins/alchemy/img/trans.gif +0 -0
  42. data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +0 -0
  43. data/app/controllers/alchemy/admin/attachments_controller.rb +8 -4
  44. data/app/controllers/alchemy/admin/base_controller.rb +5 -7
  45. data/app/controllers/alchemy/admin/elements_controller.rb +59 -34
  46. data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
  47. data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
  48. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
  49. data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
  50. data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
  51. data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
  52. data/app/controllers/alchemy/admin/pages_controller.rb +7 -22
  53. data/app/controllers/alchemy/admin/pictures_controller.rb +56 -17
  54. data/app/controllers/alchemy/admin/resources_controller.rb +84 -10
  55. data/app/controllers/alchemy/api/elements_controller.rb +13 -4
  56. data/app/controllers/alchemy/api/pages_controller.rb +4 -3
  57. data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
  58. data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
  59. data/app/decorators/alchemy/element_editor.rb +26 -1
  60. data/app/decorators/alchemy/ingredient_editor.rb +158 -0
  61. data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
  62. data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
  63. data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
  64. data/app/helpers/alchemy/elements_block_helper.rb +29 -6
  65. data/app/helpers/alchemy/elements_helper.rb +12 -5
  66. data/app/helpers/alchemy/pages_helper.rb +3 -11
  67. data/app/jobs/alchemy/base_job.rb +11 -0
  68. data/app/jobs/alchemy/publish_page_job.rb +11 -0
  69. data/app/models/alchemy/attachment.rb +24 -7
  70. data/app/models/alchemy/content/factory.rb +23 -27
  71. data/app/models/alchemy/content.rb +1 -6
  72. data/app/models/alchemy/element/definitions.rb +29 -27
  73. data/app/models/alchemy/element/element_contents.rb +131 -122
  74. data/app/models/alchemy/element/element_essences.rb +111 -98
  75. data/app/models/alchemy/element/element_ingredients.rb +184 -0
  76. data/app/models/alchemy/element/presenters.rb +104 -85
  77. data/app/models/alchemy/element.rb +39 -86
  78. data/app/models/alchemy/elements_repository.rb +126 -0
  79. data/app/models/alchemy/essence_audio.rb +12 -0
  80. data/app/models/alchemy/essence_headline.rb +40 -0
  81. data/app/models/alchemy/essence_picture.rb +4 -116
  82. data/app/models/alchemy/essence_richtext.rb +12 -0
  83. data/app/models/alchemy/essence_video.rb +12 -0
  84. data/app/models/alchemy/image_cropper_settings.rb +87 -0
  85. data/app/models/alchemy/ingredient.rb +183 -0
  86. data/app/models/alchemy/ingredient_validator.rb +97 -0
  87. data/app/models/alchemy/ingredients/audio.rb +29 -0
  88. data/app/models/alchemy/ingredients/boolean.rb +21 -0
  89. data/app/models/alchemy/ingredients/datetime.rb +20 -0
  90. data/app/models/alchemy/ingredients/file.rb +30 -0
  91. data/app/models/alchemy/ingredients/headline.rb +42 -0
  92. data/app/models/alchemy/ingredients/html.rb +19 -0
  93. data/app/models/alchemy/ingredients/link.rb +16 -0
  94. data/app/models/alchemy/ingredients/node.rb +23 -0
  95. data/app/models/alchemy/ingredients/page.rb +23 -0
  96. data/app/models/alchemy/ingredients/picture.rb +41 -0
  97. data/app/models/alchemy/ingredients/richtext.rb +57 -0
  98. data/app/models/alchemy/ingredients/select.rb +10 -0
  99. data/app/models/alchemy/ingredients/text.rb +17 -0
  100. data/app/models/alchemy/ingredients/video.rb +33 -0
  101. data/app/models/alchemy/language.rb +0 -11
  102. data/app/models/alchemy/page/fixed_attributes.rb +53 -51
  103. data/app/models/alchemy/page/page_elements.rb +186 -205
  104. data/app/models/alchemy/page/page_naming.rb +66 -64
  105. data/app/models/alchemy/page/page_natures.rb +131 -143
  106. data/app/models/alchemy/page/page_scopes.rb +117 -102
  107. data/app/models/alchemy/page/publisher.rb +50 -0
  108. data/app/models/alchemy/page/url_path.rb +1 -1
  109. data/app/models/alchemy/page.rb +79 -36
  110. data/app/models/alchemy/page_version.rb +58 -0
  111. data/app/models/alchemy/picture/calculations.rb +2 -8
  112. data/app/models/alchemy/picture/preprocessor.rb +2 -0
  113. data/app/models/alchemy/picture/transformations.rb +24 -96
  114. data/app/models/alchemy/picture.rb +17 -39
  115. data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
  116. data/app/models/concerns/alchemy/touch_elements.rb +2 -2
  117. data/app/presenters/alchemy/picture_view.rb +88 -0
  118. data/app/serializers/alchemy/element_serializer.rb +5 -0
  119. data/app/serializers/alchemy/page_tree_serializer.rb +3 -2
  120. data/app/services/alchemy/delete_elements.rb +44 -0
  121. data/app/services/alchemy/duplicate_element.rb +56 -0
  122. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +2 -3
  123. data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
  124. data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
  125. data/app/views/alchemy/admin/attachments/index.html.erb +2 -3
  126. data/app/views/alchemy/admin/crop.html.erb +36 -0
  127. data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
  128. data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
  129. data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
  130. data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +1 -1
  131. data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
  132. data/app/views/alchemy/admin/elements/create.js.erb +1 -1
  133. data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +2 -6
  134. data/app/views/alchemy/admin/elements/fold.js.erb +2 -2
  135. data/app/views/alchemy/admin/elements/new.html.erb +3 -3
  136. data/app/views/alchemy/admin/elements/order.js.erb +0 -17
  137. data/app/views/alchemy/admin/elements/update.js.erb +3 -2
  138. data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
  139. data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
  140. data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
  141. data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
  142. data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
  143. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
  144. data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
  145. data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
  146. data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
  147. data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
  148. data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
  149. data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
  150. data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
  151. data/app/views/alchemy/admin/pages/_form.html.erb +0 -6
  152. data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
  153. data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
  154. data/app/views/alchemy/admin/pages/_toolbar.html.erb +1 -1
  155. data/app/views/alchemy/admin/pages/edit.html.erb +37 -25
  156. data/app/views/alchemy/admin/pages/index.html.erb +2 -9
  157. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
  158. data/app/views/alchemy/admin/partials/_routes.html.erb +7 -11
  159. data/app/views/alchemy/admin/partials/_search_form.html.erb +9 -0
  160. data/app/views/alchemy/admin/pictures/_archive.html.erb +1 -1
  161. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
  162. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +5 -7
  163. data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
  164. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
  165. data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
  166. data/app/views/alchemy/admin/pictures/index.html.erb +8 -3
  167. data/app/views/alchemy/admin/resources/_filter.html.erb +12 -0
  168. data/app/views/alchemy/admin/resources/_filter_bar.html.erb +14 -17
  169. data/app/views/alchemy/admin/resources/_form.html.erb +3 -0
  170. data/app/views/alchemy/admin/resources/_table_header.html.erb +15 -0
  171. data/app/views/alchemy/admin/resources/index.html.erb +3 -11
  172. data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
  173. data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
  174. data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
  175. data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
  176. data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
  177. data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
  178. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
  179. data/app/views/alchemy/essences/_essence_picture_view.html.erb +3 -3
  180. data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
  181. data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
  182. data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
  183. data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
  184. data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
  185. data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
  186. data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
  187. data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
  188. data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
  189. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
  190. data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
  191. data/app/views/alchemy/ingredients/_file_editor.html.erb +52 -0
  192. data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
  193. data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
  194. data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
  195. data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
  196. data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
  197. data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
  198. data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
  199. data/app/views/alchemy/ingredients/_node_editor.html.erb +26 -0
  200. data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
  201. data/app/views/alchemy/ingredients/_page_editor.html.erb +25 -0
  202. data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
  203. data/app/views/alchemy/ingredients/_picture_editor.html.erb +60 -0
  204. data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
  205. data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
  206. data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
  207. data/app/views/alchemy/ingredients/_select_editor.html.erb +30 -0
  208. data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
  209. data/app/views/alchemy/ingredients/_text_editor.html.erb +20 -0
  210. data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
  211. data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
  212. data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
  213. data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
  214. data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
  215. data/config/brakeman.ignore +66 -159
  216. data/config/initializers/dragonfly.rb +10 -0
  217. data/config/locales/alchemy.en.yml +108 -64
  218. data/config/routes.rb +17 -22
  219. data/db/migrate/20201207131309_create_page_versions.rb +19 -0
  220. data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
  221. data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
  222. data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
  223. data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
  224. data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
  225. data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
  226. data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
  227. data/lib/alchemy/admin/preview_url.rb +2 -0
  228. data/lib/alchemy/deprecation.rb +1 -1
  229. data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
  230. data/lib/alchemy/dragonfly/processors/crop_resize.rb +35 -0
  231. data/lib/alchemy/elements_finder.rb +14 -60
  232. data/lib/alchemy/essence.rb +1 -2
  233. data/lib/alchemy/forms/builder.rb +21 -1
  234. data/lib/alchemy/hints.rb +8 -4
  235. data/lib/alchemy/page_layout.rb +0 -13
  236. data/lib/alchemy/permissions.rb +30 -29
  237. data/lib/alchemy/resource.rb +13 -3
  238. data/lib/alchemy/resource_filter.rb +40 -0
  239. data/lib/alchemy/resources_helper.rb +1 -16
  240. data/lib/alchemy/tasks/tidy.rb +29 -0
  241. data/lib/alchemy/test_support/essence_shared_examples.rb +0 -1
  242. data/lib/alchemy/test_support/factories/element_factory.rb +8 -8
  243. data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
  244. data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
  245. data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
  246. data/lib/alchemy/test_support/factories/page_factory.rb +20 -1
  247. data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
  248. data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
  249. data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
  250. data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
  251. data/lib/alchemy/test_support/shared_ingredient_examples.rb +75 -0
  252. data/lib/alchemy/test_support.rb +2 -11
  253. data/lib/alchemy/tinymce.rb +21 -0
  254. data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
  255. data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
  256. data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +62 -0
  257. data/lib/alchemy/version.rb +1 -1
  258. data/lib/alchemy_cms.rb +1 -0
  259. data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
  260. data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
  261. data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
  262. data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
  263. data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
  264. data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
  265. data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
  266. data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
  267. data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
  268. data/lib/generators/alchemy/menus/templates/node.html.erb +1 -1
  269. data/lib/generators/alchemy/menus/templates/node.html.haml +1 -1
  270. data/lib/generators/alchemy/menus/templates/node.html.slim +1 -1
  271. data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
  272. data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
  273. data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
  274. data/lib/tasks/alchemy/thumbnails.rake +2 -0
  275. data/lib/tasks/alchemy/tidy.rake +12 -0
  276. data/lib/tasks/alchemy/upgrade.rake +26 -0
  277. data/package/admin.js +11 -1
  278. data/package/src/__tests__/i18n.spec.js +23 -0
  279. data/package/src/file_editors.js +28 -0
  280. data/package/src/i18n.js +1 -3
  281. data/package/src/image_cropper.js +103 -0
  282. data/package/src/image_loader.js +58 -0
  283. data/package/src/node_tree.js +5 -5
  284. data/package/src/picture_editors.js +169 -0
  285. data/package/src/utils/__tests__/ajax.spec.js +20 -12
  286. data/package/src/utils/ajax.js +8 -3
  287. data/package.json +3 -2
  288. data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
  289. data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
  290. metadata +289 -53
  291. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
  292. data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
  293. data/app/assets/stylesheets/alchemy/trash.scss +0 -8
  294. data/app/controllers/alchemy/admin/trash_controller.rb +0 -44
  295. data/app/views/alchemy/admin/attachments/_filter_bar.html.erb +0 -29
  296. data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
  297. data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
  298. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
  299. data/app/views/alchemy/admin/pictures/_filter_bar.html.erb +0 -30
  300. data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
  301. data/app/views/alchemy/admin/trash/index.html.erb +0 -31
  302. data/lib/alchemy/test_support/factories.rb +0 -20
@@ -0,0 +1,56 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Alchemy
4
+ class DuplicateElement
5
+ SKIPPED_ATTRIBUTES_ON_COPY = [
6
+ "cached_tag_list",
7
+ "created_at",
8
+ "creator_id",
9
+ "position",
10
+ "id",
11
+ "folded",
12
+ "updated_at",
13
+ "updater_id",
14
+ ].freeze
15
+
16
+ attr_reader :source_element, :repository
17
+
18
+ def initialize(source_element, repository: source_element.page_version.element_repository)
19
+ @source_element = source_element
20
+ @repository = repository
21
+ end
22
+
23
+ def call(differences = {})
24
+ attributes = source_element.attributes.with_indifferent_access
25
+ .except(*SKIPPED_ATTRIBUTES_ON_COPY)
26
+ .merge(differences)
27
+ .merge(
28
+ autogenerate_contents: false,
29
+ autogenerate_ingredients: false,
30
+ autogenerate_nested_elements: false,
31
+ tags: source_element.tags,
32
+ )
33
+
34
+ new_element = Element.new(attributes)
35
+ new_element.ingredients = source_element.ingredients.map(&:dup)
36
+ new_element.save!
37
+
38
+ source_element.contents.map do |content|
39
+ Content.copy(content, element: new_element)
40
+ end
41
+
42
+ nested_elements = repository.children_of(source_element)
43
+ Element.acts_as_list_no_update do
44
+ nested_elements.each.with_index(1) do |nested_element, position|
45
+ self.class.new(nested_element, repository: repository).call(
46
+ parent_element: new_element,
47
+ page_version: new_element.page_version,
48
+ position: position
49
+ )
50
+ end
51
+ end
52
+
53
+ new_element
54
+ end
55
+ end
56
+ end
@@ -6,8 +6,7 @@
6
6
  file_attribute: 'file',
7
7
  in_dialog: true,
8
8
  redirect_url: admin_attachments_path(
9
- element_id: @element.try(:id),
10
- content_id: @content.try(:id)
9
+ form_field_id: @form_field_id
11
10
  ) %>
12
11
  <% end %>
13
12
  <%= render 'alchemy/admin/partials/remote_search_form' %>
@@ -15,7 +14,7 @@
15
14
 
16
15
  <div id="assign_file_list" class="with_padding<%= search_filter_params[:tagged_with].present? ? ' filtered' : '' %>">
17
16
  <div id="library_sidebar">
18
- <%= render 'filter_bar' %>
17
+ <%= render 'filter_bar' if resource_has_filters %>
19
18
 
20
19
  <% if Alchemy::Attachment.tag_counts.any? %>
21
20
  <div class="tag-list">
@@ -1,7 +1,7 @@
1
1
  <li class="assign_file_file <%= cycle('even', 'odd') %>">
2
- <%= link_to alchemy.assign_admin_essence_files_path(
3
- attachment_id: file_to_assign.id,
4
- content_id: @content.id
2
+ <%= link_to alchemy.assign_admin_attachment_path(
3
+ id: file_to_assign.id,
4
+ form_field_id: @form_field_id
5
5
  ),
6
6
  remote: true,
7
7
  method: 'put' do %>
@@ -0,0 +1,11 @@
1
+ (function () {
2
+ var $form_field = $("#<%= @form_field_id -%>")
3
+ $("#assignable_<%= @assignable_id %> a").attr("href", "#").off("click")
4
+ $form_field.val("<%= @assignable_id %>")
5
+ $form_field.parent().find("> .file_name").text("<%= @attachment.name %>")
6
+ $form_field.parent().find("> .file_icon").html("<%= j render_icon(@attachment.icon_css_class) %>")
7
+ $form_field.parent().find("> .remove_file_link").removeClass("hidden")
8
+ Alchemy.closeCurrentDialog(function() {
9
+ Alchemy.setElementDirty($form_field.closest(".element-editor"))
10
+ })
11
+ })()
@@ -7,8 +7,7 @@
7
7
  file_attribute: 'file' %>
8
8
  <% end %>
9
9
  </div>
10
- <%= render 'alchemy/admin/partials/search_form',
11
- additional_params: [:file_type, :tagged_with] %>
10
+ <%= render 'alchemy/admin/partials/search_form' %>
12
11
  <% end %>
13
12
 
14
13
  <div id="archive_all" class="with_tag_filter resources-table-wrapper">
@@ -16,7 +15,7 @@
16
15
  <%= render 'files_list' %>
17
16
 
18
17
  <div id="library_sidebar">
19
- <%= render 'filter_bar' %>
18
+ <%= render 'filter_bar' if resource_has_filters %>
20
19
 
21
20
  <% if Alchemy::Attachment.tag_counts.any? %>
22
21
  <div class="tag-list with_filter_bar<%= ' filtered' if search_filter_params[:tagged_with].present? %>">
@@ -0,0 +1,36 @@
1
+ <div id="jscropper">
2
+ <% if @no_image_notice %>
3
+ <%= render_message :warn do %>
4
+ <%= @no_image_notice %>
5
+ <% end %>
6
+ <% else %>
7
+ <%= render_message do %>
8
+ <%= simple_format Alchemy.t(:explain_cropping) %>
9
+ <% end %>
10
+ <div class="thumbnail_background">
11
+ <%= image_tag @picture.url(size: '800x600', flatten: true), id: 'imageToCrop' %>
12
+ </div>
13
+ <form>
14
+ <%= button_tag Alchemy.t(:apply), type: 'submit' %>
15
+ <%= button_tag Alchemy.t('Reset Imagemask'), class: 'reset_mask', type: 'reset' %>
16
+ </form>
17
+ </div>
18
+ <% end %>
19
+ <% if @settings %>
20
+ <script type="text/javascript">
21
+ Alchemy.ImageLoader('#jscropper .thumbnail_background');
22
+ $('#imageToCrop').load(function() {
23
+ new Alchemy.ImageCropper(
24
+ <%= @settings[:min_size].to_json %>,
25
+ <%= @settings[:default_box].to_json %>,
26
+ <%= @settings[:ratio] %>,
27
+ <%= @settings[:image_size].to_json %>,
28
+ [
29
+ "<%= params[:crop_from_form_field_id] %>",
30
+ "<%= params[:crop_size_form_field_id] %>",
31
+ ],
32
+ <%= @element.id %>
33
+ );
34
+ });
35
+ </script>
36
+ <% end %>
@@ -4,11 +4,11 @@
4
4
  class: element.css_classes do %>
5
5
 
6
6
  <% unless element.fixed? %>
7
- <%= render 'alchemy/admin/elements/element_header', element: element %>
7
+ <%= render 'alchemy/admin/elements/header', element: element %>
8
8
  <% end %>
9
9
 
10
10
  <% if element.expanded? || element.fixed? %>
11
- <%= render 'alchemy/admin/elements/element_toolbar', element: element %>
11
+ <%= render 'alchemy/admin/elements/toolbar', element: element %>
12
12
 
13
13
  <% element.definition[:message].tap do |message| %>
14
14
  <%= render_message(:info, sanitize(message)) if message %>
@@ -23,11 +23,15 @@
23
23
  html: {id: "element_#{element.id}_form".html_safe, class: 'element-content'} do |f| %>
24
24
 
25
25
  <div id="element_<%= element.id %>_errors" class="element_errors"></div>
26
-
27
- <div id="element_<%= element.id %>_content" class="element-content-editors">
28
- <%= render element.contents %>
29
- </div>
30
-
26
+ <% if element.has_ingredients_defined? %>
27
+ <div class="element-ingredient-editors">
28
+ <%= render element.ingredients, element_form: f %>
29
+ </div>
30
+ <% else %>
31
+ <div id="element_<%= element.id %>_content" class="element-content-editors">
32
+ <%= render element.contents %>
33
+ </div>
34
+ <% end %>
31
35
  <% if element.taggable? %>
32
36
  <div class="autocomplete_tag_list">
33
37
  <%= f.label :tag_list %>
@@ -36,7 +40,7 @@
36
40
  <% end %>
37
41
  <% end %>
38
42
 
39
- <%= render 'alchemy/admin/elements/element_footer', element: element %>
43
+ <%= render 'alchemy/admin/elements/footer', element: element %>
40
44
  <% end %>
41
45
  <% end %>
42
46
 
@@ -57,7 +61,7 @@
57
61
  <%= form_for [:admin, Alchemy::Element.new(name: nestable_element)],
58
62
  remote: true, html: { class: 'add-nested-element-form', id: nil } do |f| %>
59
63
  <%= f.hidden_field :name %>
60
- <%= f.hidden_field :page_id, value: element.page_id %>
64
+ <%= f.hidden_field :page_version_id, value: element.page_version_id %>
61
65
  <%= f.hidden_field :parent_element_id, value: element.id %>
62
66
  <button class="button add-nestable-element-button" data-alchemy-button>
63
67
  <%= Alchemy.t(:add_nested_element) % { name: Alchemy.t(nestable_element, scope: 'element_names') } %>
@@ -67,7 +71,7 @@
67
71
  <%= link_to_dialog Alchemy.t("New Element"),
68
72
  alchemy.new_admin_element_path(
69
73
  parent_element_id: element.id,
70
- page_id: element.page.id
74
+ page_version_id: element.page_version_id
71
75
  ), {
72
76
  size: "320x125",
73
77
  title: Alchemy.t("New Element")
@@ -4,7 +4,7 @@
4
4
  <% end %>
5
5
  <%- else -%>
6
6
  <%= alchemy_form_for [:admin, @element] do |form| %>
7
- <%= form.hidden_field :page_id %>
7
+ <%= form.hidden_field :page_version_id %>
8
8
  <%= form.input :name,
9
9
  label: Alchemy.t(:element_of_type),
10
10
  collection: elements_for_select(@elements),
@@ -18,7 +18,7 @@
18
18
  <%= sanitize(element.preview_text.presence || '&nbsp;') %>
19
19
  </span>
20
20
  </span>
21
- <%= render_hint_for(element) unless element.trashed? %>
21
+ <%= render_hint_for(element) %>
22
22
  <%= link_to '#', {
23
23
  'data-element-toggle' => element.id,
24
24
  title: Alchemy.t(element.folded? ? :show_element_content : :hide_element_content),
@@ -22,14 +22,13 @@
22
22
  <label><%= Alchemy.t(:cut_element) %></label>
23
23
  </div>
24
24
  <div class="button_with_label">
25
- <%= link_to(
25
+ <%= link_to_confirm_dialog(
26
26
  render_icon('trash-alt'),
27
- alchemy.trash_admin_element_path(element),
28
- method: :delete,
29
- class: "icon_button",
30
- remote: true
27
+ Alchemy.t(:confirm_to_delete_element),
28
+ alchemy.admin_element_path(element),
29
+ class: "icon_button"
31
30
  ) -%>
32
- <label><%= Alchemy.t("trash element") %></label>
31
+ <label><%= Alchemy.t("Delete element") %></label>
33
32
  </div>
34
33
  <div class="button_with_label publish-element-button">
35
34
  <%= link_to(
@@ -34,7 +34,7 @@
34
34
 
35
35
  Alchemy.growl('<%= Alchemy.t(:successfully_added_element) %>');
36
36
  Alchemy.closeCurrentDialog();
37
- Alchemy.Tinymce.init(<%= @element.richtext_contents_ids.to_json %>);
37
+ Alchemy.Tinymce.init(<%= (@element.richtext_contents_ids + @element.richtext_ingredients_ids).to_json %>);
38
38
  Alchemy.PreviewWindow.refresh(function() {
39
39
  Alchemy.ElementEditors.focusElementPreview(<%= @element.id %>);
40
40
  });
@@ -1,13 +1,9 @@
1
1
  $('#element_<%= @element.id %>').hide(200, function() {
2
2
  $(this).remove();
3
- Alchemy.growl('<%= j Alchemy.t("Element trashed") %>');
3
+ Alchemy.growl('<%= j @notice %>');
4
4
  $('#element_area .sortable-elements').sortable('refresh');
5
- Alchemy.TrashWindow.refresh();
6
- $('#element_trash_button .icon').addClass('full');
7
5
  Alchemy.PreviewWindow.refresh();
8
- <% @element.richtext_contents_ids.each do |id| %>
9
- tinymce.get('tinymce_<%= id %>').remove();
10
- <% end %>
6
+ Alchemy.Tinymce.remove(<%= @richtext_ids.to_json %>);
11
7
  <% if @element.fixed? %>
12
8
  Alchemy.FixedElements.removeTab(<%= @element.id %>);
13
9
  <% end %>
@@ -14,12 +14,12 @@
14
14
 
15
15
  <% if @element.folded? -%>
16
16
 
17
- Alchemy.Tinymce.remove(<%= @element.richtext_contents_ids.to_json %>);
17
+ Alchemy.Tinymce.remove(<%= (@element.richtext_contents_ids + @element.richtext_ingredients_ids).to_json %>);
18
18
 
19
19
  <% else -%>
20
20
 
21
21
  $el.trigger('FocusElementEditor.Alchemy');
22
- Alchemy.Tinymce.init(<%= @element.richtext_contents_ids.to_json %>);
22
+ Alchemy.Tinymce.init(<%= (@element.richtext_contents_ids + @element.richtext_ingredients_ids).to_json %>);
23
23
  Alchemy.GUI.initElement($el);
24
24
  Alchemy.SortableElements(
25
25
  <%= @page.id %>,
@@ -1,5 +1,5 @@
1
1
  <%- if @clipboard_items.blank? -%>
2
- <%= render 'new_element_form' %>
2
+ <%= render 'form' %>
3
3
  <%- else -%>
4
4
  <div id="overlay_tabs">
5
5
  <ul>
@@ -7,11 +7,11 @@
7
7
  <li><a href="#paste_element_tab"><%= Alchemy.t('Paste from clipboard') %></a></li>
8
8
  </ul>
9
9
  <div id="create_element_tab">
10
- <%= render 'new_element_form' %>
10
+ <%= render 'form' %>
11
11
  </div>
12
12
  <div id="paste_element_tab">
13
13
  <%= alchemy_form_for([:admin, @element]) do |f| %>
14
- <%= f.hidden_field :page_id %>
14
+ <%= f.hidden_field :page_version_id %>
15
15
  <%= f.hidden_field :parent_element_id, value: @parent_element.try(:id) %>
16
16
  <div class="input select">
17
17
  <label for="paste_from_clipboard" class="control-label"><%= Alchemy.t("Element") %></label>
@@ -6,23 +6,6 @@
6
6
  '<%= sanitize(@parent_element.preview_text.presence || '&nbsp;') %>'
7
7
  );
8
8
  <% end %>
9
-
10
- <% if @trashed_element_ids.any? %>
11
-
12
- $('#element_area .ajax-folder').show();
13
- <% element_ids = @trashed_element_ids.collect do |id|
14
- "#element_area [data-element-id=\"#{id}\"]"
15
- end.join(", ").html_safe %>
16
- <% @trashed_element_ids.each do |id| %>
17
- $('<%= element_ids %>').each(function() { this.id = 'element_' + <%= id %> });
18
- <% end %>
19
- Alchemy.growl('<%= Alchemy.t(:successfully_restored_element) -%>');
20
-
21
- <% else %>
22
-
23
9
  Alchemy.growl('<%= Alchemy.t(:successfully_saved_element_position) -%>');
24
-
25
- <% end %>
26
-
27
10
  Alchemy.PreviewWindow.refresh();
28
11
  })();
@@ -1,7 +1,7 @@
1
1
  (function() {
2
2
  var $el = $('#element_<%= @element.id %>');
3
3
  var $errors = $('#element_<%= @element.id %>_errors');
4
- $('> .element-content .content_editor', $el).removeClass('validation_failed');
4
+ $('> .element-content .content_editor, > .element-content .ingredient-editor', $el).removeClass('validation_failed');
5
5
 
6
6
  <%- if @element_validated -%>
7
7
 
@@ -15,9 +15,10 @@
15
15
  <%- else -%>
16
16
 
17
17
  Alchemy.growl('<%= j @notice %>', 'warn');
18
- $errors.html('<%= j @error_message %><ul><li><%== j @element.essence_error_messages.join("</li><li>") %></li></ul>');
18
+ $errors.html('<%= j @error_message %><ul><li><%== j @error_messages.join("</li><li>") %></li></ul>');
19
19
  $errors.show();
20
20
  $('<%= @element.contents_with_errors.map { |content| "#" + content.dom_id }.join(", ") %>').addClass('validation_failed');
21
+ $('<%== @element.ingredients_with_errors.map { |ingredient| "[data-ingredient-id=\"#{ingredient.id}\"]" }.join(", ") %>').addClass('validation_failed');
21
22
  Alchemy.Buttons.enable($el);
22
23
 
23
24
  <%- end -%>
@@ -0,0 +1,7 @@
1
+ <%= alchemy_form_for [:admin, @essence_audio] do |f| %>
2
+ <%= f.input :autoplay %>
3
+ <%= f.input :controls %>
4
+ <%= f.input :loop %>
5
+ <%= f.input :muted %>
6
+ <%= f.submit Alchemy.t(:save) %>
7
+ <% end %>
@@ -1,5 +1,4 @@
1
1
  (function($) {
2
- Alchemy.ImageCropper.destroy();
3
2
  Alchemy.closeCurrentDialog();
4
3
  Alchemy.setElementDirty('#element_<%= @content.element.id %>');
5
4
  <% if @content.ingredient %>
@@ -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,4 @@
1
+ <%= f.input :autoplay, as: :boolean %>
2
+ <%= f.input :controls, as: :boolean %>
3
+ <%= f.input :loop, as: :boolean %>
4
+ <%= f.input :muted, as: :boolean %>
@@ -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 -%>