alchemy_cms 5.3.7 → 6.0.0.b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +6 -14
- data/.gitignore +1 -1
- data/.hound.yml +1 -1
- data/.rubocop.yml +46 -4
- data/CHANGELOG.md +80 -84
- data/Gemfile +4 -2
- data/README.md +5 -2
- data/Rakefile +0 -18
- data/alchemy_cms.gemspec +78 -65
- data/app/assets/javascripts/alchemy/admin.js +2 -2
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -30
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +2 -7
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +41 -30
- data/app/assets/javascripts/alchemy/alchemy.page_sorter.js +24 -0
- data/app/assets/javascripts/alchemy/alchemy.sitemap.js.coffee +119 -0
- data/app/assets/javascripts/alchemy/page_select.js +8 -13
- data/app/assets/javascripts/alchemy/templates/index.js +0 -1
- data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
- data/app/assets/javascripts/alchemy/templates/page.hbs +7 -17
- data/app/assets/stylesheets/alchemy/admin.scss +1 -1
- data/app/assets/stylesheets/alchemy/archive.scss +4 -8
- data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
- data/app/assets/stylesheets/alchemy/elements.scss +73 -61
- data/app/assets/stylesheets/alchemy/images.scss +8 -0
- data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
- data/app/assets/stylesheets/alchemy/page-select.scss +5 -29
- data/app/assets/stylesheets/alchemy/selects.scss +4 -0
- data/app/assets/stylesheets/alchemy/sitemap.scss +7 -9
- data/app/assets/stylesheets/tinymce/skins/alchemy/content.min.css.scss +3 -3
- data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +7 -7
- data/app/controllers/alchemy/admin/attachments_controller.rb +6 -2
- data/app/controllers/alchemy/admin/base_controller.rb +8 -16
- data/app/controllers/alchemy/admin/elements_controller.rb +58 -34
- data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
- data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
- data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
- data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
- data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +19 -23
- data/app/controllers/alchemy/admin/pictures_controller.rb +35 -9
- data/app/controllers/alchemy/api/elements_controller.rb +10 -5
- data/app/controllers/alchemy/api/nodes_controller.rb +0 -1
- data/app/controllers/alchemy/api/pages_controller.rb +3 -15
- data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
- data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
- data/app/decorators/alchemy/element_editor.rb +23 -1
- data/app/decorators/alchemy/ingredient_editor.rb +154 -0
- data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
- data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
- data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
- data/app/helpers/alchemy/elements_block_helper.rb +22 -7
- data/app/helpers/alchemy/elements_helper.rb +14 -7
- data/app/helpers/alchemy/pages_helper.rb +3 -11
- data/app/jobs/alchemy/base_job.rb +11 -0
- data/app/jobs/alchemy/publish_page_job.rb +11 -0
- data/app/models/alchemy/attachment.rb +1 -1
- data/app/models/alchemy/content/factory.rb +23 -27
- data/app/models/alchemy/content.rb +1 -6
- data/app/models/alchemy/element/definitions.rb +29 -27
- data/app/models/alchemy/element/element_contents.rb +131 -122
- data/app/models/alchemy/element/element_essences.rb +100 -98
- data/app/models/alchemy/element/element_ingredients.rb +176 -0
- data/app/models/alchemy/element/presenters.rb +89 -87
- data/app/models/alchemy/element.rb +40 -73
- data/app/models/alchemy/elements_repository.rb +126 -0
- data/app/models/alchemy/essence_audio.rb +12 -0
- data/app/models/alchemy/essence_headline.rb +40 -0
- data/app/models/alchemy/essence_picture.rb +4 -116
- data/app/models/alchemy/essence_richtext.rb +12 -0
- data/app/models/alchemy/essence_video.rb +12 -0
- data/app/models/alchemy/image_cropper_settings.rb +87 -0
- data/app/models/alchemy/ingredient.rb +219 -0
- data/app/models/alchemy/ingredient_validator.rb +97 -0
- data/app/models/alchemy/ingredients/audio.rb +29 -0
- data/app/models/alchemy/ingredients/boolean.rb +21 -0
- data/app/models/alchemy/ingredients/datetime.rb +20 -0
- data/app/models/alchemy/ingredients/file.rb +30 -0
- data/app/models/alchemy/ingredients/headline.rb +42 -0
- data/app/models/alchemy/ingredients/html.rb +19 -0
- data/app/models/alchemy/ingredients/link.rb +16 -0
- data/app/models/alchemy/ingredients/node.rb +23 -0
- data/app/models/alchemy/ingredients/page.rb +23 -0
- data/app/models/alchemy/ingredients/picture.rb +41 -0
- data/app/models/alchemy/ingredients/richtext.rb +57 -0
- data/app/models/alchemy/ingredients/select.rb +10 -0
- data/app/models/alchemy/ingredients/text.rb +17 -0
- data/app/models/alchemy/ingredients/video.rb +33 -0
- data/app/models/alchemy/language.rb +0 -11
- data/app/models/alchemy/node.rb +1 -1
- data/app/models/alchemy/page/fixed_attributes.rb +53 -51
- data/app/models/alchemy/page/page_elements.rb +186 -205
- data/app/models/alchemy/page/page_naming.rb +66 -64
- data/app/models/alchemy/page/page_natures.rb +139 -142
- data/app/models/alchemy/page/page_scopes.rb +113 -102
- data/app/models/alchemy/page/publisher.rb +50 -0
- data/app/models/alchemy/page/url_path.rb +1 -1
- data/app/models/alchemy/page.rb +69 -42
- data/app/models/alchemy/page_version.rb +58 -0
- data/app/models/alchemy/picture/calculations.rb +2 -8
- data/app/models/alchemy/picture/preprocessor.rb +2 -0
- data/app/models/alchemy/picture/transformations.rb +23 -95
- data/app/models/alchemy/picture.rb +5 -3
- data/app/models/alchemy/picture_variant.rb +1 -3
- data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
- data/app/models/concerns/alchemy/touch_elements.rb +2 -2
- data/app/presenters/alchemy/picture_view.rb +88 -0
- data/app/serializers/alchemy/element_serializer.rb +5 -0
- data/app/serializers/alchemy/page_serializer.rb +1 -7
- data/app/serializers/alchemy/page_tree_serializer.rb +6 -5
- data/app/services/alchemy/delete_elements.rb +44 -0
- data/app/services/alchemy/duplicate_element.rb +56 -0
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +1 -2
- data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
- data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
- data/app/views/alchemy/admin/crop.html.erb +36 -0
- data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
- data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
- data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
- data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +1 -3
- data/app/views/alchemy/admin/elements/new.html.erb +3 -3
- data/app/views/alchemy/admin/elements/order.js.erb +0 -17
- data/app/views/alchemy/admin/elements/update.js.erb +3 -2
- data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
- data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
- data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
- data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
- data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
- data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
- data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
- data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_form.html.erb +0 -25
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_new_page_form.html.erb +5 -16
- data/app/views/alchemy/admin/pages/_page.html.erb +133 -111
- data/app/views/alchemy/admin/pages/_sitemap.html.erb +16 -10
- data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
- data/app/views/alchemy/admin/pages/_toolbar.html.erb +12 -0
- data/app/views/alchemy/admin/pages/edit.html.erb +37 -25
- data/app/views/alchemy/admin/pages/fold.js.erb +2 -0
- data/app/views/alchemy/admin/pages/index.html.erb +1 -1
- data/app/views/alchemy/admin/pages/sort.html.erb +19 -0
- data/app/views/alchemy/admin/pages/update.js.erb +1 -8
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
- data/app/views/alchemy/admin/partials/_routes.html.erb +8 -19
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +4 -8
- data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
- data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
- data/app/views/alchemy/admin/resources/_form.html.erb +1 -0
- data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
- data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
- data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
- data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
- data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
- data/app/views/alchemy/essences/_essence_node_editor.html.erb +1 -1
- data/app/views/alchemy/essences/_essence_page_editor.html.erb +1 -1
- data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
- data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
- data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
- data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
- data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
- data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
- data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
- data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_file_editor.html.erb +50 -0
- data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
- data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
- data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_node_editor.html.erb +25 -0
- data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_page_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +59 -0
- data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
- data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
- data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
- data/app/views/alchemy/ingredients/_select_editor.html.erb +29 -0
- data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_text_editor.html.erb +19 -0
- data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
- data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
- data/config/alchemy/config.yml +0 -1
- data/config/brakeman.ignore +66 -159
- data/config/initializers/dragonfly.rb +2 -2
- data/config/locales/alchemy.en.yml +26 -15
- data/config/routes.rb +19 -26
- data/db/migrate/20201207131309_create_page_versions.rb +19 -0
- data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
- data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
- data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
- data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
- data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
- data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
- data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
- data/lib/alchemy/admin/preview_url.rb +2 -0
- data/lib/alchemy/deprecation.rb +1 -1
- data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
- data/lib/alchemy/elements_finder.rb +14 -60
- data/lib/alchemy/engine.rb +1 -19
- data/lib/alchemy/essence.rb +1 -2
- data/lib/alchemy/hints.rb +1 -1
- data/lib/alchemy/page_layout.rb +2 -19
- data/lib/alchemy/permissions.rb +31 -29
- data/lib/alchemy/resource.rb +13 -3
- data/lib/alchemy/tasks/tidy.rb +29 -0
- data/lib/alchemy/test_support/essence_shared_examples.rb +0 -1
- data/lib/alchemy/test_support/factories/element_factory.rb +8 -8
- data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
- data/lib/alchemy/test_support/factories/page_factory.rb +20 -1
- data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
- data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
- data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
- data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
- data/lib/alchemy/test_support/shared_ingredient_examples.rb +57 -0
- data/lib/alchemy/test_support.rb +2 -11
- data/lib/alchemy/tinymce.rb +17 -0
- data/lib/alchemy/upgrader/five_point_zero.rb +0 -32
- data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
- data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
- data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +51 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy_cms.rb +0 -1
- data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
- data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
- data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
- data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
- data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
- data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
- data/lib/generators/alchemy/install/install_generator.rb +1 -2
- data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.erb +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.haml +1 -1
- data/lib/generators/alchemy/menus/templates/node.html.slim +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
- data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
- data/lib/tasks/alchemy/tidy.rake +12 -0
- data/lib/tasks/alchemy/upgrade.rake +21 -15
- data/package/admin.js +8 -4
- data/package/src/file_editors.js +28 -0
- data/package/src/image_cropper.js +103 -0
- data/package/src/image_loader.js +58 -0
- data/package/src/node_tree.js +8 -8
- data/package/src/picture_editors.js +169 -0
- data/package/src/utils/__tests__/ajax.spec.js +16 -52
- data/package/src/utils/ajax.js +0 -12
- data/package.json +3 -2
- data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
- data/vendor/assets/javascripts/jquery_plugins/jquery.ui.nestedSortable.js +434 -0
- data/vendor/assets/stylesheets/alchemy_admin/select2.scss +1 -1
- data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
- metadata +291 -54
- data/.rspec +0 -1
- data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
- data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
- data/app/assets/javascripts/alchemy/templates/page_folder.hbs +0 -3
- data/app/assets/stylesheets/alchemy/trash.scss +0 -8
- data/app/controllers/alchemy/admin/trash_controller.rb +0 -44
- data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
- data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
- data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
- data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
- data/app/views/alchemy/admin/trash/index.html.erb +0 -31
- data/lib/alchemy/dragonfly/processors/thumbnail.rb +0 -27
- data/lib/alchemy/error_tracking/airbrake_handler.rb +0 -13
- data/lib/alchemy/error_tracking.rb +0 -14
- data/lib/alchemy/test_support/factories.rb +0 -20
- data/package/src/page_publication_fields.js +0 -27
- data/package/src/page_sorter.js +0 -62
- data/package/src/sitemap.js +0 -148
@@ -45,13 +45,13 @@
|
|
45
45
|
}
|
46
46
|
|
47
47
|
> .message {
|
48
|
-
margin: 2
|
48
|
+
margin: 2 * $default-margin;
|
49
49
|
}
|
50
50
|
}
|
51
51
|
|
52
52
|
#main-content-elements,
|
53
53
|
.element-editor.is-fixed .nestable-elements {
|
54
|
-
padding: 2
|
54
|
+
padding: 2 * $default-padding $default-padding 2px;
|
55
55
|
}
|
56
56
|
|
57
57
|
.element-title {
|
@@ -124,7 +124,7 @@
|
|
124
124
|
border: 1px solid $default-border-color;
|
125
125
|
border-radius: $default-border-radius;
|
126
126
|
background-color: $light-gray;
|
127
|
-
margin-bottom: 2
|
127
|
+
margin-bottom: 2 * $default-margin;
|
128
128
|
transition: box-shadow $transition-duration;
|
129
129
|
|
130
130
|
&.hidden {
|
@@ -165,7 +165,7 @@
|
|
165
165
|
&.dirty {
|
166
166
|
border-color: #d0c83d;
|
167
167
|
|
168
|
-
|
168
|
+
> .element-header {
|
169
169
|
background-color: #fff8df;
|
170
170
|
}
|
171
171
|
}
|
@@ -189,7 +189,8 @@
|
|
189
189
|
}
|
190
190
|
}
|
191
191
|
|
192
|
-
&.selected:not(.is-fixed),
|
192
|
+
&.selected:not(.is-fixed),
|
193
|
+
&:hover {
|
193
194
|
&:not(.hidden) {
|
194
195
|
box-shadow: 0 2px 8px rgba(#9b9b9b, 0.75);
|
195
196
|
}
|
@@ -203,7 +204,6 @@
|
|
203
204
|
}
|
204
205
|
|
205
206
|
&.folded {
|
206
|
-
|
207
207
|
.nested-elements {
|
208
208
|
display: none;
|
209
209
|
}
|
@@ -248,7 +248,7 @@
|
|
248
248
|
transition: all $transition-duration;
|
249
249
|
}
|
250
250
|
|
251
|
-
.element-header:hover
|
251
|
+
.element-header:hover + .element-toolbar,
|
252
252
|
.element-toolbar:hover {
|
253
253
|
visibility: visible;
|
254
254
|
opacity: 1;
|
@@ -280,6 +280,7 @@
|
|
280
280
|
}
|
281
281
|
|
282
282
|
.content_editor,
|
283
|
+
.ingredient-editor,
|
283
284
|
.picture_thumbnail {
|
284
285
|
width: 100%;
|
285
286
|
}
|
@@ -303,7 +304,7 @@
|
|
303
304
|
}
|
304
305
|
|
305
306
|
.element-content {
|
306
|
-
margin: 2
|
307
|
+
margin: 2 * $default-padding;
|
307
308
|
}
|
308
309
|
|
309
310
|
.validation_notice {
|
@@ -315,7 +316,7 @@
|
|
315
316
|
}
|
316
317
|
|
317
318
|
.message {
|
318
|
-
margin: 2
|
319
|
+
margin: 2 * $default-margin;
|
319
320
|
}
|
320
321
|
|
321
322
|
.foot_note {
|
@@ -343,7 +344,7 @@
|
|
343
344
|
hr {
|
344
345
|
height: 0;
|
345
346
|
width: 100%;
|
346
|
-
margin: 0 0 4
|
347
|
+
margin: 0 0 4 * $default-margin 0;
|
347
348
|
border: 0 none;
|
348
349
|
border-top: 1px solid $medium-gray;
|
349
350
|
opacity: 1;
|
@@ -352,7 +353,7 @@
|
|
352
353
|
|
353
354
|
.element-header {
|
354
355
|
position: relative;
|
355
|
-
padding: 2
|
356
|
+
padding: 2 * $default-padding;
|
356
357
|
background-color: $element-header-bg-color;
|
357
358
|
@extend .disable-user-select;
|
358
359
|
cursor: pointer;
|
@@ -369,7 +370,7 @@
|
|
369
370
|
transition: color $transition-duration;
|
370
371
|
}
|
371
372
|
|
372
|
-
|
373
|
+
> .hint-with-icon {
|
373
374
|
position: absolute;
|
374
375
|
right: 32px;
|
375
376
|
top: 10px;
|
@@ -405,7 +406,7 @@
|
|
405
406
|
|
406
407
|
.element-footer {
|
407
408
|
border-top: 1px solid $medium-gray;
|
408
|
-
padding: 2
|
409
|
+
padding: 2 * $default-padding;
|
409
410
|
text-align: right;
|
410
411
|
|
411
412
|
.button {
|
@@ -413,7 +414,8 @@
|
|
413
414
|
}
|
414
415
|
}
|
415
416
|
|
416
|
-
.element-content-editors
|
417
|
+
.element-content-editors,
|
418
|
+
.element-ingredient-editors {
|
417
419
|
display: flex;
|
418
420
|
flex-wrap: wrap;
|
419
421
|
}
|
@@ -437,7 +439,8 @@
|
|
437
439
|
right: 0;
|
438
440
|
|
439
441
|
.icon_button {
|
440
|
-
@include button-defaults(
|
442
|
+
@include button-defaults(
|
443
|
+
$background-color: $medium-gray,
|
441
444
|
$hover-color: darken($medium-gray, 5%),
|
442
445
|
$border: 1px solid #c0c0c0,
|
443
446
|
$box-shadow: none,
|
@@ -447,7 +450,8 @@
|
|
447
450
|
$margin: 0,
|
448
451
|
$border-radius: 0,
|
449
452
|
$focus-border-color: $focus-color,
|
450
|
-
$focus-box-shadow: 0 0 0 2px $focus-color
|
453
|
+
$focus-box-shadow: 0 0 0 2px $focus-color
|
454
|
+
);
|
451
455
|
width: 29px;
|
452
456
|
height: $form-field-height;
|
453
457
|
|
@@ -457,9 +461,11 @@
|
|
457
461
|
}
|
458
462
|
|
459
463
|
&.linked.link-essence {
|
460
|
-
@include linked-button(
|
464
|
+
@include linked-button(
|
465
|
+
$border-radius: 0,
|
461
466
|
$line-height: 30px,
|
462
|
-
$padding: 0
|
467
|
+
$padding: 0
|
468
|
+
);
|
463
469
|
|
464
470
|
&:focus {
|
465
471
|
border-radius: 0;
|
@@ -467,9 +473,11 @@
|
|
467
473
|
}
|
468
474
|
|
469
475
|
&.linked.unlink-essence {
|
470
|
-
@include linked-button(
|
476
|
+
@include linked-button(
|
477
|
+
$border-radius: 0 $default-border-radius $default-border-radius 0,
|
471
478
|
$line-height: 30px,
|
472
|
-
$padding: 0
|
479
|
+
$padding: 0
|
480
|
+
);
|
473
481
|
|
474
482
|
&:focus {
|
475
483
|
border-radius: 0 $default-border-radius $default-border-radius 0;
|
@@ -487,7 +495,7 @@
|
|
487
495
|
height: 36px;
|
488
496
|
border: 1px dotted $button-border-color;
|
489
497
|
background-color: $medium-gray;
|
490
|
-
margin-bottom: 2
|
498
|
+
margin-bottom: 2 * $default-margin;
|
491
499
|
border-radius: $default-border-radius;
|
492
500
|
}
|
493
501
|
|
@@ -518,21 +526,10 @@
|
|
518
526
|
}
|
519
527
|
}
|
520
528
|
|
521
|
-
.essence_picture
|
529
|
+
.essence_picture,
|
530
|
+
.ingredient-editor.picture {
|
522
531
|
position: relative;
|
523
532
|
|
524
|
-
.picture_tool_delete {
|
525
|
-
position: absolute;
|
526
|
-
right: $default-margin;
|
527
|
-
top: $default-margin;
|
528
|
-
padding: 2px 2px 0;
|
529
|
-
z-index: 2;
|
530
|
-
}
|
531
|
-
|
532
|
-
.picture_thumbnail:hover .picture_tool_delete {
|
533
|
-
display: block;
|
534
|
-
}
|
535
|
-
|
536
533
|
.picture_thumbnail {
|
537
534
|
display: inline-block;
|
538
535
|
width: 160px;
|
@@ -541,7 +538,7 @@
|
|
541
538
|
}
|
542
539
|
|
543
540
|
&.validation_failed .picture_thumbnail {
|
544
|
-
border-color: $error_border_color
|
541
|
+
border-color: $error_border_color;
|
545
542
|
}
|
546
543
|
|
547
544
|
.thumbnail_background .icon {
|
@@ -565,9 +562,15 @@
|
|
565
562
|
}
|
566
563
|
}
|
567
564
|
|
568
|
-
.content_editor.
|
569
|
-
|
565
|
+
.content_editor.essence_audio,
|
566
|
+
.content_editor.essence_file,
|
567
|
+
.content_editor.essence_video,
|
568
|
+
.ingredient-editor.audio,
|
569
|
+
.ingredient-editor.file,
|
570
|
+
.ingredient-editor.video {
|
570
571
|
.file {
|
572
|
+
display: flex;
|
573
|
+
align-items: center;
|
571
574
|
margin: 6px 0 $default-margin;
|
572
575
|
border: $default-border;
|
573
576
|
background-color: $white;
|
@@ -581,35 +584,39 @@
|
|
581
584
|
}
|
582
585
|
|
583
586
|
.file_icon {
|
584
|
-
display: inline-block;
|
585
587
|
text-align: center;
|
586
|
-
float: left;
|
587
588
|
width: 24px;
|
588
|
-
padding:
|
589
|
+
padding: $default-padding;
|
589
590
|
}
|
590
591
|
|
591
592
|
.file_name {
|
592
593
|
white-space: nowrap;
|
593
594
|
overflow: hidden;
|
594
|
-
float: left;
|
595
595
|
max-width: 80%;
|
596
|
-
line-height: 28px;
|
597
596
|
font-size: $small-font-size;
|
598
597
|
text-overflow: ellipsis;
|
598
|
+
padding: $default-padding;
|
599
|
+
}
|
600
|
+
|
601
|
+
.remove_file_link {
|
602
|
+
width: 24px;
|
603
|
+
padding: $default-padding;
|
599
604
|
}
|
600
605
|
}
|
601
606
|
|
607
|
+
.file_tools,
|
602
608
|
.essence_file_tools {
|
603
|
-
|
604
|
-
|
609
|
+
display: flex;
|
610
|
+
align-items: center;
|
611
|
+
margin-left: auto;
|
605
612
|
background-color: white;
|
606
613
|
width: 48px;
|
607
614
|
border-radius: 0 $default-border-radius $default-border-radius 0;
|
608
615
|
|
609
616
|
a {
|
617
|
+
text-align: center;
|
610
618
|
text-decoration: none;
|
611
|
-
padding:
|
612
|
-
float: left;
|
619
|
+
padding: $default-padding;
|
613
620
|
}
|
614
621
|
}
|
615
622
|
|
@@ -633,7 +640,8 @@ select.long {
|
|
633
640
|
padding: 0;
|
634
641
|
}
|
635
642
|
|
636
|
-
.content_editor
|
643
|
+
.content_editor,
|
644
|
+
.ingredient-editor {
|
637
645
|
width: 100%;
|
638
646
|
padding: $default-padding 0;
|
639
647
|
position: relative;
|
@@ -644,7 +652,6 @@ select.long {
|
|
644
652
|
}
|
645
653
|
|
646
654
|
&.missing {
|
647
|
-
|
648
655
|
.message {
|
649
656
|
margin: 0;
|
650
657
|
@include clearfix;
|
@@ -675,13 +682,12 @@ select.long {
|
|
675
682
|
}
|
676
683
|
|
677
684
|
&.validation_failed {
|
678
|
-
|
679
|
-
|
680
|
-
color: $error_text_color
|
685
|
+
> label {
|
686
|
+
color: $error_text_color;
|
681
687
|
}
|
682
688
|
|
683
689
|
input {
|
684
|
-
@extend %field-with-error
|
690
|
+
@extend %field-with-error;
|
685
691
|
}
|
686
692
|
|
687
693
|
.tinymce_container {
|
@@ -727,10 +733,10 @@ select.long {
|
|
727
733
|
}
|
728
734
|
}
|
729
735
|
|
730
|
-
&.essence_select
|
731
|
-
|
736
|
+
&.essence_select,
|
737
|
+
&.select {
|
732
738
|
label {
|
733
|
-
margin-bottom: 2
|
739
|
+
margin-bottom: 2 * $default-margin;
|
734
740
|
}
|
735
741
|
|
736
742
|
.select2-container {
|
@@ -742,6 +748,7 @@ select.long {
|
|
742
748
|
}
|
743
749
|
}
|
744
750
|
|
751
|
+
select.ingredient-editor-select,
|
745
752
|
select.essence_editor_select {
|
746
753
|
border-radius: $default-border-radius;
|
747
754
|
background: white;
|
@@ -769,12 +776,14 @@ select.long {
|
|
769
776
|
}
|
770
777
|
}
|
771
778
|
|
772
|
-
&.essence_picture
|
779
|
+
&.essence_picture,
|
780
|
+
&.picture {
|
773
781
|
width: 50%;
|
774
782
|
padding-left: 1px; // Compensate the box shadow
|
775
783
|
padding-right: $default-padding;
|
776
784
|
|
777
|
-
|
785
|
+
+ .essence_picture,
|
786
|
+
+ .picture {
|
778
787
|
padding-left: $default-padding;
|
779
788
|
padding-right: 1px; // Compensate the box shadow
|
780
789
|
}
|
@@ -812,7 +821,7 @@ textarea.has_tinymce {
|
|
812
821
|
margin-top: 8px;
|
813
822
|
margin-bottom: 8px;
|
814
823
|
background-color: $error_background_color;
|
815
|
-
padding: 2
|
824
|
+
padding: 2 * $default-padding;
|
816
825
|
list-style-type: none;
|
817
826
|
border-radius: $default-border-radius;
|
818
827
|
color: $error_text_color;
|
@@ -826,10 +835,12 @@ textarea.has_tinymce {
|
|
826
835
|
|
827
836
|
.content_editor .hint-with-icon,
|
828
837
|
.content_editor .with-hint,
|
838
|
+
.ingredient-editor .hint-with-icon,
|
839
|
+
.ingredient-editor .with-hint,
|
829
840
|
.element-handle .hint-with-icon {
|
830
841
|
margin: 0;
|
831
842
|
|
832
|
-
|
843
|
+
> .hint-bubble {
|
833
844
|
left: -7px;
|
834
845
|
transform: none;
|
835
846
|
|
@@ -841,13 +852,13 @@ textarea.has_tinymce {
|
|
841
852
|
|
842
853
|
.is-fixed {
|
843
854
|
&.with-contents {
|
844
|
-
|
855
|
+
> .element-footer {
|
845
856
|
border-top: 0;
|
846
857
|
border-bottom: 1px solid $medium-gray;
|
847
858
|
}
|
848
859
|
}
|
849
860
|
|
850
|
-
|
861
|
+
> .nestable-elements .add-nestable-element-button {
|
851
862
|
width: 100%;
|
852
863
|
text-align: center;
|
853
864
|
}
|
@@ -885,6 +896,7 @@ textarea.has_tinymce {
|
|
885
896
|
}
|
886
897
|
}
|
887
898
|
|
899
|
+
.ingredient-date--label,
|
888
900
|
.essence_date--label {
|
889
901
|
position: absolute;
|
890
902
|
right: 7px;
|
@@ -8,12 +8,13 @@
|
|
8
8
|
.node-select--node {
|
9
9
|
display: flex;
|
10
10
|
align-items: center;
|
11
|
+
height: 21px;
|
11
12
|
|
12
13
|
.icon {
|
13
14
|
margin: 0 8px 0 4px;
|
14
15
|
|
15
16
|
.select2-highlighted & {
|
16
|
-
color: $white
|
17
|
+
color: $white;
|
17
18
|
}
|
18
19
|
}
|
19
20
|
}
|
@@ -24,12 +25,12 @@
|
|
24
25
|
|
25
26
|
.node-select--node-url {
|
26
27
|
margin-left: auto;
|
27
|
-
padding: $default-padding 2
|
28
|
+
padding: $default-padding 2 * $default-padding;
|
28
29
|
color: $dark-gray;
|
29
30
|
font-size: $small-font-size;
|
30
31
|
|
31
32
|
.select2-highlighted & {
|
32
|
-
color: $white
|
33
|
+
color: $white;
|
33
34
|
}
|
34
35
|
}
|
35
36
|
|
@@ -1,4 +1,5 @@
|
|
1
1
|
.page-select--page,
|
2
|
+
.page-select--page-name,
|
2
3
|
.page-select--page-urlname {
|
3
4
|
text-overflow: ellipsis;
|
4
5
|
overflow: hidden;
|
@@ -7,49 +8,24 @@
|
|
7
8
|
|
8
9
|
.page-select--page {
|
9
10
|
display: flex;
|
10
|
-
|
11
|
+
align-items: center;
|
11
12
|
|
12
13
|
.icon {
|
13
14
|
margin: 0 8px 0 4px;
|
14
15
|
|
15
16
|
.select2-highlighted & {
|
16
|
-
color: $white
|
17
|
+
color: $white
|
17
18
|
}
|
18
19
|
}
|
19
20
|
}
|
20
21
|
|
21
|
-
.page-select--top,
|
22
|
-
.page-select--bottom {
|
23
|
-
display: flex;
|
24
|
-
flex-direction: row;
|
25
|
-
align-items: center;
|
26
|
-
}
|
27
|
-
|
28
|
-
.page-select--bottom {
|
29
|
-
font-size: $small-font-size;
|
30
|
-
padding-left: 6 * $default-padding;
|
31
|
-
}
|
32
|
-
|
33
|
-
.page-select--language-code {
|
34
|
-
display: inline-block;
|
35
|
-
background-color: $medium-gray;
|
36
|
-
margin-left: auto;
|
37
|
-
border-radius: $default-border-radius;
|
38
|
-
padding: $default-padding / 2 $default-padding;
|
39
|
-
|
40
|
-
.select2-highlighted & {
|
41
|
-
color: $select-hover-bg-color;
|
42
|
-
background-color: white;
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
22
|
.page-select--page-urlname {
|
47
23
|
margin-left: auto;
|
48
|
-
padding: $default-padding 2
|
24
|
+
padding: $default-padding 2*$default-padding;
|
49
25
|
color: $dark-gray;
|
50
26
|
font-size: $small-font-size;
|
51
27
|
|
52
28
|
.select2-highlighted & {
|
53
|
-
color: $white
|
29
|
+
color: $white
|
54
30
|
}
|
55
31
|
}
|
@@ -23,7 +23,7 @@ $sitemap-url-xlarge-width: 350px;
|
|
23
23
|
|
24
24
|
#sitemap-wrapper {
|
25
25
|
position: relative;
|
26
|
-
min-height: calc(100vh -
|
26
|
+
min-height: calc(100vh - 96px);
|
27
27
|
}
|
28
28
|
|
29
29
|
.sitemap_pagename_link {
|
@@ -142,16 +142,18 @@ $sitemap-url-xlarge-width: 350px;
|
|
142
142
|
#sitemap {
|
143
143
|
padding: 0 0 104px 0;
|
144
144
|
|
145
|
-
|
146
|
-
|
145
|
+
&.sorting {
|
146
|
+
padding-top: 100px;
|
147
|
+
|
148
|
+
.page_icon {
|
149
|
+
cursor: move;
|
150
|
+
}
|
147
151
|
}
|
148
152
|
|
149
153
|
.page_folder {
|
150
154
|
position: absolute;
|
151
155
|
left: -23px;
|
152
156
|
top: 0;
|
153
|
-
width: 16px;
|
154
|
-
height: $sitemap-line-height;
|
155
157
|
}
|
156
158
|
|
157
159
|
.placeholder {
|
@@ -256,7 +258,3 @@ $sitemap-url-xlarge-width: 350px;
|
|
256
258
|
}
|
257
259
|
}
|
258
260
|
}
|
259
|
-
|
260
|
-
#search_field_clear {
|
261
|
-
cursor: pointer;
|
262
|
-
}
|
@@ -30,7 +30,7 @@ td,th {
|
|
30
30
|
|
31
31
|
.mce-object {
|
32
32
|
border: 1px dotted #3a3a3a;
|
33
|
-
background: #d5d5d5 url(
|
33
|
+
background: #d5d5d5 url(img/object.gif) no-repeat center;
|
34
34
|
}
|
35
35
|
|
36
36
|
.mce-pagebreak {
|
@@ -55,7 +55,7 @@ td,th {
|
|
55
55
|
width: 9px!important;
|
56
56
|
height: 9px!important;
|
57
57
|
border: 1px dotted #3a3a3a;
|
58
|
-
background: #d5d5d5 url(
|
58
|
+
background: #d5d5d5 url(img/anchor.gif) no-repeat center;
|
59
59
|
}
|
60
60
|
|
61
61
|
.mce-nbsp {
|
@@ -77,7 +77,7 @@ hr {
|
|
77
77
|
}
|
78
78
|
|
79
79
|
.mce-spellchecker-word {
|
80
|
-
background: url(
|
80
|
+
background: url(img/wline.gif) repeat-x bottom left;
|
81
81
|
cursor: default;
|
82
82
|
}
|
83
83
|
|
@@ -1561,23 +1561,23 @@ i.mce-i-resize {
|
|
1561
1561
|
opacity: 0.6;
|
1562
1562
|
filter: alpha(opacity=60);
|
1563
1563
|
zoom: 1;
|
1564
|
-
background: #fff url('
|
1564
|
+
background: #fff url('img/loader.gif') no-repeat center center;
|
1565
1565
|
}
|
1566
1566
|
|
1567
1567
|
@font-face {
|
1568
1568
|
font-family: 'tinymce';
|
1569
|
-
src: url('
|
1570
|
-
url('
|
1571
|
-
url('
|
1569
|
+
src: url('fonts/tinymce.woff') format('woff'),
|
1570
|
+
url('fonts/tinymce.ttf') format('truetype'),
|
1571
|
+
url('fonts/tinymce.svg#tinymce') format('svg');
|
1572
1572
|
font-weight: normal;
|
1573
1573
|
font-style: normal;
|
1574
1574
|
}
|
1575
1575
|
|
1576
1576
|
@font-face {
|
1577
1577
|
font-family: 'tinymce-small';
|
1578
|
-
src: url('
|
1579
|
-
url('
|
1580
|
-
url('
|
1578
|
+
src: url('fonts/tinymce-small.woff') format('woff'),
|
1579
|
+
url('fonts/tinymce-small.ttf') format('truetype'),
|
1580
|
+
url('fonts/tinymce-small.svg#tinymce') format('svg');
|
1581
1581
|
font-weight: normal;
|
1582
1582
|
font-style: normal;
|
1583
1583
|
}
|
@@ -8,6 +8,10 @@ module Alchemy
|
|
8
8
|
|
9
9
|
helper "alchemy/admin/tags"
|
10
10
|
|
11
|
+
before_action(only: :assign) do
|
12
|
+
@attachment = Attachment.find(params[:id])
|
13
|
+
end
|
14
|
+
|
11
15
|
def index
|
12
16
|
@query = Attachment.ransack(search_filter_params[:q])
|
13
17
|
@query.sorts = "name asc" if @query.sorts.empty?
|
@@ -74,8 +78,8 @@ module Alchemy
|
|
74
78
|
@_search_filter_params ||= params.except(*COMMON_SEARCH_FILTER_EXCLUDES + [:attachment]).permit(
|
75
79
|
*common_search_filter_includes + [
|
76
80
|
:file_type,
|
77
|
-
:
|
78
|
-
]
|
81
|
+
:form_field_id,
|
82
|
+
]
|
79
83
|
)
|
80
84
|
end
|
81
85
|
|
@@ -8,7 +8,7 @@ module Alchemy
|
|
8
8
|
|
9
9
|
before_action :load_locked_pages
|
10
10
|
|
11
|
-
helper_method :clipboard_empty?, :
|
11
|
+
helper_method :clipboard_empty?, :get_clipboard, :is_admin?
|
12
12
|
|
13
13
|
check_authorization
|
14
14
|
|
@@ -40,7 +40,9 @@ module Alchemy
|
|
40
40
|
def exception_handler(error)
|
41
41
|
exception_logger(error)
|
42
42
|
show_error_notice(error)
|
43
|
-
|
43
|
+
if defined?(Airbrake)
|
44
|
+
notify_airbrake(error) unless Rails.env.development? || Rails.env.test?
|
45
|
+
end
|
44
46
|
end
|
45
47
|
|
46
48
|
# Displays an error notice in the Alchemy backend.
|
@@ -52,7 +54,10 @@ module Alchemy
|
|
52
54
|
if request.xhr?
|
53
55
|
render action: "error_notice"
|
54
56
|
else
|
55
|
-
|
57
|
+
respond_to do |format|
|
58
|
+
format.html { render "500", status: 500 }
|
59
|
+
format.json { render json: { message: @notice }, status: 500 }
|
60
|
+
end
|
56
61
|
end
|
57
62
|
end
|
58
63
|
|
@@ -67,11 +72,6 @@ module Alchemy
|
|
67
72
|
get_clipboard(category).blank?
|
68
73
|
end
|
69
74
|
|
70
|
-
def trash_empty?(category)
|
71
|
-
"alchemy/#{category.singularize}".classify.constantize.trashed.blank?
|
72
|
-
end
|
73
|
-
deprecate :trash_empty?, deprecator: Alchemy::Deprecation
|
74
|
-
|
75
75
|
def set_stamper
|
76
76
|
if Alchemy.user_class < ActiveRecord::Base
|
77
77
|
Alchemy.user_class.stamper = current_alchemy_user
|
@@ -146,14 +146,6 @@ module Alchemy
|
|
146
146
|
site
|
147
147
|
end
|
148
148
|
end
|
149
|
-
|
150
|
-
def notify_error_tracker(exception)
|
151
|
-
if ::Alchemy::ErrorTracking.notification_handler.respond_to?(:call)
|
152
|
-
::Alchemy::ErrorTracking.notification_handler.call(exception)
|
153
|
-
else
|
154
|
-
Rails.logger.warn("To use the Alchemy::ErrorTracking.notification_handler, it must respond to #call.")
|
155
|
-
end
|
156
|
-
end
|
157
149
|
end
|
158
150
|
end
|
159
151
|
end
|