diff --git a/addons/mass_mailing/__manifest__.py b/addons/mass_mailing/__manifest__.py index dc7d96a7e4cab..c597be1188853 100644 --- a/addons/mass_mailing/__manifest__.py +++ b/addons/mass_mailing/__manifest__.py @@ -149,7 +149,11 @@ ], 'mass_mailing.assets_wysiwyg': [ 'mass_mailing/static/src/js/mass_mailing_snippets.js', + 'mass_mailing/static/src/js/snippets.options.xml', + 'mass_mailing/static/src/snippets/s_alert/options.js', + 'mass_mailing/static/src/snippets/s_alert/options.xml', 'mass_mailing/static/src/snippets/s_masonry_block/options.js', + 'mass_mailing/static/src/snippets/s_masonry_block/options.xml', 'mass_mailing/static/src/snippets/s_media_list/options.js', 'mass_mailing/static/src/snippets/s_showcase/options.js', 'mass_mailing/static/src/snippets/s_rating/options.js' @@ -157,6 +161,7 @@ 'mass_mailing.assets_snippets_menu': [ ('include', 'web_editor.assets_snippets_menu'), 'mass_mailing/static/src/js/snippets.editor.js', + 'mass_mailing/static/src/js/snippets.registry.js', 'mass_mailing/static/src/xml/mass_mailing.editor.xml', ], 'web.assets_frontend': [ @@ -171,6 +176,7 @@ 'mass_mailing/static/src/snippets/s_media_list/options.js', 'mass_mailing/static/src/snippets/s_showcase/options.js', 'mass_mailing/static/src/snippets/s_rating/options.js', + 'mass_mailing/static/src/snippets/s_rating/options.xml', 'mass_mailing/static/tests/mass_mailing_html_tests.js', ], }, diff --git a/addons/mass_mailing/static/src/js/mass_mailing_snippets.js b/addons/mass_mailing/static/src/js/mass_mailing_snippets.js index fede7a6f9cbf6..aa11013cef18e 100644 --- a/addons/mass_mailing/static/src/js/mass_mailing_snippets.js +++ b/addons/mass_mailing/static/src/js/mass_mailing_snippets.js @@ -1,7 +1,8 @@ /** @odoo-module **/ -import options from "@web_editor/js/editor/snippets.options"; +import options from "@web_editor/js/editor/snippets.options.legacy"; import { loadImage } from "@web_editor/js/editor/image_processing"; +import { registerSnippetAdditionSelector } from "@web_editor/js/editor/snippets.registry"; const SelectUserValueWidget = options.userValueWidgetsRegistry['we-select']; import weUtils from "@web_editor/js/common/utils"; import { @@ -11,12 +12,15 @@ import { transformFontFamilySelector, } from "@mass_mailing/js/mass_mailing_design_constants"; import { isCSSColor, normalizeCSSColor } from "@web/core/utils/colors"; +import { registerMassMailingOption } from "./snippets.registry"; //-------------------------------------------------------------------------- // Options //-------------------------------------------------------------------------- +registerSnippetAdditionSelector(".o_mail_snippet_general"); + // Adding compatibility for the outlook compliance of mailings. // Commit of such compatibility : a14f89c8663c9cafecb1cc26918055e023ecbe42 options.registry.MassMailingBackgroundImage = options.registry.BackgroundImage.extend({ @@ -322,3 +326,13 @@ options.registry.DesignTab = options.Class.extend({ return [...(this.styleSheet.cssRules || this.styleSheet.rules)].find(rule => rule.selectorText === selectorText); }, }); + +registerMassMailingOption("mass_mailing_block_width", { + template: "mass_mailing.block_width_option", + selector: ".s_mail_blockquote, .s_mail_text_highlight", +}); + +registerMassMailingOption("mass_mailing_block_align", { + template: "mass_mailing.block_align_option", + selector: ".s_mail_blockquote, .s_mail_text_highlight", +}); diff --git a/addons/mass_mailing/static/src/js/snippets.editor.js b/addons/mass_mailing/static/src/js/snippets.editor.js index 7df787c1d05eb..57768dfe15f1c 100644 --- a/addons/mass_mailing/static/src/js/snippets.editor.js +++ b/addons/mass_mailing/static/src/js/snippets.editor.js @@ -84,6 +84,15 @@ export class MassMailingSnippetsMenu extends snippetsEditor.SnippetsMenu { html.querySelectorAll('img').forEach(img => img.setAttribute("loading", "lazy")); return super._computeSnippetTemplates(html); } + /** + * @override + */ + getOptions() { + const options = super.getOptions().filter(([, option]) => { + return ["mass_mailing", "web_editor"].includes(option.module); + }); + return options; + } /** * @override */ diff --git a/addons/mass_mailing/static/src/js/snippets.options.xml b/addons/mass_mailing/static/src/js/snippets.options.xml new file mode 100644 index 0000000000000..be6a2a7266eb0 --- /dev/null +++ b/addons/mass_mailing/static/src/js/snippets.options.xml @@ -0,0 +1,62 @@ + + + + + + 25% + 50% + 75% + 100% + + + + + + + + + + + + + + + + +
+
+
+
+ + + + + + + + Border + + + + + + diff --git a/addons/mass_mailing/static/src/js/snippets.registry.js b/addons/mass_mailing/static/src/js/snippets.registry.js new file mode 100644 index 0000000000000..83bfdb882eab6 --- /dev/null +++ b/addons/mass_mailing/static/src/js/snippets.registry.js @@ -0,0 +1,8 @@ +import { registerOption } from "@web_editor/js/editor/snippets.registry"; + +export function registerMassMailingOption(name, def, options) { + if (!def.module) { + def.module = "mass_mailing"; + } + return registerOption(name, def, options); +} diff --git a/addons/mass_mailing/static/src/snippets/s_alert/002.scss b/addons/mass_mailing/static/src/snippets/s_alert/002.scss new file mode 100644 index 0000000000000..8448c31a0eb22 --- /dev/null +++ b/addons/mass_mailing/static/src/snippets/s_alert/002.scss @@ -0,0 +1,36 @@ +.o_mail_snippet_general .s_mail_alert [class^="col-lg"]{ + padding-left: 0!important; + padding-right: 0!important; +} + +.s_mail_alert { + .s_alert { + border-width: $alert-border-width; + border-style: solid; + border-radius: $alert-border-radius; + p, ul, ol { + &:last-child { + margin-bottom: 0; + } + } + } + .s_alert_sm { + padding: $grid-gutter-width/3; + font-size: $font-size-sm; + } + .s_alert_md { + padding: $grid-gutter-width/2; + font-size: $font-size-base; + } + .s_alert_lg { + padding: $grid-gutter-width; + font-size: $font-size-lg; + } + .s_alert_icon { + float: left; + margin-right: 10px; + } + .s_alert_content { + overflow: hidden; + } +} diff --git a/addons/mass_mailing/static/src/snippets/s_alert/options.js b/addons/mass_mailing/static/src/snippets/s_alert/options.js new file mode 100644 index 0000000000000..827158059cbf4 --- /dev/null +++ b/addons/mass_mailing/static/src/snippets/s_alert/options.js @@ -0,0 +1,6 @@ +import { registerMassMailingOption } from "@mass_mailing/js/snippets.registry"; + +registerMassMailingOption("MassMailingAlert", { + template: "mass_mailing.s_alert_options", + selector: ".s_mail_alert .s_alert", +}); diff --git a/addons/mass_mailing/static/src/snippets/s_alert/options.xml b/addons/mass_mailing/static/src/snippets/s_alert/options.xml new file mode 100644 index 0000000000000..741773e6a184f --- /dev/null +++ b/addons/mass_mailing/static/src/snippets/s_alert/options.xml @@ -0,0 +1,22 @@ + + + + + + + Small + Medium + Large + + + + + + + + + diff --git a/addons/mass_mailing/static/src/snippets/s_masonry_block/options.js b/addons/mass_mailing/static/src/snippets/s_masonry_block/options.js index f9d5a83076497..734e0c7ea49ea 100644 --- a/addons/mass_mailing/static/src/snippets/s_masonry_block/options.js +++ b/addons/mass_mailing/static/src/snippets/s_masonry_block/options.js @@ -1,14 +1,18 @@ -/** @odoo-module **/ +import { SelectTemplate } from "@web_editor/js/editor/snippets.options"; +import { registerMassMailingOption } from "@mass_mailing/js/snippets.registry"; -import options from "@web_editor/js/editor/snippets.options"; - -options.registry.MasonryLayout = options.registry.SelectTemplate.extend({ - /** - * @constructor - */ - init() { - this._super(...arguments); +export class MasonryLayout extends SelectTemplate { + constructor() { + super(...arguments); this.containerSelector = '> .container, > .container-fluid, > .o_container_small'; this.selectTemplateWidgetName = 'masonry_template_opt'; - }, + } +} + +registerMassMailingOption("MassMailingMasonryLayout", { + Class: MasonryLayout, + template: "mass_mailing.s_masonry_block_options", + selector: ".s_masonry_block", +}, { + sequence: 10, }); diff --git a/addons/mass_mailing/static/src/snippets/s_masonry_block/options.xml b/addons/mass_mailing/static/src/snippets/s_masonry_block/options.xml new file mode 100644 index 0000000000000..4422cdbc5a8e0 --- /dev/null +++ b/addons/mass_mailing/static/src/snippets/s_masonry_block/options.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + diff --git a/addons/mass_mailing/static/src/snippets/s_media_list/options.js b/addons/mass_mailing/static/src/snippets/s_media_list/options.js index 66030ae3bbf32..34c343e354e46 100644 --- a/addons/mass_mailing/static/src/snippets/s_media_list/options.js +++ b/addons/mass_mailing/static/src/snippets/s_media_list/options.js @@ -1,8 +1,9 @@ -/** @odoo-module **/ +import { SnippetOption } from "@web_editor/js/editor/snippets.options"; -import options from "@web_editor/js/editor/snippets.options"; - -options.registry.MediaItemLayout = options.Class.extend({ +// FIXME: this is unused (no option definition in mass_mailing), +// see addons/website/static/src/snippets/s_media_list/options.js +// This is never attached to any snippet (no selector). +export class MediaItemLayout extends SnippetOption { //-------------------------------------------------------------------------- // Options @@ -13,7 +14,7 @@ options.registry.MediaItemLayout = options.Class.extend({ * * @see this.selectClass for parameters */ - layout: function (previewMode, widgetValue, params) { + layout(previewMode, widgetValue, params) { const $image = this.$target.find('.s_media_list_img_wrapper'); const $content = this.$target.find('.s_media_list_body'); @@ -23,7 +24,7 @@ options.registry.MediaItemLayout = options.Class.extend({ } $image.addClass(`col-lg-${widgetValue}`); $content.addClass(`col-lg-${12 - widgetValue}`); - }, + } //-------------------------------------------------------------------------- // Private @@ -32,7 +33,7 @@ options.registry.MediaItemLayout = options.Class.extend({ /** * @override */ - _computeWidgetState(methodName, params) { + async _computeWidgetState(methodName, params) { switch (methodName) { case 'layout': { const $image = this.$target.find('.s_media_list_img_wrapper'); @@ -43,6 +44,6 @@ options.registry.MediaItemLayout = options.Class.extend({ } } } - return this._super(...arguments); - }, -}); + return super._computeWidgetState(...arguments); + } +} diff --git a/addons/mass_mailing/static/src/snippets/s_rating/options.js b/addons/mass_mailing/static/src/snippets/s_rating/options.js index 138f57ae81132..ed458fc4fe1fe 100644 --- a/addons/mass_mailing/static/src/snippets/s_rating/options.js +++ b/addons/mass_mailing/static/src/snippets/s_rating/options.js @@ -1,18 +1,28 @@ /** @odoo-module **/ import { MediaDialog } from "@web_editor/components/media_dialog/media_dialog"; -import options from "@web_editor/js/editor/snippets.options"; -options.registry.Rating = options.Class.extend({ +import { + SnippetOption, +} from "@web_editor/js/editor/snippets.options"; +import { + registerMassMailingOption, +} from "@mass_mailing/js/snippets.registry"; + +/** + * TODO: @owl-options mass_mailing.s_rating and website.s_rating are exactly + * identical, refactor? + */ +export class RatingOption extends SnippetOption { /** * @override */ - start: function () { + willStart() { this.iconType = this.$target[0].dataset.icon; this.faClassActiveCustomIcons = this.$target[0].dataset.activeCustomIcon || ''; this.faClassInactiveCustomIcons = this.$target[0].dataset.inactiveCustomIcon || ''; - return this._super.apply(this, arguments); - }, + return super.willStart(...arguments); + } //-------------------------------------------------------------------------- // Options @@ -23,22 +33,22 @@ options.registry.Rating = options.Class.extend({ * * @see this.selectClass for parameters */ - setIcons: function (previewMode, widgetValue, params) { + setIcons(previewMode, widgetValue, params) { this.iconType = widgetValue; this._renderIcons(); this.$target[0].dataset.icon = widgetValue; delete this.$target[0].dataset.activeCustomIcon; delete this.$target[0].dataset.inactiveCustomIcon; - }, + } /** * Allows to select a font awesome icon with media dialog. * * @see this.selectClass for parameters */ - customIcon: async function (previewMode, widgetValue, params) { + async customIcon(previewMode, widgetValue, params) { const media = document.createElement('i'); media.className = params.customActiveIcon === 'true' ? this.faClassActiveCustomIcons : this.faClassInactiveCustomIcons; - this.call("dialog", "add", MediaDialog, { + this.env.services.dialog.add(MediaDialog, { noImages: true, noDocuments: true, noVideos: true, @@ -57,25 +67,25 @@ options.registry.Rating = options.Class.extend({ this.iconType = 'custom'; } }); - }, + } /** * Sets the number of active icons. * * @see this.selectClass for parameters */ - activeIconsNumber: function (previewMode, widgetValue, params) { + activeIconsNumber(previewMode, widgetValue, params) { this.nbActiveIcons = parseInt(widgetValue); this._createIcons(); - }, + } /** * Sets the total number of icons. * * @see this.selectClass for parameters */ - totalIconsNumber: function (previewMode, widgetValue, params) { + totalIconsNumber(previewMode, widgetValue, params) { this.nbTotalIcons = Math.max(parseInt(widgetValue), 1); this._createIcons(); - }, + } //-------------------------------------------------------------------------- // Private @@ -84,7 +94,7 @@ options.registry.Rating = options.Class.extend({ /** * @override */ - _computeWidgetState: function (methodName, params) { + _computeWidgetState(methodName, params) { switch (methodName) { case 'setIcons': { return this.$target[0].dataset.icon; @@ -98,14 +108,14 @@ options.registry.Rating = options.Class.extend({ return this.nbTotalIcons; } } - return this._super(...arguments); - }, + return super._computeWidgetState(...arguments); + } /** * Creates the icons. * * @private */ - _createIcons: function () { + _createIcons() { const $activeIcons = this.$target.find('.s_rating_active_icons'); const $inactiveIcons = this.$target.find('.s_rating_inactive_icons'); this.$target.find('.s_rating_icons i').remove(); @@ -117,13 +127,13 @@ options.registry.Rating = options.Class.extend({ } } this._renderIcons(); - }, + } /** * Renders icons with selected fonts. * * @private */ - _renderIcons: function () { + _renderIcons() { const icons = { 'fa-star': 'fa-star-o', 'fa-thumbs-up': 'fa-thumbs-o-up', @@ -137,5 +147,11 @@ options.registry.Rating = options.Class.extend({ const $inactiveIcons = this.$target.find('.s_rating_inactive_icons > i'); $activeIcons.removeClass().addClass(faClassActiveIcons); $inactiveIcons.removeClass().addClass(faClassInactiveIcons); - }, + } +} + +registerMassMailingOption("Rating", { + Class: RatingOption, + template: "website.s_rating_option", + selector: ".s_rating", }); diff --git a/addons/mass_mailing/static/src/snippets/s_rating/options.xml b/addons/mass_mailing/static/src/snippets/s_rating/options.xml new file mode 100644 index 0000000000000..44cef0c78c5c1 --- /dev/null +++ b/addons/mass_mailing/static/src/snippets/s_rating/options.xml @@ -0,0 +1,48 @@ + + + + + + + Stars + Thumbs + Circles + Squares + Hearts + Custom + + + + + + Replace Icon + + + + + + Replace Icon + + + + + / + + + + + + + + + + + + Top + Left + None + + + + + diff --git a/addons/mass_mailing/static/src/snippets/s_showcase/options.js b/addons/mass_mailing/static/src/snippets/s_showcase/options.js index 296ad494d2e3e..5e701da2e28a8 100644 --- a/addons/mass_mailing/static/src/snippets/s_showcase/options.js +++ b/addons/mass_mailing/static/src/snippets/s_showcase/options.js @@ -1,17 +1,20 @@ -/** @odoo-module **/ +import { SnippetOption } from "@web_editor/js/editor/snippets.options"; -import options from "@web_editor/js/editor/snippets.options"; - -options.registry.Showcase = options.Class.extend({ +// FIXME: this is unused (no option definition in mass_mailing), +// see addons/website/static/src/snippets/s_showcase/options.js +// This is never attached to any snippet (no selector). Even if +// it was, it is impossible to move Showcase sub-elements (that start +// with a title and an icon), and it would therefor have no effect. +export class Showcase extends SnippetOption { /** * @override */ - onMove: function () { + onMove() { const $showcaseCol = this.$target.parent().closest('.row > div'); const isLeftCol = $showcaseCol.index() <= 0; const $title = this.$target.children('.s_showcase_title'); $title.toggleClass('flex-lg-row-reverse', isLeftCol); $showcaseCol.find('.s_showcase_icon.ms-3').removeClass('ms-3').addClass('ms-lg-3'); // For compatibility with old version $title.find('.s_showcase_icon').toggleClass('me-lg-0 ms-lg-3', isLeftCol); - }, -}); + } +} diff --git a/addons/mass_mailing/views/snippets/s_alert.xml b/addons/mass_mailing/views/snippets/s_alert.xml index bc283760ae47c..08d0829fd0c5c 100644 --- a/addons/mass_mailing/views/snippets/s_alert.xml +++ b/addons/mass_mailing/views/snippets/s_alert.xml @@ -20,33 +20,17 @@
- - Alert 001 SCSS web.assets_frontend mass_mailing/static/src/snippets/s_alert/000.scss + + + + Alert 002 SCSS + web.assets_frontend + mass_mailing/static/src/snippets/s_alert/002.scss diff --git a/addons/mass_mailing/views/snippets/s_hr.xml b/addons/mass_mailing/views/snippets/s_hr.xml index 1b1444411188c..82243b3b909d1 100644 --- a/addons/mass_mailing/views/snippets/s_hr.xml +++ b/addons/mass_mailing/views/snippets/s_hr.xml @@ -13,10 +13,12 @@ - - - Masonry block 001 SCSS diff --git a/addons/mass_mailing/views/snippets/s_rating.xml b/addons/mass_mailing/views/snippets/s_rating.xml index ee10b0195b2ca..3f4ae21c16af2 100644 --- a/addons/mass_mailing/views/snippets/s_rating.xml +++ b/addons/mass_mailing/views/snippets/s_rating.xml @@ -18,48 +18,6 @@
- - Rating 000 SCSS web.assets_frontend diff --git a/addons/mass_mailing/views/snippets_themes.xml b/addons/mass_mailing/views/snippets_themes.xml index da168857abe73..f6cdc984fa64f 100644 --- a/addons/mass_mailing/views/snippets_themes.xml +++ b/addons/mass_mailing/views/snippets_themes.xml @@ -227,45 +227,10 @@ - - - + + +