alchemy_cms 7.1.7 → 7.2.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (313) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +148 -0
  3. data/Gemfile +2 -4
  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/config/alchemy_manifest.js +0 -1
  9. data/app/assets/javascripts/alchemy/admin.js +0 -9
  10. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +5 -15
  11. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +5 -4
  12. data/app/assets/javascripts/alchemy/templates/index.js +0 -1
  13. data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
  14. data/app/assets/javascripts/alchemy/templates/page_folder.hbs +1 -1
  15. data/app/assets/javascripts/tinymce/plugins/alchemy_link/plugin.min.js +20 -7
  16. data/app/assets/stylesheets/alchemy/_custom-properties.scss +12 -0
  17. data/app/assets/stylesheets/alchemy/_mixins.scss +10 -6
  18. data/app/assets/stylesheets/alchemy/_variables.scss +3 -0
  19. data/app/assets/stylesheets/alchemy/admin.scss +2 -2
  20. data/app/assets/stylesheets/alchemy/archive.scss +4 -3
  21. data/app/assets/stylesheets/alchemy/attachment-select.scss +19 -0
  22. data/app/assets/stylesheets/alchemy/base.scss +31 -18
  23. data/app/assets/stylesheets/alchemy/buttons.scss +3 -4
  24. data/app/assets/stylesheets/alchemy/dashboard.scss +1 -1
  25. data/app/assets/stylesheets/alchemy/dialogs.scss +2 -5
  26. data/app/assets/stylesheets/alchemy/elements.scss +72 -46
  27. data/app/assets/stylesheets/alchemy/flash.scss +20 -70
  28. data/app/assets/stylesheets/alchemy/forms.scss +41 -36
  29. data/app/assets/stylesheets/alchemy/frame.scss +12 -3
  30. data/app/assets/stylesheets/alchemy/icons.scss +34 -2
  31. data/app/assets/stylesheets/alchemy/image_library.scss +18 -9
  32. data/app/assets/stylesheets/alchemy/{filter_field.scss → list_filter.scss} +8 -7
  33. data/app/assets/stylesheets/alchemy/lists.scss +1 -1
  34. data/app/assets/stylesheets/alchemy/navigation.scss +9 -12
  35. data/app/assets/stylesheets/alchemy/node-select.scss +10 -2
  36. data/app/assets/stylesheets/alchemy/nodes.scss +15 -13
  37. data/app/assets/stylesheets/alchemy/notices.scss +56 -39
  38. data/app/assets/stylesheets/alchemy/page-select.scss +1 -4
  39. data/app/assets/stylesheets/alchemy/pagination.scss +11 -1
  40. data/app/assets/stylesheets/alchemy/preview_window.scss +8 -4
  41. data/app/assets/stylesheets/alchemy/search.scss +4 -4
  42. data/app/assets/stylesheets/alchemy/selects.scss +13 -7
  43. data/app/assets/stylesheets/alchemy/shoelace.scss +33 -2
  44. data/app/assets/stylesheets/alchemy/sitemap.scss +155 -159
  45. data/app/assets/stylesheets/alchemy/tables.scss +49 -12
  46. data/app/assets/stylesheets/alchemy/tags.scss +17 -11
  47. data/app/assets/stylesheets/alchemy/toolbar.scss +2 -2
  48. data/app/assets/stylesheets/alchemy/typography.scss +41 -22
  49. data/app/assets/stylesheets/alchemy/upload.scss +5 -4
  50. data/app/components/alchemy/admin/attachment_select.rb +39 -0
  51. data/app/components/alchemy/admin/icon.rb +72 -0
  52. data/app/components/alchemy/admin/link_dialog/anchor_tab.rb +41 -0
  53. data/app/components/alchemy/admin/link_dialog/base_tab.rb +75 -0
  54. data/app/components/alchemy/admin/link_dialog/external_tab.rb +42 -0
  55. data/app/components/alchemy/admin/link_dialog/file_tab.rb +45 -0
  56. data/app/components/alchemy/admin/link_dialog/internal_tab.rb +84 -0
  57. data/app/components/alchemy/admin/link_dialog/tabs.rb +33 -0
  58. data/app/components/alchemy/admin/list_filter.rb +42 -0
  59. data/app/components/alchemy/admin/message.rb +19 -0
  60. data/app/components/alchemy/admin/tags_autocomplete.rb +25 -0
  61. data/app/components/alchemy/admin/toolbar_button.rb +111 -0
  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 +1 -1
  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 +1 -1
  69. data/app/controllers/alchemy/admin/legacy_page_urls_controller.rb +12 -4
  70. data/app/controllers/alchemy/admin/nodes_controller.rb +26 -0
  71. data/app/controllers/alchemy/admin/pages_controller.rb +11 -78
  72. data/app/controllers/alchemy/admin/picture_descriptions_controller.rb +15 -0
  73. data/app/controllers/alchemy/admin/pictures_controller.rb +18 -1
  74. data/app/controllers/alchemy/admin/resources_controller.rb +15 -10
  75. data/app/controllers/alchemy/api/attachments_controller.rb +44 -0
  76. data/app/controllers/alchemy/api/nodes_controller.rb +1 -1
  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 +2 -2
  80. data/app/controllers/alchemy/pages_controller.rb +8 -6
  81. data/app/controllers/concerns/alchemy/admin/current_language.rb +1 -1
  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/action.js +41 -0
  91. data/app/javascript/alchemy_admin/components/attachment_select.js +24 -0
  92. data/app/javascript/alchemy_admin/components/button.js +3 -0
  93. data/app/javascript/alchemy_admin/components/clipboard_button.js +3 -2
  94. data/app/javascript/alchemy_admin/components/dialog_link.js +10 -7
  95. data/app/javascript/alchemy_admin/components/dom_id_select.js +69 -0
  96. data/app/javascript/alchemy_admin/components/element_editor/delete_element_button.js +42 -0
  97. data/app/javascript/alchemy_admin/components/element_editor/publish_element_button.js +4 -2
  98. data/app/javascript/alchemy_admin/components/element_editor.js +21 -13
  99. data/app/javascript/alchemy_admin/components/elements_window.js +87 -0
  100. data/app/javascript/alchemy_admin/components/growl.js +13 -0
  101. data/app/javascript/alchemy_admin/components/icon.js +51 -0
  102. data/app/javascript/alchemy_admin/components/index.js +25 -0
  103. data/app/javascript/alchemy_admin/components/ingredient_group.js +6 -0
  104. data/app/javascript/alchemy_admin/components/link_buttons/link_button.js +21 -11
  105. data/app/javascript/alchemy_admin/components/link_buttons/unlink_button.js +2 -1
  106. data/app/javascript/alchemy_admin/components/link_buttons.js +1 -0
  107. data/app/javascript/alchemy_admin/components/list_filter.js +68 -0
  108. data/app/javascript/alchemy_admin/components/message.js +69 -0
  109. data/app/javascript/alchemy_admin/components/node_select.js +4 -2
  110. data/app/javascript/alchemy_admin/components/overlay.js +6 -6
  111. data/app/javascript/alchemy_admin/components/page_select.js +3 -7
  112. data/app/javascript/alchemy_admin/components/preview_window.js +121 -0
  113. data/app/javascript/alchemy_admin/components/remote_select.js +4 -1
  114. data/app/javascript/alchemy_admin/components/select.js +37 -1
  115. data/app/javascript/alchemy_admin/components/tags_autocomplete.js +57 -0
  116. data/app/javascript/alchemy_admin/components/uploader/file_upload.js +4 -3
  117. data/app/javascript/alchemy_admin/components/uploader/progress.js +1 -1
  118. data/app/javascript/alchemy_admin/confirm_dialog.js +133 -0
  119. data/app/javascript/alchemy_admin/dirty.js +19 -14
  120. data/app/javascript/alchemy_admin/fixed_elements.js +24 -0
  121. data/app/javascript/alchemy_admin/growler.js +15 -0
  122. data/app/javascript/alchemy_admin/gui.js +2 -4
  123. data/app/javascript/alchemy_admin/hotkeys.js +60 -0
  124. data/app/javascript/alchemy_admin/image_loader.js +2 -2
  125. data/app/javascript/alchemy_admin/ingredient_anchor_link.js +2 -3
  126. data/app/javascript/alchemy_admin/initializer.js +1 -8
  127. data/app/javascript/alchemy_admin/link_dialog.js +131 -0
  128. data/app/javascript/alchemy_admin/locales/en.js +3 -0
  129. data/app/javascript/alchemy_admin/node_tree.js +4 -3
  130. data/app/javascript/alchemy_admin/page_sorter.js +23 -14
  131. data/app/javascript/alchemy_admin/picture_editors.js +3 -2
  132. data/app/javascript/alchemy_admin/shoelace_theme.js +60 -0
  133. data/app/javascript/alchemy_admin/sitemap.js +9 -3
  134. data/app/javascript/alchemy_admin/sortable_elements.js +4 -6
  135. data/app/javascript/alchemy_admin.js +18 -44
  136. data/app/models/alchemy/current.rb +26 -0
  137. data/app/models/alchemy/element.rb +1 -1
  138. data/app/models/alchemy/ingredients/headline.rb +8 -1
  139. data/app/models/alchemy/ingredients/picture.rb +6 -0
  140. data/app/models/alchemy/language.rb +8 -6
  141. data/app/models/alchemy/node.rb +2 -2
  142. data/app/models/alchemy/page/page_elements.rb +8 -8
  143. data/app/models/alchemy/page/page_layouts.rb +3 -3
  144. data/app/models/alchemy/page/page_natures.rb +13 -9
  145. data/app/models/alchemy/page/page_scopes.rb +2 -2
  146. data/app/models/alchemy/page/publisher.rb +1 -0
  147. data/app/models/alchemy/page.rb +13 -28
  148. data/app/models/alchemy/picture.rb +8 -0
  149. data/app/models/alchemy/picture_description.rb +8 -0
  150. data/app/models/alchemy/picture_variant.rb +1 -1
  151. data/app/models/alchemy/site.rb +10 -7
  152. data/app/serializers/alchemy/attachment_serializer.rb +8 -0
  153. data/app/serializers/alchemy/page_node_serializer.rb +9 -0
  154. data/app/views/alchemy/_menubar.html.erb +127 -14
  155. data/app/views/alchemy/_preview_mode_code.html.erb +1 -1
  156. data/app/views/alchemy/admin/attachments/_tag_list.html.erb +2 -2
  157. data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +0 -1
  158. data/app/views/alchemy/admin/attachments/edit.html.erb +3 -4
  159. data/app/views/alchemy/admin/clipboard/clear.js.erb +1 -1
  160. data/app/views/alchemy/admin/clipboard/index.html.erb +1 -1
  161. data/app/views/alchemy/admin/clipboard/insert.js.erb +1 -1
  162. data/app/views/alchemy/admin/clipboard/remove.js.erb +1 -1
  163. data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
  164. data/app/views/alchemy/admin/dashboard/_sites.html.erb +1 -1
  165. data/app/views/alchemy/admin/dashboard/help.html.erb +48 -12
  166. data/app/views/alchemy/admin/dashboard/index.html.erb +1 -1
  167. data/app/views/alchemy/admin/dashboard/info.html.erb +5 -8
  168. data/app/views/alchemy/admin/elements/_add_nested_element_form.html.erb +1 -1
  169. data/app/views/alchemy/admin/elements/_element.html.erb +5 -5
  170. data/app/views/alchemy/admin/elements/_footer.html.erb +1 -1
  171. data/app/views/alchemy/admin/elements/_header.html.erb +6 -2
  172. data/app/views/alchemy/admin/elements/_toolbar.html.erb +8 -6
  173. data/app/views/alchemy/admin/elements/create.js.erb +0 -5
  174. data/app/views/alchemy/admin/elements/index.html.erb +70 -34
  175. data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +2 -2
  176. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +4 -5
  177. data/app/views/alchemy/admin/ingredients/update.turbo_stream.erb +5 -0
  178. data/app/views/alchemy/admin/languages/_language.html.erb +1 -1
  179. data/app/views/alchemy/admin/languages/index.html.erb +2 -2
  180. data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +18 -18
  181. data/app/views/alchemy/admin/layoutpages/edit.html.erb +3 -4
  182. data/app/views/alchemy/admin/layoutpages/index.html.erb +2 -2
  183. data/app/views/alchemy/admin/legacy_page_urls/_legacy_page_url.html.erb +10 -11
  184. data/app/views/alchemy/admin/legacy_page_urls/_new.html.erb +15 -17
  185. data/app/views/alchemy/admin/legacy_page_urls/_table.html.erb +16 -0
  186. data/app/views/alchemy/admin/legacy_page_urls/_update.turbo_stream.erb +12 -0
  187. data/app/views/alchemy/admin/legacy_page_urls/create.turbo_stream.erb +8 -0
  188. data/app/views/alchemy/admin/legacy_page_urls/destroy.turbo_stream.erb +1 -0
  189. data/app/views/alchemy/admin/legacy_page_urls/edit.html.erb +27 -0
  190. data/app/views/alchemy/admin/legacy_page_urls/show.html.erb +1 -0
  191. data/app/views/alchemy/admin/legacy_page_urls/update.turbo_stream.erb +1 -0
  192. data/app/views/alchemy/admin/nodes/_form.html.erb +12 -11
  193. data/app/views/alchemy/admin/nodes/_label.html.erb +1 -0
  194. data/app/views/alchemy/admin/nodes/_node.html.erb +19 -19
  195. data/app/views/alchemy/admin/nodes/_page_nodes.html.erb +49 -0
  196. data/app/views/alchemy/admin/nodes/_update.turbo_stream.erb +9 -0
  197. data/app/views/alchemy/admin/nodes/create.turbo_stream.erb +1 -0
  198. data/app/views/alchemy/admin/nodes/destroy.turbo_stream.erb +1 -0
  199. data/app/views/alchemy/admin/nodes/index.html.erb +3 -3
  200. data/app/views/alchemy/admin/pages/_form.html.erb +3 -4
  201. data/app/views/alchemy/admin/pages/_legacy_urls.html.erb +4 -15
  202. data/app/views/alchemy/admin/pages/_page.html.erb +39 -39
  203. data/app/views/alchemy/admin/pages/_table_row.html.erb +3 -3
  204. data/app/views/alchemy/admin/pages/_toolbar.html.erb +2 -2
  205. data/app/views/alchemy/admin/pages/configure.html.erb +6 -0
  206. data/app/views/alchemy/admin/pages/edit.html.erb +15 -62
  207. data/app/views/alchemy/admin/pages/unlock.js.erb +2 -2
  208. data/app/views/alchemy/admin/partials/_autocomplete_tag_list.html.erb +3 -1
  209. data/app/views/alchemy/admin/partials/_flash_notices.html.erb +4 -2
  210. data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +1 -1
  211. data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +5 -2
  212. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -2
  213. data/app/views/alchemy/admin/partials/_search_form.html.erb +2 -2
  214. data/app/views/alchemy/admin/partials/_site_select.html.erb +1 -1
  215. data/app/views/alchemy/admin/picture_descriptions/_form.html.erb +11 -0
  216. data/app/views/alchemy/admin/picture_descriptions/edit.html.erb +6 -0
  217. data/app/views/alchemy/admin/pictures/_form.html.erb +4 -3
  218. data/app/views/alchemy/admin/pictures/_infos.html.erb +1 -1
  219. data/app/views/alchemy/admin/pictures/_picture_description_field.html.erb +29 -0
  220. data/app/views/alchemy/admin/pictures/_tag_list.html.erb +2 -2
  221. data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +0 -2
  222. data/app/views/alchemy/admin/pictures/edit_multiple.html.erb +3 -3
  223. data/app/views/alchemy/admin/pictures/show.html.erb +3 -3
  224. data/app/views/alchemy/admin/resources/_form.html.erb +3 -4
  225. data/app/views/alchemy/admin/resources/_tag_list.html.erb +2 -2
  226. data/app/views/alchemy/admin/resources/index.html.erb +2 -2
  227. data/app/views/alchemy/admin/sites/index.html.erb +1 -1
  228. data/app/views/alchemy/admin/styleguide/index.html.erb +29 -24
  229. data/app/views/alchemy/admin/tags/_tag.html.erb +1 -1
  230. data/app/views/alchemy/admin/tags/edit.html.erb +1 -1
  231. data/app/views/alchemy/admin/tags/index.html.erb +1 -1
  232. data/app/views/alchemy/base/500.html.erb +7 -18
  233. data/app/views/alchemy/base/error_notice.html.erb +3 -1
  234. data/app/views/alchemy/ingredients/_boolean_editor.html.erb +1 -1
  235. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +1 -1
  236. data/app/views/alchemy/ingredients/_headline_editor.html.erb +13 -8
  237. data/app/views/alchemy/ingredients/_picture_editor.html.erb +1 -1
  238. data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +1 -1
  239. data/app/views/alchemy/language_links/_language.html.erb +1 -1
  240. data/app/views/kaminari/alchemy/_first_page.html.erb +2 -2
  241. data/app/views/kaminari/alchemy/_gap.html.erb +1 -1
  242. data/app/views/kaminari/alchemy/_last_page.html.erb +2 -2
  243. data/app/views/kaminari/alchemy/_next_page.html.erb +2 -2
  244. data/app/views/kaminari/alchemy/_prev_page.html.erb +2 -2
  245. data/app/views/layouts/alchemy/admin.html.erb +4 -5
  246. data/bundles/shoelace.js +3 -1
  247. data/config/locales/alchemy.en.yml +16 -3
  248. data/config/routes.rb +3 -1
  249. data/db/migrate/20240314105244_create_alchemy_picture_descriptions.rb +11 -0
  250. data/lib/alchemy/configuration_methods.rb +1 -1
  251. data/lib/alchemy/controller_actions.rb +3 -3
  252. data/lib/alchemy/element_definition.rb +10 -6
  253. data/lib/alchemy/engine.rb +29 -7
  254. data/lib/alchemy/page_layout.rb +10 -6
  255. data/lib/alchemy/permissions.rb +3 -2
  256. data/lib/alchemy/seeder.rb +2 -2
  257. data/lib/alchemy/test_support/capybara_helpers.rb +4 -0
  258. data/lib/alchemy/test_support/factories/language_factory.rb +1 -1
  259. data/lib/alchemy/test_support/shared_contexts.rb +8 -0
  260. data/lib/alchemy/test_support/shared_link_tab_examples.rb +57 -0
  261. data/lib/alchemy/tinymce.rb +2 -1
  262. data/lib/alchemy/version.rb +1 -1
  263. data/lib/alchemy.rb +72 -0
  264. data/lib/alchemy_cms.rb +0 -1
  265. data/lib/generators/alchemy/menus/templates/node.html.erb +2 -2
  266. data/lib/generators/alchemy/menus/templates/node.html.haml +2 -2
  267. data/lib/generators/alchemy/menus/templates/node.html.slim +2 -2
  268. data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
  269. data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
  270. data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
  271. data/lib/tasks/alchemy/sitemap.rake +97 -0
  272. data/package.json +8 -8
  273. data/vendor/assets/fonts/remixicon.symbol.svg +11 -0
  274. data/vendor/javascript/shoelace.min.js +333 -118
  275. data/vendor/javascript/sortable.min.js +1 -1
  276. data/vendor/javascript/tinymce.min.js +1 -1
  277. data/vendor/javascript/ungap-custom-elements.min.js +1 -1
  278. metadata +64 -57
  279. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +0 -85
  280. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +0 -107
  281. data/app/assets/javascripts/alchemy/alchemy.file_progress.js.coffee +0 -66
  282. data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +0 -45
  283. data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +0 -24
  284. data/app/assets/javascripts/alchemy/alchemy.hotkeys.js.coffee +0 -49
  285. data/app/assets/javascripts/alchemy/alchemy.initializer.js.coffee +0 -0
  286. data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +0 -230
  287. data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +0 -49
  288. data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +0 -82
  289. data/app/assets/javascripts/alchemy/alchemy.string_extension.js.coffee +0 -11
  290. data/app/assets/javascripts/alchemy/templates/page.hbs +0 -19
  291. data/app/assets/stylesheets/alchemy/menubar.scss +0 -81
  292. data/app/javascript/alchemy_admin/tags_autocomplete.js +0 -46
  293. data/app/javascript/menubar.js +0 -10
  294. data/app/models/alchemy/tree_node.rb +0 -7
  295. data/app/views/alchemy/admin/elements/destroy.js.erb +0 -8
  296. data/app/views/alchemy/admin/ingredients/update.js.erb +0 -7
  297. data/app/views/alchemy/admin/legacy_page_urls/_form.html.erb +0 -5
  298. data/app/views/alchemy/admin/legacy_page_urls/create.js.erb +0 -9
  299. data/app/views/alchemy/admin/legacy_page_urls/destroy.js.erb +0 -6
  300. data/app/views/alchemy/admin/legacy_page_urls/update.js.erb +0 -2
  301. data/app/views/alchemy/admin/pages/_anchor_link.html.erb +0 -22
  302. data/app/views/alchemy/admin/pages/_external_link.html.erb +0 -31
  303. data/app/views/alchemy/admin/pages/_file_link.html.erb +0 -31
  304. data/app/views/alchemy/admin/pages/_internal_link.html.erb +0 -35
  305. data/app/views/alchemy/admin/pages/link.html.erb +0 -26
  306. data/app/views/alchemy/admin/partials/_flash.html.erb +0 -4
  307. data/app/views/alchemy/admin/partials/_toolbar_button.html.erb +0 -29
  308. data/vendor/assets/fonts/remixicon.eot +0 -0
  309. data/vendor/assets/fonts/remixicon.svg +0 -7816
  310. data/vendor/assets/fonts/remixicon.ttf +0 -0
  311. data/vendor/assets/fonts/remixicon.woff +0 -0
  312. data/vendor/assets/fonts/remixicon.woff2 +0 -0
  313. data/vendor/assets/stylesheets/remixicon.scss +0 -10480
