Skip to content
Snippets Groups Projects
Commit 86d12706 authored by qsm-odoo's avatar qsm-odoo
Browse files

[FIX] web_editor: put the snippet editor UI at the correct DOM position

Commit https://github.com/odoo/odoo/commit/4f27e52cabb77b8b1a9637a11185ddf882adc9af


had to instantiate the snippet editor UI differently but the hack broke
the position of the oe_manipulator which is supposed to be at the top
left of the editable zone.

closes odoo/odoo#39751

Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
parent b8d7c69d
No related branches found
No related tags found
No related merge requests found
......@@ -106,9 +106,7 @@ var EditorMenuBar = Widget.extend({
// Snippets menu
if (self.snippetsMenu) {
// TODO improve this, the editor can be relocated so here,
// 'insertAfter(this.$el)' won't work.
defs.push(this.snippetsMenu.appendTo(this.$el.parent()));
defs.push(this.snippetsMenu.insertAfter(this.$el));
}
this.rte.editable().find('*').off('mousedown mouseup click');
......
......@@ -18,7 +18,7 @@ Wysiwyg.include({
this.editor = new (this.Editor)(this, this.options);
this.$editor = this.editor.rte.editable();
await this.editor.prependTo(this.$editor[0].ownerDocument.body);
this.options.toolbarHandler.append(this.editor.$el);
this._relocateEditorBar();
this.$el.on('content_changed', function (e) {
self.trigger_up('wysiwyg_change');
});
......@@ -26,6 +26,24 @@ Wysiwyg.include({
return this._super();
}
},
//--------------------------------------------------------------------------
// Private
//--------------------------------------------------------------------------
/**
* @private
*/
_relocateEditorBar: function () {
this.options.toolbarHandler.append(this.editor.$el);
// TODO the next four lines are a huge hack: since the editor.$el
// is repositioned, the snippetsMenu elements are not at the
// correct position anymore... the whole logic has to be refactored.
if (this.editor.snippetsMenu) {
this.editor.snippetsMenu.$el.insertAfter(this.options.toolbarHandler);
this.editor.snippetsMenu.$snippetEditorArea.insertAfter(this.editor.snippetsMenu.$el);
}
},
});
});
......@@ -97,7 +97,7 @@ var WysiwygTranslate = WysiwygMultizone.extend({
var promise = this.editor.prependTo(this.$editor[0].ownerDocument.body);
return promise.then(function () {
self.options.toolbarHandler.append(self.editor.$el);
self._relocateEditorBar();
var attrs = ['placeholder', 'title', 'alt'];
_.each(attrs, function (attr) {
self._getEditableArea().filter('[' + attr + '*="data-oe-translation-id="]').filter(':empty, input, select, textarea, img').each(function () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment