alchemy_cms 7.1.13 → 7.2.0.b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +132 -39
  3. data/Gemfile +2 -11
  4. data/LICENSE +1 -1
  5. data/README.md +5 -6
  6. data/SECURITY.md +1 -1
  7. data/alchemy_cms.gemspec +3 -4
  8. data/app/assets/javascripts/alchemy/admin.js +0 -9
  9. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +5 -15
  10. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +5 -4
  11. data/app/assets/javascripts/alchemy/templates/index.js +0 -1
  12. data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
  13. data/app/assets/javascripts/alchemy/templates/page_folder.hbs +1 -1
  14. data/app/assets/javascripts/tinymce/plugins/alchemy_link/plugin.min.js +20 -7
  15. data/app/assets/stylesheets/alchemy/_custom-properties.scss +12 -0
  16. data/app/assets/stylesheets/alchemy/_mixins.scss +10 -6
  17. data/app/assets/stylesheets/alchemy/_variables.scss +3 -0
  18. data/app/assets/stylesheets/alchemy/admin.scss +2 -2
  19. data/app/assets/stylesheets/alchemy/archive.scss +4 -3
  20. data/app/assets/stylesheets/alchemy/attachment-select.scss +19 -0
  21. data/app/assets/stylesheets/alchemy/base.scss +31 -18
  22. data/app/assets/stylesheets/alchemy/buttons.scss +3 -4
  23. data/app/assets/stylesheets/alchemy/dashboard.scss +1 -1
  24. data/app/assets/stylesheets/alchemy/dialogs.scss +2 -5
  25. data/app/assets/stylesheets/alchemy/elements.scss +74 -42
  26. data/app/assets/stylesheets/alchemy/flash.scss +20 -70
  27. data/app/assets/stylesheets/alchemy/forms.scss +41 -36
  28. data/app/assets/stylesheets/alchemy/frame.scss +12 -3
  29. data/app/assets/stylesheets/alchemy/icons.scss +34 -2
  30. data/app/assets/stylesheets/alchemy/image_library.scss +18 -9
  31. data/app/assets/stylesheets/alchemy/{filter_field.scss → list_filter.scss} +8 -7
  32. data/app/assets/stylesheets/alchemy/lists.scss +1 -1
  33. data/app/assets/stylesheets/alchemy/navigation.scss +9 -12
  34. data/app/assets/stylesheets/alchemy/node-select.scss +1 -1
  35. data/app/assets/stylesheets/alchemy/nodes.scss +15 -13
  36. data/app/assets/stylesheets/alchemy/notices.scss +56 -39
  37. data/app/assets/stylesheets/alchemy/page-select.scss +1 -4
  38. data/app/assets/stylesheets/alchemy/pagination.scss +11 -1
  39. data/app/assets/stylesheets/alchemy/preview_window.scss +3 -3
  40. data/app/assets/stylesheets/alchemy/search.scss +4 -4
  41. data/app/assets/stylesheets/alchemy/selects.scss +13 -7
  42. data/app/assets/stylesheets/alchemy/shoelace.scss +33 -2
  43. data/app/assets/stylesheets/alchemy/sitemap.scss +155 -159
  44. data/app/assets/stylesheets/alchemy/tables.scss +49 -12
  45. data/app/assets/stylesheets/alchemy/tags.scss +17 -11
  46. data/app/assets/stylesheets/alchemy/toolbar.scss +2 -2
  47. data/app/assets/stylesheets/alchemy/typography.scss +41 -22
  48. data/app/assets/stylesheets/alchemy/upload.scss +5 -4
  49. data/app/components/alchemy/admin/attachment_select.rb +39 -0
  50. data/app/components/alchemy/admin/icon.rb +72 -0
  51. data/app/components/alchemy/admin/link_dialog/anchor_tab.rb +41 -0
  52. data/app/components/alchemy/admin/link_dialog/base_tab.rb +75 -0
  53. data/app/components/alchemy/admin/link_dialog/external_tab.rb +42 -0
  54. data/app/components/alchemy/admin/link_dialog/file_tab.rb +45 -0
  55. data/app/components/alchemy/admin/link_dialog/internal_tab.rb +66 -0
  56. data/app/components/alchemy/admin/link_dialog/tabs.rb +33 -0
  57. data/app/components/alchemy/admin/list_filter.rb +42 -0
  58. data/app/components/alchemy/admin/message.rb +19 -0
  59. data/app/components/alchemy/admin/tags_autocomplete.rb +25 -0
  60. data/app/components/alchemy/admin/toolbar_button.rb +111 -0
  61. data/app/components/alchemy/ingredients/datetime_view.rb +2 -3
  62. data/app/components/alchemy/ingredients/link_view.rb +1 -7
  63. data/app/components/alchemy/ingredients/picture_view.rb +2 -2
  64. data/app/components/alchemy/ingredients/text_view.rb +1 -2
  65. data/app/controllers/alchemy/admin/base_controller.rb +3 -27
  66. data/app/controllers/alchemy/admin/elements_controller.rb +4 -2
  67. data/app/controllers/alchemy/admin/ingredients_controller.rb +2 -0
  68. data/app/controllers/alchemy/admin/languages_controller.rb +2 -2
  69. data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -19
  70. data/app/controllers/alchemy/admin/legacy_page_urls_controller.rb +12 -4
  71. data/app/controllers/alchemy/admin/nodes_controller.rb +26 -0
  72. data/app/controllers/alchemy/admin/pages_controller.rb +16 -79
  73. data/app/controllers/alchemy/admin/picture_descriptions_controller.rb +15 -0
  74. data/app/controllers/alchemy/admin/pictures_controller.rb +18 -1
  75. data/app/controllers/alchemy/admin/resources_controller.rb +16 -11
  76. data/app/controllers/alchemy/api/attachments_controller.rb +44 -0
  77. data/app/controllers/alchemy/api/pages_controller.rb +10 -6
  78. data/app/controllers/alchemy/base_controller.rb +2 -2
  79. data/app/controllers/alchemy/messages_controller.rb +3 -3
  80. data/app/controllers/alchemy/pages_controller.rb +8 -6
  81. data/app/controllers/concerns/alchemy/admin/current_language.rb +1 -11
  82. data/app/controllers/concerns/alchemy/legacy_page_redirects.rb +1 -1
  83. data/app/decorators/alchemy/element_editor.rb +2 -2
  84. data/app/helpers/alchemy/admin/base_helper.rb +8 -60
  85. data/app/helpers/alchemy/admin/elements_helper.rb +1 -1
  86. data/app/helpers/alchemy/admin/ingredients_helper.rb +1 -1
  87. data/app/helpers/alchemy/base_helper.rb +9 -91
  88. data/app/helpers/alchemy/elements_helper.rb +3 -3
  89. data/app/helpers/alchemy/pages_helper.rb +16 -9
  90. data/app/javascript/alchemy_admin/components/attachment_select.js +24 -0
  91. data/app/javascript/alchemy_admin/components/button.js +3 -0
  92. data/app/javascript/alchemy_admin/components/clipboard_button.js +3 -2
  93. data/app/javascript/alchemy_admin/components/dialog_link.js +10 -7
  94. data/app/javascript/alchemy_admin/components/dom_id_select.js +69 -0
  95. data/app/javascript/alchemy_admin/components/element_editor/delete_element_button.js +42 -0
  96. data/app/javascript/alchemy_admin/components/element_editor/publish_element_button.js +4 -2
  97. data/app/javascript/alchemy_admin/components/element_editor.js +21 -13
  98. data/app/javascript/alchemy_admin/components/elements_window.js +87 -0
  99. data/app/javascript/alchemy_admin/components/growl.js +13 -0
  100. data/app/javascript/alchemy_admin/components/icon.js +51 -0
  101. data/app/javascript/alchemy_admin/components/index.js +24 -0
  102. data/app/javascript/alchemy_admin/components/ingredient_group.js +6 -0
  103. data/app/javascript/alchemy_admin/components/link_buttons/link_button.js +21 -11
  104. data/app/javascript/alchemy_admin/components/link_buttons/unlink_button.js +2 -1
  105. data/app/javascript/alchemy_admin/components/link_buttons.js +1 -0
  106. data/app/javascript/alchemy_admin/components/list_filter.js +68 -0
  107. data/app/javascript/alchemy_admin/components/message.js +69 -0
  108. data/app/javascript/alchemy_admin/components/node_select.js +1 -1
  109. data/app/javascript/alchemy_admin/components/overlay.js +6 -6
  110. data/app/javascript/alchemy_admin/components/page_select.js +3 -7
  111. data/app/javascript/alchemy_admin/components/preview_window.js +121 -0
  112. data/app/javascript/alchemy_admin/components/remote_select.js +4 -1
  113. data/app/javascript/alchemy_admin/components/select.js +37 -1
  114. data/app/javascript/alchemy_admin/components/tags_autocomplete.js +57 -0
  115. data/app/javascript/alchemy_admin/components/uploader/file_upload.js +4 -3
  116. data/app/javascript/alchemy_admin/components/uploader/progress.js +1 -1
  117. data/app/javascript/alchemy_admin/confirm_dialog.js +133 -0
  118. data/app/javascript/alchemy_admin/dirty.js +19 -14
  119. data/app/javascript/alchemy_admin/fixed_elements.js +24 -0
  120. data/app/javascript/alchemy_admin/growler.js +15 -0
  121. data/app/javascript/alchemy_admin/gui.js +2 -4
  122. data/app/javascript/alchemy_admin/hotkeys.js +60 -0
  123. data/app/javascript/alchemy_admin/image_loader.js +2 -2
  124. data/app/javascript/alchemy_admin/ingredient_anchor_link.js +2 -3
  125. data/app/javascript/alchemy_admin/initializer.js +1 -8
  126. data/app/javascript/alchemy_admin/link_dialog.js +131 -0
  127. data/app/javascript/alchemy_admin/locales/en.js +3 -0
  128. data/app/javascript/alchemy_admin/node_tree.js +4 -3
  129. data/app/javascript/alchemy_admin/page_sorter.js +23 -14
  130. data/app/javascript/alchemy_admin/picture_editors.js +6 -5
  131. data/app/javascript/alchemy_admin/shoelace_theme.js +60 -0
  132. data/app/javascript/alchemy_admin/sitemap.js +9 -3
  133. data/app/javascript/alchemy_admin/sortable_elements.js +4 -6
  134. data/app/javascript/alchemy_admin.js +18 -42
  135. data/app/models/alchemy/current.rb +26 -0
  136. data/app/models/alchemy/element.rb +1 -1
  137. data/app/models/alchemy/ingredients/audio.rb +0 -11
  138. data/app/models/alchemy/ingredients/datetime.rb +1 -1
  139. data/app/models/alchemy/ingredients/headline.rb +8 -1
  140. data/app/models/alchemy/ingredients/picture.rb +6 -0
  141. data/app/models/alchemy/ingredients/video.rb +0 -12
  142. data/app/models/alchemy/language.rb +8 -6
  143. data/app/models/alchemy/node.rb +2 -2
  144. data/app/models/alchemy/page/page_elements.rb +8 -8
  145. data/app/models/alchemy/page/page_layouts.rb +3 -3
  146. data/app/models/alchemy/page/page_natures.rb +13 -9
  147. data/app/models/alchemy/page/page_scopes.rb +2 -2
  148. data/app/models/alchemy/page/publisher.rb +1 -0
  149. data/app/models/alchemy/page.rb +16 -31
  150. data/app/models/alchemy/picture.rb +8 -0
  151. data/app/models/alchemy/picture_description.rb +8 -0
  152. data/app/models/alchemy/picture_variant.rb +1 -1
  153. data/app/models/alchemy/site.rb +10 -7
  154. data/app/models/concerns/alchemy/picture_thumbnails.rb +5 -4
  155. data/app/serializers/alchemy/attachment_serializer.rb +8 -0
  156. data/app/serializers/alchemy/page_node_serializer.rb +9 -0
  157. data/app/views/alchemy/_menubar.html.erb +1 -1
  158. data/app/views/alchemy/_preview_mode_code.html.erb +1 -1
  159. data/app/views/alchemy/admin/attachments/_tag_list.html.erb +2 -2
  160. data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +0 -1
  161. data/app/views/alchemy/admin/attachments/edit.html.erb +3 -4
  162. data/app/views/alchemy/admin/clipboard/clear.js.erb +1 -1
  163. data/app/views/alchemy/admin/clipboard/index.html.erb +1 -1
  164. data/app/views/alchemy/admin/clipboard/insert.js.erb +1 -1
  165. data/app/views/alchemy/admin/clipboard/remove.js.erb +1 -1
  166. data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
  167. data/app/views/alchemy/admin/dashboard/_sites.html.erb +1 -1
  168. data/app/views/alchemy/admin/dashboard/help.html.erb +48 -12
  169. data/app/views/alchemy/admin/dashboard/index.html.erb +1 -1
  170. data/app/views/alchemy/admin/dashboard/info.html.erb +5 -8
  171. data/app/views/alchemy/admin/elements/_add_nested_element_form.html.erb +1 -1
  172. data/app/views/alchemy/admin/elements/_element.html.erb +5 -5
  173. data/app/views/alchemy/admin/elements/_footer.html.erb +1 -1
  174. data/app/views/alchemy/admin/elements/_header.html.erb +6 -2
  175. data/app/views/alchemy/admin/elements/_toolbar.html.erb +8 -6
  176. data/app/views/alchemy/admin/elements/create.js.erb +0 -5
  177. data/app/views/alchemy/admin/elements/index.html.erb +70 -34
  178. data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +1 -2
  179. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +3 -5
  180. data/app/views/alchemy/admin/languages/_language.html.erb +1 -1
  181. data/app/views/alchemy/admin/languages/index.html.erb +2 -2
  182. data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +18 -18
  183. data/app/views/alchemy/admin/layoutpages/edit.html.erb +4 -5
  184. data/app/views/alchemy/admin/layoutpages/index.html.erb +2 -2
  185. data/app/views/alchemy/admin/legacy_page_urls/_legacy_page_url.html.erb +10 -11
  186. data/app/views/alchemy/admin/legacy_page_urls/_new.html.erb +15 -17
  187. data/app/views/alchemy/admin/legacy_page_urls/_table.html.erb +16 -0
  188. data/app/views/alchemy/admin/legacy_page_urls/_update.turbo_stream.erb +12 -0
  189. data/app/views/alchemy/admin/legacy_page_urls/create.turbo_stream.erb +8 -0
  190. data/app/views/alchemy/admin/legacy_page_urls/destroy.turbo_stream.erb +1 -0
  191. data/app/views/alchemy/admin/legacy_page_urls/edit.html.erb +27 -0
  192. data/app/views/alchemy/admin/legacy_page_urls/show.html.erb +1 -0
  193. data/app/views/alchemy/admin/legacy_page_urls/update.turbo_stream.erb +1 -0
  194. data/app/views/alchemy/admin/nodes/_form.html.erb +12 -11
  195. data/app/views/alchemy/admin/nodes/_label.html.erb +1 -0
  196. data/app/views/alchemy/admin/nodes/_node.html.erb +19 -19
  197. data/app/views/alchemy/admin/nodes/_page_nodes.html.erb +48 -0
  198. data/app/views/alchemy/admin/nodes/_update.turbo_stream.erb +9 -0
  199. data/app/views/alchemy/admin/nodes/create.turbo_stream.erb +1 -0
  200. data/app/views/alchemy/admin/nodes/destroy.turbo_stream.erb +1 -0
  201. data/app/views/alchemy/admin/nodes/index.html.erb +3 -3
  202. data/app/views/alchemy/admin/pages/_form.html.erb +3 -4
  203. data/app/views/alchemy/admin/pages/_legacy_urls.html.erb +4 -15
  204. data/app/views/alchemy/admin/pages/_page.html.erb +39 -39
  205. data/app/views/alchemy/admin/pages/_table_row.html.erb +3 -3
  206. data/app/views/alchemy/admin/pages/_toolbar.html.erb +2 -2
  207. data/app/views/alchemy/admin/pages/configure.html.erb +6 -0
  208. data/app/views/alchemy/admin/pages/edit.html.erb +15 -62
  209. data/app/views/alchemy/admin/pages/unlock.js.erb +3 -3
  210. data/app/views/alchemy/admin/partials/_autocomplete_tag_list.html.erb +3 -1
  211. data/app/views/alchemy/admin/partials/_flash_notices.html.erb +4 -2
  212. data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +1 -1
  213. data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +5 -2
  214. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -2
  215. data/app/views/alchemy/admin/partials/_search_form.html.erb +2 -2
  216. data/app/views/alchemy/admin/partials/_site_select.html.erb +1 -1
  217. data/app/views/alchemy/admin/picture_descriptions/_form.html.erb +11 -0
  218. data/app/views/alchemy/admin/picture_descriptions/edit.html.erb +6 -0
  219. data/app/views/alchemy/admin/pictures/_form.html.erb +4 -3
  220. data/app/views/alchemy/admin/pictures/_infos.html.erb +1 -1
  221. data/app/views/alchemy/admin/pictures/_picture_description_field.html.erb +29 -0
  222. data/app/views/alchemy/admin/pictures/_tag_list.html.erb +2 -2
  223. data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +0 -2
  224. data/app/views/alchemy/admin/pictures/edit_multiple.html.erb +3 -3
  225. data/app/views/alchemy/admin/pictures/show.html.erb +3 -3
  226. data/app/views/alchemy/admin/resources/_form.html.erb +3 -4
  227. data/app/views/alchemy/admin/resources/_per_page_select.html.erb +1 -1
  228. data/app/views/alchemy/admin/resources/_tag_list.html.erb +2 -2
  229. data/app/views/alchemy/admin/resources/index.html.erb +2 -2
  230. data/app/views/alchemy/admin/sites/index.html.erb +1 -1
  231. data/app/views/alchemy/admin/styleguide/index.html.erb +29 -24
  232. data/app/views/alchemy/admin/tags/_tag.html.erb +1 -1
  233. data/app/views/alchemy/admin/tags/edit.html.erb +1 -1
  234. data/app/views/alchemy/admin/tags/index.html.erb +1 -1
  235. data/app/views/alchemy/base/500.html.erb +7 -18
  236. data/app/views/alchemy/base/error_notice.html.erb +3 -1
  237. data/app/views/alchemy/ingredients/_boolean_editor.html.erb +1 -1
  238. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +2 -3
  239. data/app/views/alchemy/ingredients/_headline_editor.html.erb +13 -8
  240. data/app/views/alchemy/ingredients/_picture_editor.html.erb +1 -1
  241. data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +1 -1
  242. data/app/views/alchemy/language_links/_language.html.erb +1 -1
  243. data/app/views/kaminari/alchemy/_first_page.html.erb +2 -2
  244. data/app/views/kaminari/alchemy/_gap.html.erb +1 -1
  245. data/app/views/kaminari/alchemy/_last_page.html.erb +2 -2
  246. data/app/views/kaminari/alchemy/_next_page.html.erb +2 -2
  247. data/app/views/kaminari/alchemy/_prev_page.html.erb +2 -2
  248. data/app/views/layouts/alchemy/admin.html.erb +2 -1
  249. data/bundles/shoelace.js +3 -1
  250. data/config/locales/alchemy.en.yml +16 -3
  251. data/config/routes.rb +4 -2
  252. data/db/migrate/20240314105244_create_alchemy_picture_descriptions.rb +11 -0
  253. data/lib/alchemy/configuration_methods.rb +1 -1
  254. data/lib/alchemy/controller_actions.rb +3 -3
  255. data/lib/alchemy/element_definition.rb +10 -6
  256. data/lib/alchemy/engine.rb +19 -2
  257. data/lib/alchemy/page_layout.rb +10 -6
  258. data/lib/alchemy/permissions.rb +4 -3
  259. data/lib/alchemy/resource.rb +4 -14
  260. data/lib/alchemy/routing_constraints.rb +1 -1
  261. data/lib/alchemy/seeder.rb +2 -2
  262. data/lib/alchemy/test_support/capybara_helpers.rb +4 -0
  263. data/lib/alchemy/test_support/factories/language_factory.rb +1 -1
  264. data/lib/alchemy/test_support/shared_contexts.rb +8 -0
  265. data/lib/alchemy/tinymce.rb +2 -1
  266. data/lib/alchemy/version.rb +1 -1
  267. data/lib/alchemy.rb +36 -0
  268. data/lib/alchemy_cms.rb +0 -1
  269. data/lib/generators/alchemy/menus/templates/node.html.erb +2 -2
  270. data/lib/generators/alchemy/menus/templates/node.html.haml +2 -2
  271. data/lib/generators/alchemy/menus/templates/node.html.slim +2 -2
  272. data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
  273. data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
  274. data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
  275. data/lib/tasks/alchemy/sitemap.rake +97 -0
  276. data/lib/tasks/alchemy/tidy.rake +1 -0
  277. data/package.json +8 -8
  278. data/vendor/assets/fonts/remixicon.symbol.svg +11 -0
  279. data/vendor/javascript/shoelace.min.js +333 -118
  280. data/vendor/javascript/sortable.min.js +1 -1
  281. data/vendor/javascript/tinymce.min.js +1 -1
  282. data/vendor/javascript/ungap-custom-elements.min.js +1 -1
  283. metadata +63 -55
  284. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +0 -85
  285. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +0 -107
  286. data/app/assets/javascripts/alchemy/alchemy.file_progress.js.coffee +0 -66
  287. data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +0 -45
  288. data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +0 -24
  289. data/app/assets/javascripts/alchemy/alchemy.hotkeys.js.coffee +0 -49
  290. data/app/assets/javascripts/alchemy/alchemy.initializer.js.coffee +0 -0
  291. data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +0 -230
  292. data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +0 -49
  293. data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +0 -82
  294. data/app/assets/javascripts/alchemy/alchemy.string_extension.js.coffee +0 -11
  295. data/app/assets/javascripts/alchemy/templates/page.hbs +0 -19
  296. data/app/javascript/alchemy_admin/tags_autocomplete.js +0 -46
  297. data/app/models/alchemy/tree_node.rb +0 -7
  298. data/app/views/alchemy/admin/elements/destroy.js.erb +0 -8
  299. data/app/views/alchemy/admin/legacy_page_urls/_form.html.erb +0 -5
  300. data/app/views/alchemy/admin/legacy_page_urls/create.js.erb +0 -9
  301. data/app/views/alchemy/admin/legacy_page_urls/destroy.js.erb +0 -6
  302. data/app/views/alchemy/admin/legacy_page_urls/update.js.erb +0 -2
  303. data/app/views/alchemy/admin/pages/_anchor_link.html.erb +0 -22
  304. data/app/views/alchemy/admin/pages/_external_link.html.erb +0 -31
  305. data/app/views/alchemy/admin/pages/_file_link.html.erb +0 -31
  306. data/app/views/alchemy/admin/pages/_internal_link.html.erb +0 -35
  307. data/app/views/alchemy/admin/pages/link.html.erb +0 -26
  308. data/app/views/alchemy/admin/partials/_flash.html.erb +0 -4
  309. data/app/views/alchemy/admin/partials/_toolbar_button.html.erb +0 -29
  310. data/lib/alchemy/test_support/current_language_shared_examples.rb +0 -33
  311. data/vendor/assets/fonts/remixicon.eot +0 -0
  312. data/vendor/assets/fonts/remixicon.svg +0 -7816
  313. data/vendor/assets/fonts/remixicon.ttf +0 -0
  314. data/vendor/assets/fonts/remixicon.woff +0 -0
  315. data/vendor/assets/fonts/remixicon.woff2 +0 -0
  316. data/vendor/assets/stylesheets/remixicon.scss +0 -10480