@@ -2,6 +2,8 @@
2
2
 
3
3
  <% content_for(:main_menu_style) { 'collapsed-menu' } %>
4
4
 
5
+ <% content_for(:alchemy_body_class) { 'elements-window-visible' } %>
6
+
5
7
  <% content_for(:toolbar) do %>
6
8
  <div class="toolbar_buttons">
7
9
  <div class="toolbar_button">
@@ -103,7 +105,7 @@
103
105
  <label><%= Alchemy.t(:preview_url) %></label>
104
106
  <%= select_tag 'preview_url',
105
107
  options_for_select(@preview_urls),
106
- class: 'large', is: 'alchemy-select' %>
108
+ class: 'large' %>
107
109
  </div>
108
110
  <% end %>
109
111
  <div class="toolbar_button">
@@ -127,12 +129,22 @@
127
129
  </div>
128
130
  <% end %>
129
131
 
130
- <% content_for :javascripts do %>
131
-
132
132
  <% content_for :javascript_includes do %>
133
133
  <meta name="turbo-cache-control" content="no-cache">
134
134
  <% end %>
135
135
 
136
+ <iframe
137
+ url="<%= @preview_url %>"
138
+ id="alchemy_preview_window"
139
+ is="alchemy-preview-window"
140
+ frameborder="0">
141
+ </iframe>
142
+
143
+ <%= turbo_frame_tag "alchemy_elements_window", src: alchemy.admin_elements_path(page_version_id: @page_version.id) do %>
144
+ <alchemy-spinner></alchemy-spinner>
145
+ <% end %>
146
+
147
+ <% content_for :javascripts do %>
136
148
  <script type="text/javascript" charset="utf-8">
137
149
  $(document).one('turbo:load', function() {
138
150
  $('#unlock_page_form, #publish_page_form').on('submit', function(event) {
@@ -142,65 +154,6 @@
142
154
  });
143
155
  Alchemy.PagePublicationFields();
144
156
  Alchemy.PageLeaveObserver();
145
- Alchemy.ElementsWindow.init('<%= alchemy.admin_elements_path(page_version_id: @page_version.id) %>', {
146
- texts: {
147
- title: '<%= Alchemy.t("Elements") %>',
148
- dirtyTitle: '<%= Alchemy.t("Warning!") %>',
149
- dirtyMessage: '<%= Alchemy.t(:element_dirty_close_window_notice) %>',
150
- ok_label: '<%= Alchemy.t("Yes") %>',
151
- cancel_label: '<%= Alchemy.t("No") %>',
152
- hideElements: '<%= Alchemy.t(:hide_elements) %>',
153
- showElements: '<%= Alchemy.t(:show_elements) %>'
154
- },
155
- toolbarButtons: [
156
- {
157
- label: '<%= Alchemy.t("New Element") %>',
158
- hotkey: 'alt+n',
159
- iconClass: 'add-line',
160
- align: 'start',
161
- onClick: function() {
162
- Alchemy.openDialog('<%= alchemy.new_admin_element_path(page_version_id: @page_version.id) %>', {
163
- title: '<%= Alchemy.t("New Element") %>',
164
- size: '320x125'
165
- });
166
- }
167
- },
168
- {
169
- label: '<%= Alchemy.t("Show clipboard") %>',
170
- iconClass: '<%= clipboard_empty?("elements") ? "clipboard-line" : "clipboard-fill" %>',
171
- buttonId: 'clipboard_button',
172
- onClick: function() {
173
- Alchemy.openDialog('<%= alchemy.admin_clipboard_path(remarkable_type: "elements") %>', {
174
- title :'<%= Alchemy.t("Clipboard") %>',
175
- size: '400x305'
176
- });
177
- }
178
- }
179
- ]
180
- }, function() {
181
- if (window.location.hash) {
182
- $(window.location.hash).trigger('FocusElementEditor.Alchemy');
183
- }
184
- });
185
-
186
- Alchemy.PreviewWindow.init(<%== @preview_urls.first %>);
187
-
188
- $('#preview_size').bind('open.selectBoxIt', function (e) {
189
- $('#top_menu').css('z-index', 5000);
190
- });
191
-
192
- $('#preview_size').bind('blur.selectBoxIt', function (e) {
193
- $('#top_menu').css('z-index', 30);
194
- });
195
-
196
- $('select#preview_size').on('change', function() {
197
- var width = this.value;
198
- if (width === 'auto') {
199
- Alchemy.PreviewWindow.currentWindow.css('width', '');
200
- } else {
201
- Alchemy.PreviewWindow.resize(width);
202
- }
203
- });
204
157
  });
