1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
odoo.define('website.translateMenu', function (require) {
'use strict';
var utils = require('web.utils');
var TranslatorMenu = require('website.editor.menu.translate');
var websiteNavbarData = require('website.navbar');
var TranslatePageMenu = websiteNavbarData.WebsiteNavbarActionWidget.extend({
assetLibs: ['web_editor.compiled_assets_wysiwyg', 'website.compiled_assets_wysiwyg'],
actions: _.extend({}, websiteNavbarData.WebsiteNavbar.prototype.actions || {}, {
edit_master: '_goToMasterPage',
translate: '_startTranslateMode',
}),
/**
* @override
*/
start: function () {
var context;
this.trigger_up('context_get', {
extra: true,
callback: function (ctx) {
context = ctx;
},
});
this._mustEditTranslations = context.edit_translations;
if (this._mustEditTranslations) {
var url = window.location.href.replace(/([?&])&*edit_translations[^&#]*&?/, '\$1');
window.history.replaceState({}, null, url);
this._startTranslateMode();
}
return this._super.apply(this, arguments);
},
//--------------------------------------------------------------------------
// Actions
//--------------------------------------------------------------------------
/**
* Redirects the user to the same page but in the original language and in
* edit mode.
*
* @private
* @returns {Promise}
*/
_goToMasterPage: function () {
var current = document.createElement('a');
current.href = window.location.toString();
current.search += (current.search ? '&' : '?') + 'enable_editor=1';
// we are in translate mode, the pathname starts with '/<url_code/'
current.pathname = current.pathname.substr(Math.max(0, current.pathname.indexOf('/', 1)));
var link = document.createElement('a');
link.href = '/website/lang/default';
link.search += (link.search ? '&' : '?') + 'r=' + encodeURIComponent(current.pathname + current.search + current.hash);
window.location = link.href;
return new Promise(function () {});
},
/**
* Redirects the user to the same page in translation mode (or start the
* translator is translation mode is already enabled).
*
* @private
* @returns {Promise}
*/
_startTranslateMode: function () {
if (!this._mustEditTranslations) {
window.location.search += '&edit_translations';
return new Promise(function () {});
}
var translator = new TranslatorMenu(this);
// We don't want the BS dropdown to close
// when clicking in a element to translate
$('.dropdown-menu').on('click', '.o_editable', function (ev) {
ev.stopPropagation();
});
return translator.prependTo(document.body);
},
});
websiteNavbarData.websiteNavbarRegistry.add(TranslatePageMenu, '.o_menu_systray:has([data-action="translate"])');
});
|