@@ -7,7 +7,7 @@
7
7
  <% end %>
8
8
 
9
9
  <% content_for(:toolbar) do %>
10
- <%= toolbar_button(
10
+ <%= render Alchemy::Admin::ToolbarButton.new(
11
11
  icon: :info,
12
12
  label: 'Info',
13
13
  url: alchemy.dashboard_info_path,
@@ -38,13 +38,13 @@
38
38
  <h3>Info Message</h3>
39
39
 
40
40
  <%= render_message do %>
41
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
41
+ <p>Lorem ipsum <strong>dolor</strong> sit amet, consectetur adipiscing elit.</p>
42
42
  <% end %>
43
43
 
44
44
  <h3>Warning Message</h3>
45
45
 
46
46
  <%= render_message :warning do %>
47
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
47
+ <p>Lorem ipsum dolor sit amet, <a href="">consectetur</a> adipiscing elit.</p>
48
48
  <% end %>
49
49
 
50
50
  <h3>Error Message</h3>
@@ -53,27 +53,32 @@
53
53
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
54
54
  <% end %>
55
55
 
56
+ <h3>Growl Messages</h3>
57
+
58
+ <%= link_to render_icon(:check), 'javascript:Alchemy.growl("Success message")', class: "icon_button" %>
59
+ <%= link_to render_icon(:info), 'javascript:Alchemy.growl("Info message", "info")', class: "icon_button" %>
60
+ <%= link_to render_icon(:alert), 'javascript:Alchemy.growl("Warning message", "warn")', class: "icon_button" %>
61
+ <%= link_to render_icon(:bug), 'javascript:Alchemy.growl("Error message", "error")', class: "icon_button" %>
62
+
56
63
  <h2>Dialog Links</h2>
57
64
 
58
- <div class="panel">
59
- <sl-tooltip content="Open in Dialog">
60
- <a
61
- href="/admin/styleguide"
62
- is="alchemy-dialog-link"
63
- class="icon_button"
64
- data-dialog-options="{&quot;size&quot;:&quot;800x600&quot;,&quot;title&quot;:&quot;Styleguide in Dialog&quot;}"
65
- >
66
- <i class="icon ri-window-line"></i>
67
- </a>
68
- </sl-tooltip>
65
+ <sl-tooltip content="Open in Dialog">
69
66
  <a
70
- href="#"
67
+ href="/admin/styleguide"
71
68
  is="alchemy-dialog-link"
72
- class="icon_button disabled"
69
+ class="icon_button"
70
+ data-dialog-options="{&quot;size&quot;:&quot;800x600&quot;,&quot;title&quot;:&quot;Styleguide in Dialog&quot;}"
73
71
  >
74
- <i class="icon ri-window-line"></i>
72
+ <%= render_icon "window" %>
75
73
  </a>
76
- </div>
74
+ </sl-tooltip>
75
+ <a
76
+ href="#"
77
+ is="alchemy-dialog-link"
78
+ class="icon_button disabled"
79
+ >
80
+ <%= render_icon "window" %>
81
+ </a>
77
82
 
78
83
  <h2>Forms</h2>
79
84
 
@@ -213,33 +218,33 @@
213
218
  </tr>
214
219
  <tr class="even">
215
220
  <td class="icon">
216
- <i class="icon ri-fw ri-user-line"></i>
221
+ <%= render_icon "user" %>
217
222
  </td>
218
223
  <td>Even table cell 1</td>
219
224
  <td>Even table cell 2</td>
220
225
  <td>Even table cell 3</td>
221
226
  <td class="tools">
222
227
  <a href="#" class="icon_button">
223
- <i class="icon ri-fw ri-delete-bin-2-line"></i>
228
+ <%= render_icon "delete-bin-2" %>
224
229
  </a>
225
230
  <a href="#" class="icon_button">
226
- <i class="icon ri-fw ri-edit-line"></i>
231
+ <%= render_icon "edit" %>
227
232
  </a>
228
233
  </td>
229
234
  </tr>
230
235
  <tr class="odd">
231
236
  <td class="icon">
232
- <i class="icon ri-fw ri-user-line"></i>
237
+ <%= render_icon "user", style: "fill" %>
233
238
  </td>
234
239
  <td>Odd table cell 1</td>
235
240
  <td>Odd table cell 2</td>
236
241
  <td>Odd table cell 3</td>
237
242
  <td class="tools">
238
243
  <a href="#" class="icon_button">
239
- <i class="icon ri-fw ri-delete-bin-2-line"></i>
244
+ <%= render_icon "delete-bin-2" %>
240
245
  </a>
241
246
  <a href="#" class="icon_button">
242
- <i class="icon ri-fw ri-edit-line"></i>
247
+ <%= render_icon "edit" %>
243
248
  </a>
244
249
  </td>
245
250
  </tr>
@@ -25,7 +25,7 @@
25
25
  {
26
26
  title: Alchemy.t(:edit_tag),
27
27
  size: '360x410'
28
- } %>
28
+ }, class: "icon_button" %>
29
29
  </sl-tooltip>
30
30
  <% end %>
31
31
  </td>
@@ -13,7 +13,7 @@
13
13
  <div class="input tags">
14
14
  <label class="control-label"><%= Alchemy.t('Tags') %></label>
15
15
  <div class="control_group" id="tags_tag_list">
16
- <%= js_filter_field '.tag-list li' %>
16
+ <%= render Alchemy::Admin::ListFilter.new(".tag-list li") %>
17
17
  <ul class="tags tag-list">
18
18
  <%= render partial: "radio_tag", collection: @tags, locals: {name: "tag"} %>
19
19
  </ul>
@@ -1,6 +1,6 @@
1
1
  <% content_for :toolbar do %>
2
2
  <div class="toolbar_buttons">
3
- <%= toolbar_button(
3
+ <%= render Alchemy::Admin::ToolbarButton.new(
4
4
  icon: :plus,
5
5
  label: Alchemy.t('New Tag'),
6
6
  url: alchemy.new_admin_tag_path,
@@ -1,5 +1,5 @@
1
1
  <%= content_for :toolbar do %>
2
- <%= toolbar_button(
2
+ <%= render Alchemy::Admin::ToolbarButton.new(
3
3
  icon: 'angle-double-left',
4
4
  url: request.referer || alchemy.admin_dashboard_path,
5
5
  label: Alchemy.t(:back),
@@ -18,21 +18,10 @@
18
18
  <%= @error.class %>
19
19
  <%= @notice %>
20
20
  </h2>
21
- <p class="hidden">
22
- <% @trace.each do |line| %>
23
- <%= line %><br>
24
- <% end %>
25
- </p>
26
- <a href="#" class="error_details--toggle">
27
- <%= Alchemy.t('Show error details') %>
28
- </a>
21
+ <details>
22
+ <summary><%= Alchemy.t('Show error details') %></summary>
23
+ <% @trace.each do |line| %>
24
+ <%= line %><br>
25
+ <% end %>
26
+ </details>
29
27
  <% end %>
30
-
31
- <script>
32
- $(function(){
33
- $('.error_details--toggle').on("click", function(){
34
- $('.error.message p').toggleClass('hidden');
35
- return false;
36
- });
37
- });
38
- </script>
@@ -1 +1,3 @@
1
- <%= render_flash_notice @notice, :error %>
1
+ <%= render_message :error do %>
2
+ <strong><%= @notice %></strong>
3
+ <% end %>
@@ -5,7 +5,7 @@
5
5
  <%= f.label :value, style: "display: inline-block", for: nil do %>
6
6
  <%= f.check_box :value, id: nil %>
7
7
  <%= render_ingredient_role(boolean_editor) %>
8
- <%= render_hint_for(boolean_editor, size: "lg", fixed_width: false) %>
8
+ <%= render_hint_for(boolean_editor, size: "1x", fixed_width: false) %>
9
9
  <% end %>
10
10
  <% end %>
11
11
  <% end %>
@@ -7,12 +7,11 @@
7
7
  datetime_editor, :value, {
8
8
  name: datetime_editor.form_field_name,
9
9
  id: datetime_editor.form_field_id,
10
- value: datetime_editor.value,
11
- type: datetime_editor.settings[:input_type]
10
+ value: datetime_editor.value
12
11
  }
13
12
  ) %>
14
13
  <% end %>
15
14
  <label for="<%= datetime_editor.form_field_id %>" class="ingredient-date--label">
16
- <i class="icon ri-calendar-line ri-fw"></i>
15
+ <%= render_icon "calendar" %>
17
16
  </label>
18
17
  <% end %>
@@ -12,20 +12,25 @@
12
12
  <%= render "alchemy/ingredients/shared/anchor", ingredient_editor: headline_editor %>
13
13
  <% end %>
14
14
 
15
- <% if has_level_select %>
16
- <div class="input-addon right<%= " second" if has_size_select %>">
15
+ <div class="input-addon right<%= " second" if has_size_select %>">
16
+ <sl-tooltip content="<%= f.object.class.human_attribute_name(:level) %>">
17
17
  <%= f.select :level,
18
18
  options_for_select(headline_editor.level_options, headline_editor.level),
19
19
  {},
20
- { class: "custom-select", title: f.object.class.human_attribute_name(:level) } %>
21
- </div>
22
- <% end %>
20
+ {
21
+ class: "custom-select",
22
+ disabled: !has_level_select
23
+ } %>
24
+ </sl-tooltip>
25
+ </div>
23
26
 
24
27
  <% if has_size_select %>
25
28
  <div class="input-addon right">
26
- <%= f.select :size, options_for_select(headline_editor.size_options, headline_editor.size),
27
- {},
28
- { class: "custom-select", title: f.object.class.human_attribute_name(:size) } %>
29
+ <sl-tooltip content="<%= f.object.class.human_attribute_name(:size) %>">
30
+ <%= f.select :size, options_for_select(headline_editor.size_options, headline_editor.size),
31
+ {},
32
+ { class: "custom-select" } %>
33
+ </sl-tooltip>
29
34
  </div>
30
35
  <% end %>
31
36
  <% end %>
@@ -27,7 +27,7 @@
27
27
  title: Alchemy.t(:image_name, name: picture_editor.picture.name),
28
28
  ) %>
29
29
  <% else %>
30
- <%= render_icon(:image) %>
30
+ <%= render_icon(:image, size: "xl") %>
31
31
  <% end %>
32
32
  </div>
33
33
  </div>
@@ -41,7 +41,7 @@
41
41
 
42
42
  <%= content_tag "sl-tooltip", content: Alchemy.t(:edit_image_properties), placement: "top-end" do %>
43
43
  <%= link_to_dialog render_icon(:edit),
44
- alchemy.edit_admin_ingredient_path(id: picture_editor.id),
44
+ alchemy.edit_admin_ingredient_path(id: picture_editor.id, language_id: @page.language_id),
45
45
  {
46
46
  title: Alchemy.t(:edit_image_properties),
47
47
  size: "380x255"
@@ -6,7 +6,7 @@
6
6
  ),
7
7
  class: [
8
8
  language.code,
9
- Alchemy::Language.current.id == language.id ? 'active' : nil,
9
+ Alchemy::Current.language.id == language.id ? 'active' : nil,
10
10
  languages.first == language ? 'first' : nil,
11
11
  languages.last == language ? 'last' : nil
12
12
  ].compact,
@@ -8,10 +8,10 @@
8
8
  -%>
9
9
  <% if current_page.first? %>
10
10
  <span class="first-page disabled">
11
- <i class="icon ri-skip-left-line ri-fw"></i>
11
+ <%= render_icon("skip-left") %>
12
12
  </span>
13
13
  <% else %>
14
14
  <%= link_to url, remote: remote, title: Alchemy.t(:first, scope: 'pagination'), class: 'first-page' do %>
15
- <i class="icon ri-skip-left-line ri-fw"></i>
15
+ <%= render_icon("skip-left") %>
16
16
  <% end %>
17
17
  <% end %>
@@ -5,4 +5,4 @@
5
5
  per_page: number of items to fetch per page
6
6
  remote: data-remote
7
7
  -%>
8
- <span class="page gap"><i class="icon ri-more-line"></i></span>
8
+ <span class="page gap"><%= render_icon(:more) %></span>
@@ -8,10 +8,10 @@
8
8
  -%>
9
9
  <% if current_page.last? %>
10
10
  <span class="last-page disabled">
11
- <i class="icon ri-skip-right-line ri-fw"></i>
11
+ <%= render_icon("skip-right") %>
12
12
  </span>
13
13
  <% else %>
14
14
  <%= link_to url, remote: remote, title: Alchemy.t(:last, scope: 'pagination'), class: 'last-page' do %>
15
- <i class="icon ri-skip-right-line ri-fw"></i>
15
+ <%= render_icon("skip-right") %>
16
16
  <% end %>
17
17
  <% end %>
@@ -8,10 +8,10 @@
8
8
  -%>
9
9
  <% if current_page.last? -%>
10
10
  <span class="next_page disabled">
11
- <i class="icon ri-arrow-right-s-line ri-fw"></i>
11
+ <%= render_icon("arrow-right-s") %>
12
12
  </span>
13
13
  <% else -%>
14
14
  <%= link_to url, rel: 'next', remote: remote, title: Alchemy.t(:next_page, scope: 'pagination'), class: 'next_page' do %>
15
- <i class="icon ri-arrow-right-s-line ri-fw"></i>
15
+ <%= render_icon("arrow-right-s") %>
16
16
  <% end %>
17
17
  <% end -%>
@@ -8,10 +8,10 @@
8
8
  -%>
9
9
  <% if current_page.first? -%>
10
10
  <span class="previous_page disabled">
11
- <i class="icon ri-arrow-left-s-line ri-fw"></i>
11
+ <%= render_icon("arrow-left-s") %>
12
12
  </span>
13
13
  <% else -%>
14
14
  <%= link_to url, rel: 'prev', remote: remote, class: 'previous_page', title: Alchemy.t(:previous_page, scope: 'pagination') do %>
15
- <i class="icon ri-arrow-left-s-line ri-fw"></i>
15
+ <%= render_icon("arrow-left-s") %>
16
16
  <% end %>
17
17
  <% end -%>
@@ -7,6 +7,7 @@
7
7
  <link rel="shortcut icon" href="<%= asset_path('alchemy/favicon.ico') %>">
8
8
  <%= csrf_meta_tag %>
9
9
  <meta name="robots" content="noindex">
10
+ <meta name="alchemy-icon-sprite" content="<%= asset_path("remixicon.symbol.svg") %>">
10
11
  <%= stylesheet_link_tag('alchemy/admin/all', media: 'screen', 'data-turbo-track' => true) %>
11
12
  <%= stylesheet_link_tag('alchemy/print', media: 'print', 'data-turbo-track' => true) %>
12
13
  <%= yield :stylesheets %>
@@ -55,7 +56,7 @@
55
56
  }, {'data-alchemy-hotkey' => 'alt+q'}) %>
56
57
  <% else %>
57
58
  <%= link_to(alchemy.root_path) do %>
58
- <i class="icon ri-logout-box-r-line ri-fw ri-lg"></i>
59
+ <%= render_icon "logout-box-r", size: "lg" %>
59
60
  <label><%= Alchemy.t(:leave) %></label>
60
61
  <% end %>
61
62
  <% end %>
data/bundles/shoelace.js CHANGED
@@ -6,5 +6,7 @@ import "@shoelace-style/shoelace/dist/components/tab-group/tab-group.js"
6
6
  import "@shoelace-style/shoelace/dist/components/tab-panel/tab-panel.js"
7
7
  import "@shoelace-style/shoelace/dist/components/tooltip/tooltip.js"
8
8
  import "@shoelace-style/shoelace/dist/components/progress-bar/progress-bar.js"
9
+ import "@shoelace-style/shoelace/dist/components/dialog/dialog.js"
10
+ import { registerIconLibrary } from "@shoelace-style/shoelace/dist/utilities/icon-library.js"
9
11
  import { setDefaultAnimation } from "@shoelace-style/shoelace/dist/utilities/animation-registry.js"
10
- export { setDefaultAnimation }
12
+ export { registerIconLibrary, setDefaultAnimation }
@@ -250,6 +250,7 @@ en:
250
250
  "Confirm new password": "Confirm new password"
251
251
  "Copy": "Copy"
252
252
  "Could not load Adobe Flash® Plugin!": "Could not load Adobe Flash® Plugin!"
253
+ "Create node on parent:": "Create node on parent:"
253
254
  "Currently locked pages": "Currently locked pages"
254
255
  "Default language has to be public": "Default language has to be public"
255
256
  "Delete image": "Delete image"
@@ -286,6 +287,7 @@ en:
286
287
  "New": "New"
287
288
  "New Element": "New element"
288
289
  "New page": "New page"
290
+ "No menu node for this page found": "No menu node for this page found"
289
291
  "No page links for this page found": "No page links for this page found"
290
292
  "New password": "New password"
291
293
  "New Tag": "New tag"
@@ -300,7 +302,6 @@ en:
300
302
  "Page deleted": "%{name} deleted"
301
303
  "Page saved": "%{name} saved"
302
304
  "Page cache flushed": "Page cache flushed"
303
- "Pages order saved": "Pages order saved"
304
305
  "Password": "Password"
305
306
  "Password reset": "Password reset"
306
307
  "Paste from clipboard": "Paste from clipboard"
@@ -411,6 +412,9 @@ en:
411
412
  delete_node: "Delete this menu node"
412
413
  delete_page: "Delete this page"
413
414
  delete_tag: "Delete tag"
415
+ search_page: "Search page"
416
+ search_node: "Search menu node"
417
+ search_tag: "Search tag"
414
418
  document: "File"
415
419
  download_csv: "Download CSV"
416
420
  download_file: "Download file '%{filename}'"
@@ -587,7 +591,12 @@ en:
587
591
  replace: replace
588
592
  replace_file: Replace file
589
593
  "Replaced Tag": "Tag '%{old_tag}' was replaced with '%{new_tag}'"
594
+ "%{resource_name} successfully %{action}": "%{resource_name} successfully %{action}."
590
595
  resources:
596
+ actions:
597
+ created: "created"
598
+ updated: "updated"
599
+ removed: "removed"
591
600
  relation_select:
592
601
  blank: "- none -"
593
602
  right: "right"
@@ -656,7 +665,6 @@ en:
656
665
  "Successfully updated": "Successfully updated"
657
666
  "Successfully removed": "Successfully removed"
658
667
  "Nothing found": "Nothing found."
659
- complete: "Abgeschlossen"
660
668
  "Update available": "Update available"
661
669
  "Update status unavailable": "Update status unavailable"
662
670
  "Uploading": "Uploading"
@@ -790,7 +798,7 @@ en:
790
798
  other: "Elements"
791
799
  alchemy/ingredients/headline:
792
800
  one: Headline
793
- other: Headline
801
+ other: Headlines
794
802
  alchemy/legacy_page_url:
795
803
  one: "Link"
796
804
  other: "Links"
@@ -809,6 +817,9 @@ en:
809
817
  alchemy/picture:
810
818
  one: Picture
811
819
  other: Pictures
820
+ alchemy/picture_description:
821
+ one: Picture Description
822
+ other: Picture Descriptions
812
823
  alchemy/user:
813
824
  one: User
814
825
  other: User
@@ -899,6 +910,8 @@ en:
899
910
  image_file_size: "Filesize"
900
911
  name: "Name"
901
912
  tag_list: Tags
913
+ alchemy/picture_description:
914
+ text: "Description"
902
915
  alchemy/site:
903
916
  name: "Name"
904
917
  host: "Primary Host"
data/config/routes.rb CHANGED
@@ -22,7 +22,6 @@ Alchemy::Engine.routes.draw do
22
22
  resources :pages do
23
23
  resources :elements
24
24
  collection do
25
- post :order
26
25
  post :flush
27
26
  post :copy_language_tree
28
27
  get :create_language
@@ -50,7 +49,7 @@ Alchemy::Engine.routes.draw do
50
49
  end
51
50
  end
52
51
 
53
- resources :layoutpages, only: [:index, :edit, :update]
52
+ resources :layoutpages, only: [:index, :edit]
54
53
 
55
54
  resources :pictures, except: [:new] do
56
55
  collection do
@@ -65,6 +64,8 @@ Alchemy::Engine.routes.draw do
65
64
  end
66
65
  end
67
66
 
67
+ resources :picture_descriptions, only: [:index, :edit]
68
+
68
69
  resources :attachments, except: [:new] do
69
70
  member do
70
71
  get :download
@@ -116,6 +117,7 @@ Alchemy::Engine.routes.draw do
116
117
  resources :elements, only: :show
117
118
 
118
119
  namespace :api, defaults: {format: "json"} do
120
+ resources :attachments, only: [:index]
119
121
  resources :ingredients, only: [:index]
120
122
 
121
123
  resources :elements, only: [:index, :show]
@@ -0,0 +1,11 @@
1
+ class CreateAlchemyPictureDescriptions < ActiveRecord::Migration[7.0]
2
+ def change
3
+ create_table :alchemy_picture_descriptions do |t|
4
+ t.belongs_to :picture, null: false, foreign_key: {to_table: :alchemy_pictures}
5
+ t.belongs_to :language, null: false, foreign_key: {to_table: :alchemy_languages}
6
+ t.text :text
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -28,7 +28,7 @@ module Alchemy
28
28
  # matches the current I18n.locale then the prefix os omitted.
29
29
  # Also, if only one published language exists.
30
30
  #
31
- def prefix_locale?(locale = Language.current&.code)
31
+ def prefix_locale?(locale = Current.language&.code)
32
32
  return false unless locale
33
33
 
34
34
  multi_language? && locale != ::I18n.default_locale.to_s
@@ -56,7 +56,7 @@ module Alchemy
56
56
  # can be scoped against it.
57
57
  #
58
58
  def set_current_alchemy_site
59
- Site.current = current_alchemy_site
59
+ Current.site = current_alchemy_site
60
60
  end
61
61
 
62
62
  # Sets the current language for Alchemy.
@@ -83,11 +83,11 @@ module Alchemy
83
83
  Language.find_by_code(id_or_code)
84
84
  end
85
85
 
86
- # Stores language in +Language.current+
86
+ # Stores language in +Current.language+
87
87
  #
88
88
  def store_current_alchemy_language(language)
89
89
  if language&.id
90
- Language.current = language
90
+ Current.language = language
91
91
  end
92
92
  end
93
93
  end
@@ -42,6 +42,16 @@ module Alchemy
42
42
  all.detect { |a| a["name"] == name }
43
43
  end
44
44
 
45
+ def reset!
46
+ @definitions = nil
47
+ end
48
+
49
+ # The absolute +elements.yml+ file path
50
+ # @return [Pathname]
51
+ def definitions_file_path
52
+ Rails.root.join("config", "alchemy", "elements.yml")
53
+ end
54
+
45
55
  private
46
56
 
47
57
  # Reads the element definitions from +config/alchemy/elements.yml+.
@@ -58,12 +68,6 @@ module Alchemy
58
68
  "Could not find elements.yml file! Please run `rails generate alchemy:install`"
59
69
  end
60
70
  end
61
-
62
- # Returns the elements.yml file path
63
- #
64
- def definitions_file_path
65
- Rails.root.join "config/alchemy/elements.yml"
66
- end
67
71
  end
68
72
  end
69
73
  end
@@ -35,6 +35,23 @@ module Alchemy
35
35
  end
36
36
  end
37
37
 
38
+ initializer "alchemy.watch_definition_changes" do |app|
39
+ elements_reloader = app.config.file_watcher.new([ElementDefinition.definitions_file_path]) do
40
+ Rails.logger.info "[#{engine_name}] Reloading Element Definitions."
41
+ ElementDefinition.reset!
42
+ end
43
+ page_layouts_reloader = app.config.file_watcher.new([PageLayout.layouts_file_path]) do
44
+ Rails.logger.info "[#{engine_name}] Reloading Page Layouts."
45
+ PageLayout.reset!
46
+ end
47
+ [elements_reloader, page_layouts_reloader].each do |reloader|
48
+ app.reloaders << reloader
49
+ app.reloader.to_run do
50
+ reloader.execute_if_updated
51
+ end
52
+ end
53
+ end
54
+
38
55
  # Gutentag downcases all tags before save
39
56
  # and Gutentag validations are not case sensitive.
40
57
  # But we support having tags with uppercase characters.
@@ -47,8 +64,8 @@ module Alchemy
47
64
  initializer "alchemy.ransack" do
48
65
  Ransack.configure do |config|
49
66
  config.custom_arrows = {
50
- up_arrow: '<i class="ri-1x ri-arrow-up-line"></i>',
51
- down_arrow: '<i class="ri-1x ri-arrow-down-line"></i>'
67
+ up_arrow: '<alchemy-icon name="arrow-up" size="1x"></alchemy-icon>',
68
+ down_arrow: '<alchemy-icon name="arrow-down" size="1x"></alchemy-icon>'
52
69
  }
53
70
  end
54
71
  end
@@ -41,6 +41,16 @@ module Alchemy
41
41
  all.detect { |a| a["name"].casecmp(name).zero? }
42
42
  end
43
43
 
44
+ def reset!
45
+ @definitions = nil
46
+ end
47
+
48
+ # The absolute +page_layouts.yml+ file path
49
+ # @return [Pathname]
50
+ def layouts_file_path
51
+ Rails.root.join("config", "alchemy", "page_layouts.yml")
52
+ end
53
+
44
54
  private
45
55
 
46
56
  # Reads the layout definitions from +config/alchemy/page_layouts.yml+.
@@ -58,12 +68,6 @@ module Alchemy
58
68
  raise LoadError, "Could not find page_layouts.yml file! Please run `rails generate alchemy:install`"
59
69
  end
60
70
  end
61
-
62
- # Returns the page_layouts.yml file path
63
- #
64
- def layouts_file_path
65
- Rails.root.join "config/alchemy/page_layouts.yml"
66
- end
67
71
  end
68
72
  end
69
73
  end