205
158
 
206
159
  </script>
@@ -9,9 +9,9 @@
9
9
  }
10
10
  if (locked_page_icon) {
11
11
  if (locked_page_icon.parentElement.classList.contains("handle")) {
12
- locked_page_icon_content = '<span class="handle"><i class="icon ri-file-line ri-fw ri-xl"></i></span>'
12
+ locked_page_icon_content = '<span class="handle"><alchemy-icon name="file" size="xl"></alchemy-icon></span>'
13
13
  } else {
14
- locked_page_icon_content = '<i class="icon ri-file-line ri-fw ri-xl"></i>'
14
+ locked_page_icon_content = '<alchemy-icon name="file" size="xl"></alchemy-icon>'
15
15
  }
16
16
  locked_page_icon.outerHTML = locked_page_icon_content
17
17
  }
@@ -1 +1,3 @@
1
- <%= f.text_field :tag_list, value: f.object.tag_list.join(","), data: {autocomplete: alchemy.autocomplete_admin_tags_path} %>
1
+ <%= render Alchemy::Admin::TagsAutocomplete.new do %>
2
+ <%= f.text_field :tag_list, value: object.tag_list.join(",") %>
3
+ <% end %>
@@ -1,5 +1,7 @@
1
- <div id="flash_notices" style="display: <%= flash.keys.blank? ? "none" : "block" %>">
1
+ <div id="flash_notices">
2
2
  <% flash.keys.each do |flash_type| %>
3
- <%= render_flash_notice(flash[flash_type.to_sym], flash_type) if flash[flash_type.to_sym].present? %>
3
+ <% if flash[flash_type.to_sym].present? %>
4
+ <%= render Alchemy::Admin::Message.new(flash[flash_type.to_sym], type: flash_type, dismissable: true) %>
5
+ <% end %>
4
6
  <% end %>
5
7
  </div>
@@ -7,7 +7,7 @@
7
7
  'language_id',
8
8
  options_for_select(
9
9
  languages.map { |l| [l.name, l.id] },
10
- Alchemy::Language.current.id
10
+ Alchemy::Current.language.id
11
11
  ),
12
12
  class: 'short',
13
13
  is: 'alchemy-select',
@@ -6,9 +6,12 @@
6
6
  <% elsif navigation["inline_image"] %>
7
7
  <%== navigation["inline_image"] %>
8
8
  <% elsif navigation["icon"] %>
9
- <i class="icon ri-<%= navigation["icon"] %>"></i>
9
+ <%# Cannot use the render_icon helper, because the navigation["icon"] includes the style %>
10
+ <svg class="icon">
11
+ <use href="<%= asset_path("remixicon.symbol.svg") %>#ri-<%= navigation["icon"] %>" />
12
+ </svg>
10
13
  <% else %>
11
- <i class="icon ri-table-line"></i>
14
+ <%= render_icon :table %>
12
15
  <% end %>
13
16
  <label><%= Alchemy.t(navigation['name']) %></label>
14
17
  <% end %>
@@ -12,7 +12,7 @@
12
12
  placeholder: Alchemy.t(:search),
13
13
  class: 'search_input_field',
14
14
  id: nil %>
15
- <%= link_to render_icon(:times, size: 'xs'), url_for({
15
+ <%= link_to render_icon(:times, size: '1x'), url_for({
16
16
  action: 'index',
17
17
  form_field_id: @form_field_id,
18
18
  size: @size,
@@ -21,6 +21,6 @@
21
21
  remote: true,
22
22
  class: 'search_field_clear',
23
23
  title: Alchemy.t(:click_to_show_all),
24
- style: search_filter_params[:q].blank? ? 'display: none' : 'display: block' %>
24
+ style: search_filter_params[:q].blank? ? 'visibility: hidden' : 'visibility: visible' %>
25
25
  </div>
26
26
  <% end %>
@@ -11,11 +11,11 @@
11
11
  <% local_assigns.fetch(:additional_query_fields, []).each do |field| %>
12
12
  <%= f.hidden_field field, id: nil %>
13
13
  <% end %>
14
- <%= link_to render_icon(:times, size: 'xs'), url,
14
+ <%= link_to render_icon(:times, size: '1x'), url,
15
15
  class: 'search_field_clear',
16
16
  id: 'search_field_clear',
17
17
  title: Alchemy.t(:click_to_show_all),
18
- style: search_filter_params.fetch(:q, {}).fetch(resource_handler.search_field_name, '').present? ? 'display: block' : 'display: none' %>
18
+ style: search_filter_params.fetch(:q, {}).fetch(resource_handler.search_field_name, '').present? ? 'visibility: visible' : 'visibility: hidden' %>
19
19
 
20
20
  <% search_filter_params.fetch(:filter, []).each do |filter_param| %>
21
21
  <%= hidden_field_tag "filter[#{filter_param[0]}]", filter_param[1], id: nil %>
@@ -2,7 +2,7 @@
2
2
  <div class="toolbar_button">
3
3
  <sl-tooltip content="<%= Alchemy.t("Current site") %>">
4
4
  <%= select_tag 'change_site',
5
- options_for_select(sites_for_select, Alchemy::Site.current.id),
5
+ options_for_select(sites_for_select, Alchemy::Current.site.id),
6
6
  is: 'alchemy-select' %>
7
7
  </sl-tooltip>
8
8
  </div>
@@ -0,0 +1,11 @@
1
+ <% field_name_prefix = "picture[descriptions_attributes][#{picture_description_counter}]" %>
2
+
3
+ <% if picture_description.persisted? %>
4
+ <%= hidden_field field_name_prefix, :id, value: picture_description.id %>
5
+ <% else %>
6
+ <%= hidden_field field_name_prefix, :language_id, value: picture_description.language_id %>
7
+ <%= hidden_field field_name_prefix, :picture_id, value: picture_description.picture_id %>
8
+ <% end %>
9
+
10
+ <%= label field_name_prefix, :text, Alchemy::PictureDescription.human_attribute_name(:text), class: "control-label" %>
11
+ <%= text_area field_name_prefix, :text, value: picture_description.text, rows: 3 %>
@@ -0,0 +1,6 @@
1
+ <turbo-frame id="picture_descriptions">
2
+ <%= render "form", {
3
+ picture_description: @picture_description,
4
+ picture_description_counter: @picture.descriptions.index(@picture_description)
5
+ } %>
6
+ </turbo-frame>
@@ -1,10 +1,11 @@
1
1
  <%= alchemy_form_for [:admin, @picture] do |f| %>
2
2
  <%= f.input :name %>
3
- <div class="input tag_list">
3
+ <%= render "picture_description_field", f: f %>
4
+ <%= render Alchemy::Admin::TagsAutocomplete.new(additional_class: "input") do %>
4
5
  <%= f.label :tag_list %>
5
- <%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
6
+ <%= f.text_field :tag_list, value: f.object.tag_list.join(",") %>
6
7
  <small class="hint"><%= Alchemy.t('Please seperate the tags with commata') %></small>
7
- </div>
8
+ <% end %>
8
9
  <%= hidden_field_tag :q, search_filter_params[:q] %>
9
10
  <%= hidden_field_tag :size, @size %>
10
11
  <%= hidden_field_tag :tagged_with, search_filter_params[:tagged_with] %>
@@ -35,7 +35,7 @@
35
35
  <% page_link = link_to element.display_name_with_preview_text,
36
36
  edit_admin_page_path(page, anchor: "element_#{element.id}") %>
37
37
  <% ingredients = picture_ingredients.map { |p| Alchemy::IngredientEditor.new(p).translated_role }.to_sentence %>
38
- <%= render_icon('draggable', style: nil) %>
38
+ <%= render_icon('draggable', style: false) %>
39
39
  <p>
40
40
  <%== Alchemy.t(:pictures_in_page, page: page_link, pictures: ingredients) %>
41
41
  </p>
@@ -0,0 +1,29 @@
1
+ <div class="input">
2
+ <% if Alchemy::Language.published.many? %>
3
+ <label class="inline-label" style="float: right">
4
+ <%= Alchemy::Language.model_name.human %>
5
+ <%= select_tag :language_id, options_from_collection_for_select(
6
+ Alchemy::Language.published, :id, ->(l) { l.code.upcase },
7
+ selected: @picture_description.language_id,
8
+ ), data: {
9
+ url: alchemy.edit_admin_picture_description_url(id: "__ID__", picture_id: @picture)
10
+ } %>
11
+ </label>
12
+ <% end %>
13
+
14
+ <turbo-frame id="picture_descriptions">
15
+ <%= render "alchemy/admin/picture_descriptions/form",
16
+ picture_description_counter: @picture.descriptions.index(@picture_description),
17
+ picture_description: @picture_description %>
18
+ </turbo-frame>
19
+ </div>
20
+
21
+ <script type="module">
22
+ const select = document.querySelector("#language_id")
23
+
24
+ select.addEventListener("change", () => {
25
+ const url = new URL(select.dataset.url)
26
+ url.searchParams.set("language_id", select.value)
27
+ Turbo.visit(url, { frame: "picture_descriptions" })
28
+ })
29
+ </script>
@@ -1,12 +1,12 @@
1
1
  <% if Alchemy::Picture.tag_counts.any? %>
2
2
  <h3><%= Alchemy.t("Filter by tag") %></h3>
3
- <%= js_filter_field '.tag-list li' %>
3
+ <%= render Alchemy::Admin::ListFilter.new(".tag-list li") %>
4
4
  <ul>
5
5
  <%= render_tag_list('Alchemy::Picture') %>
6
6
  </ul>
7
7
  <% if search_filter_params[:tagged_with].present? %>
8
8
  <%= link_to(
9
- render_icon(:close) + Alchemy.t('Remove tag filter'),
9
+ render_icon(:close, size: '1x') + Alchemy.t('Remove tag filter'),
10
10
  url_for(search_filter_params.except(:tagged_with)),
11
11
  remote: request.xhr?,
12
12
  class: 'secondary button small with_icon'
@@ -2,6 +2,4 @@
2
2
  var dialog = Alchemy.currentDialog();
3
3
  dialog.dialog_body.html('<%= j render("archive_overlay") %>');
4
4
  Alchemy.ImageLoader('#assign_image_list');
5
- Alchemy.ListFilter(dialog.dialog_body);
6
5
  })();
7
-
@@ -17,11 +17,11 @@
17
17
  <%= text_field_tag :pictures_name %>
18
18
  </div>
19
19
 
20
- <div class="input tag_list">
20
+ <%= render Alchemy::Admin::TagsAutocomplete.new(additional_class: "input") do %>
21
21
  <%= label_tag :pictures_tag_list, Alchemy.t(:tags), class: 'control-label' %>
22
- <%= text_field_tag :pictures_tag_list, @tags, data: {autocomplete: alchemy.autocomplete_admin_tags_path} %>
22
+ <%= text_field_tag :pictures_tag_list, @tags %>
23
23
  <small class="hint"><%= Alchemy.t('Please seperate the tags with commata') %></small>
24
- </div>
24
+ <% end %>
25
25
 
26
26
  <div class="submit">
27
27
  <%= button_tag Alchemy.t(:save), name: nil, class: 'button' %>
@@ -14,7 +14,7 @@
14
14
  ),
15
15
  class: "previous-picture",
16
16
  remote: true do %>
17
- <i class="icon ri-arrow-left-s-line ri-fw"></i>
17
+ <%= render_icon "arrow-left-wide", size: "xl" %>
18
18
  <% end %>
19
19
  <% end %>
20
20
  <% if @next %>
@@ -28,7 +28,7 @@
28
28
  ),
29
29
  class: "next-picture",
30
30
  remote: true do %>
31
- <i class="icon ri-arrow-right-s-line ri-fw"></i>
31
+ <%= render_icon "arrow-right-wide", size: "xl" %>
32
32
  <% end %>
33
33
  <% end %>
34
34
  </div>
@@ -39,5 +39,5 @@
39
39
  </div>
40
40
 
41
41
  <div class="picture-overlay-handle">
42
- <i class="icon ri-contract-right-line ri-fw"></i>
42
+ <%= render_icon "contract-right" %>
43
43
  </div>
@@ -18,10 +18,9 @@
18
18
  <% end %>
19
19
  <% end %>
20
20
  <% if f.object.respond_to?(:tag_list) %>
21
- <div class="input string autocomplete_tag_list">
22
- <%= f.label :tag_list %>
23
- <%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
24
- </div>
21
+ <%= render Alchemy::Admin::TagsAutocomplete.new do %>
22
+ <%= f.input :tag_list, input_html: { value: f.object.tag_list.join(",") } %>
23
+ <% end %>
25
24
  <% end %>
26
25
  <%= f.submit Alchemy.t(:save) %>
27
26
  <% end %>
@@ -1,12 +1,12 @@
1
1
  <div class="tag-list<%= ' with_filter_bar' if resource_has_filters %><%= ' filtered' if search_filter_params[:tagged_with].present? %>">
2
2
  <h3><%= Alchemy.t("Filter by tag") %></h3>
3
- <%= js_filter_field '.tag-list li' %>
3
+ <%= render Alchemy::Admin::ListFilter.new(".tag-list li") %>
4
4
  <ul>
5
5
  <%= render_tag_list(resource_model.name) %>
6
6
  </ul>
7
7
  <% if search_filter_params[:tagged_with].present? %>
8
8
  <%= link_to(
9
- render_icon(:times, size: 'xs') + Alchemy.t('Remove tag filter'),
9
+ render_icon(:times, size: '1x') + Alchemy.t('Remove tag filter'),
10
10
  url_for(search_filter_params.except(:tagged_with)),
11
11
  remote: request.xhr?,
12
12
  class: 'secondary button small with_icon'
@@ -2,7 +2,7 @@
2
2
 
3
3
  <% content_for(:toolbar) do %>
4
4
  <div class="toolbar_buttons">
5
- <%= toolbar_button(
5
+ <%= render Alchemy::Admin::ToolbarButton.new(
6
6
  icon: "add",
7
7
  label: label_title,
8
8
  url: new_resource_path,
@@ -15,7 +15,7 @@
15
15
  },
16
16
  if_permitted_to: [:create, resource_model]
17
17
  ) %>
18
- <%= toolbar_button(
18
+ <%= render Alchemy::Admin::ToolbarButton.new(
19
19
  icon: :download,
20
20
  url: resource_url_proxy.url_for(action: 'index', format: 'csv', q: search_filter_params[:q], sort: params[:sort]),
21
21
  label: Alchemy.t(:download_csv),
@@ -2,7 +2,7 @@
2
2
 
3
3
  <% content_for :toolbar do %>
4
4
  <div class="toolbar_buttons">
5
- <%= toolbar_button(
5
+ <%= render Alchemy::Admin::ToolbarButton.new(
6
6
  icon: :plus,
7
7
  label: label_title,
8
8
  url: new_resource_path,
@@ -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 %>
@@ -12,6 +12,6 @@
12
12
  ) %>
13
13
  <% end %>
14
14
  <label for="<%= datetime_editor.form_field_id %>" class="ingredient-date--label">
15
- <i class="icon ri-calendar-line ri-fw"></i>
15
+ <%= render_icon "calendar" %>
16
16
  </label>
17
17
  <% end %>