[WIP] website: media editor
[odoo/odoo.git] / addons / website / static / src / js / website.editor.js
1 (function () {
2     'use strict';
3
4     var website = openerp.website;
5     var _t = openerp._t;
6
7     website.add_template_file('/website/static/src/xml/website.editor.xml');
8     website.dom_ready.done(function () {
9         var is_smartphone = $(document.body)[0].clientWidth < 767;
10
11         if (!is_smartphone) {
12             website.ready().then(website.init_editor);
13         } else {
14             // remove padding of fake editor bar
15             document.body.style.padding = 0;
16         }
17
18         $(document).on('click', 'a.js_link2post', function (ev) {
19             ev.preventDefault();
20             website.form(this.pathname, 'POST');
21         });
22
23         $(document).on('click', '.cke_editable label', function (ev) {
24             ev.preventDefault();
25         });
26
27         $(document).on('submit', '.cke_editable form', function (ev) {
28             // Disable form submition in editable mode
29             ev.preventDefault();
30         });
31
32         $(document).on('hide.bs.dropdown', '.dropdown', function (ev) {
33             // Prevent dropdown closing when a contenteditable children is focused
34             if (ev.originalEvent
35                     && $(ev.target).has(ev.originalEvent.target).length
36                     && $(ev.originalEvent.target).is('[contenteditable]')) {
37                 ev.preventDefault();
38             }
39         });
40     });
41
42     /**
43      * An editing host is an HTML element with @contenteditable=true, or the
44      * child of a document in designMode=on (but that one's not supported)
45      *
46      * https://dvcs.w3.org/hg/editing/raw-file/tip/editing.html#editing-host
47      */
48     function is_editing_host(element) {
49         return element.getAttribute('contentEditable') === 'true';
50     }
51     /**
52      * Checks that both the element's content *and the element itself* are
53      * editable: an editing host is considered non-editable because its content
54      * is editable but its attributes should not be considered editable
55      */
56     function is_editable_node(element) {
57         return !(element.data('oe-model') === 'ir.ui.view'
58               || element.data('cke-realelement')
59               || (is_editing_host(element) && element.getAttribute('attributeEditable') !== 'true')
60               || element.isReadOnly());
61     }
62
63     function link_dialog(editor) {
64         return new website.editor.RTELinkDialog(editor).appendTo(document.body);
65     }
66     function image_dialog(editor, image) {
67         return new website.editor.MediaDialog(editor, image).appendTo(document.body);
68     }
69
70     // only enable editors manually
71     CKEDITOR.disableAutoInline = true;
72     // EDIT ALL THE THINGS
73     CKEDITOR.dtd.$editable = _.omit(
74         $.extend({}, CKEDITOR.dtd.$block, CKEDITOR.dtd.$inline),
75         // well maybe not *all* the things
76         'ul', 'ol', 'li', 'table', 'tr', 'th', 'td');
77     // Disable removal of empty elements on CKEDITOR activation. Empty
78     // elements are used for e.g. support of FontAwesome icons
79     CKEDITOR.dtd.$removeEmpty = {};
80
81     website.init_editor = function () {
82         CKEDITOR.plugins.add('customdialogs', {
83             // requires: 'link,image',
84             init: function (editor) {
85                 editor.on('doubleclick', function (evt) {
86                     var element = evt.data.element;
87                     if ((element.is('img') || element.$.className.indexOf(' fa-') != -1) && is_editable_node(element)) {
88                         image_dialog(editor, element);
89                         return;
90                     }
91                     var parent = new CKEDITOR.dom.element(element.$.parentNode);
92                     if (parent.$.className.indexOf('media_iframe_video') != -1 && is_editable_node(parent)) {
93                         image_dialog(editor, parent);
94                         return;
95                     }
96
97                     element = get_selected_link(editor) || evt.data.element;
98                     if (!(element.is('a') && is_editable_node(element))) {
99                         return;
100                     }
101
102                     editor.getSelection().selectElement(element);
103                     link_dialog(editor);
104                 }, null, null, 500);
105
106                 //noinspection JSValidateTypes
107                 editor.addCommand('link', {
108                     exec: function (editor) {
109                         link_dialog(editor);
110                         return true;
111                     },
112                     canUndo: false,
113                     editorFocus: true,
114                     context: 'a',
115                 });
116                 //noinspection JSValidateTypes
117                 editor.addCommand('image', {
118                     exec: function (editor) {
119                         image_dialog(editor);
120                         return true;
121                     },
122                     canUndo: false,
123                     editorFocus: true,
124                     context: 'img',
125                 });
126
127                 editor.ui.addButton('Link', {
128                     label: 'Link',
129                     command: 'link',
130                     toolbar: 'links,10',
131                 });
132                 editor.ui.addButton('Image', {
133                     label: 'Image',
134                     command: 'image',
135                     toolbar: 'insert,10',
136                 });
137
138                 editor.setKeystroke(CKEDITOR.CTRL + 76 /*L*/, 'link');
139             }
140         });
141         CKEDITOR.plugins.add( 'tablebutton', {
142             requires: 'panelbutton,floatpanel',
143             init: function( editor ) {
144                 var label = "Table";
145
146                 editor.ui.add('TableButton', CKEDITOR.UI_PANELBUTTON, {
147                     label: label,
148                     title: label,
149                     // use existing 'table' icon
150                     icon: 'table',
151                     modes: { wysiwyg: true },
152                     editorFocus: true,
153                     // panel opens in iframe, @css is CSS file <link>-ed within
154                     // frame document, @attributes are set on iframe itself.
155                     panel: {
156                         css: '/website/static/src/css/editor.css',
157                         attributes: { 'role': 'listbox', 'aria-label': label, },
158                     },
159
160                     onBlock: function (panel, block) {
161                         block.autoSize = true;
162                         block.element.setHtml(openerp.qweb.render('website.editor.table.panel', {
163                             rows: 5,
164                             cols: 5,
165                         }));
166
167                         var $table = $(block.element.$).on('mouseenter', 'td', function (e) {
168                             var $e = $(e.target);
169                             var y = $e.index() + 1;
170                             var x = $e.closest('tr').index() + 1;
171
172                             $table
173                                 .find('td').removeClass('selected').end()
174                                 .find('tr:lt(' + String(x) + ')')
175                                 .children().filter(function () { return $(this).index() < y; })
176                                 .addClass('selected');
177                         }).on('click', 'td', function (e) {
178                             var $e = $(e.target);
179
180                             //noinspection JSPotentiallyInvalidConstructorUsage
181                             var table = new CKEDITOR.dom.element(
182                                 $(openerp.qweb.render('website.editor.table', {
183                                     rows: $e.closest('tr').index() + 1,
184                                     cols: $e.index() + 1,
185                                 }))[0]);
186
187                             editor.insertElement(table);
188                             setTimeout(function () {
189                                 //noinspection JSPotentiallyInvalidConstructorUsage
190                                 var firstCell = new CKEDITOR.dom.element(table.$.rows[0].cells[0]);
191                                 var range = editor.createRange();
192                                 range.moveToPosition(firstCell, CKEDITOR.POSITION_AFTER_START);
193                                 range.select();
194                             }, 0);
195                         });
196
197                         block.element.getDocument().getBody().setStyle('overflow', 'hidden');
198                         CKEDITOR.ui.fire('ready', this);
199                     },
200                 });
201             }
202         });
203
204         CKEDITOR.plugins.add('linkstyle', {
205             requires: 'panelbutton,floatpanel',
206             init: function (editor) {
207                 var label = "Link Style";
208
209                 editor.ui.add('LinkStyle', CKEDITOR.UI_PANELBUTTON, {
210                     label: label,
211                     title: label,
212                     icon: '/website/static/src/img/bglink.png',
213                     modes: { wysiwyg: true },
214                     editorFocus: true,
215                     context: 'a',
216                     panel: {
217                         css: '/web/static/lib/bootstrap/css/bootstrap.css',
218                         attributes: { 'role': 'listbox', 'aria-label': label },
219                     },
220
221                     types: {
222                         'btn-default': _t("Basic"),
223                         'btn-primary': _t("Primary"),
224                         'btn-success': _t("Success"),
225                         'btn-info': _t("Info"),
226                         'btn-warning': _t("Warning"),
227                         'btn-danger': _t("Danger"),
228                     },
229                     sizes: {
230                         'btn-xs': _t("Extra Small"),
231                         'btn-sm': _t("Small"),
232                         '': _t("Default"),
233                         'btn-lg': _t("Large")
234                     },
235
236                     onRender: function () {
237                         var self = this;
238                         editor.on('selectionChange', function (e) {
239                             var path = e.data.path, el;
240
241                             if (!(e = path.contains('a')) || e.isReadOnly()) {
242                                 self.disable();
243                                 return;
244                             }
245
246                             self.enable();
247                         });
248                         // no hook where button is available, so wait
249                         // "some time" after render.
250                         setTimeout(function () {
251                             self.disable();
252                         }, 0)
253                     },
254                     enable: function () {
255                         this.setState(CKEDITOR.TRISTATE_OFF);
256                     },
257                     disable: function () {
258                         this.setState(CKEDITOR.TRISTATE_DISABLED);
259                     },
260
261                     onOpen: function () {
262                         var link = get_selected_link(editor);
263                         var id = this._.id;
264                         var block = this._.panel._.panel._.blocks[id];
265                         var $root = $(block.element.$);
266                         $root.find('button').removeClass('active').removeProp('disabled');
267
268                         // enable buttons matching link state
269                         for (var type in this.types) {
270                             if (!this.types.hasOwnProperty(type)) { continue; }
271                             if (!link.hasClass(type)) { continue; }
272
273                             $root.find('button[data-type=types].' + type)
274                                  .addClass('active');
275                         }
276                         var found;
277                         for (var size in this.sizes) {
278                             if (!this.sizes.hasOwnProperty(size)) { continue; }
279                             if (!size || !link.hasClass(size)) { continue; }
280                             found = true;
281                             $root.find('button[data-type=sizes].' + size)
282                                  .addClass('active');
283                         }
284                         if (!found && link.hasClass('btn')) {
285                             $root.find('button[data-type="sizes"][data-set-class=""]')
286                                  .addClass('active');
287                         }
288                     },
289
290                     onBlock: function (panel, block) {
291                         var self = this;
292                         block.autoSize = true;
293
294                         var html = ['<div style="padding: 5px">'];
295                         html.push('<div style="white-space: nowrap">');
296                         _(this.types).each(function (label, key) {
297                             html.push(_.str.sprintf(
298                                 '<button type="button" class="btn %s" ' +
299                                         'data-type="types" data-set-class="%s">%s</button>',
300                                 key, key, label));
301                         });
302                         html.push('</div>');
303                         html.push('<div style="white-space: nowrap; margin: 5px 0; text-align: center">');
304                         _(this.sizes).each(function (label, key) {
305                             html.push(_.str.sprintf(
306                                 '<button type="button" class="btn btn-default %s" ' +
307                                         'data-type="sizes" data-set-class="%s">%s</button>',
308                                 key, key, label));
309                         });
310                         html.push('</div>');
311                         html.push('<button type="button" class="btn btn-link btn-block" ' +
312                                           'data-type="reset">Reset</button>');
313                         html.push('</div>');
314
315                         block.element.setHtml(html.join(' '));
316                         var $panel = $(block.element.$);
317                         $panel.on('click', 'button', function () {
318                             self.clicked(this);
319                         });
320                     },
321                     clicked: function (button) {
322                         editor.focus();
323                         editor.fire('saveSnapshot');
324
325                         var $button = $(button),
326                               $link = $(get_selected_link(editor).$);
327                         if (!$link.hasClass('btn')) {
328                             $link.addClass('btn btn-default');
329                         }
330                         switch($button.data('type')) {
331                         case 'reset':
332                             $link.removeClass('btn')
333                                  .removeClass(_.keys(this.types).join(' '))
334                                  .removeClass(_.keys(this.sizes).join(' '));
335                             break;
336                         case 'types':
337                             $link.removeClass(_.keys(this.types).join(' '))
338                                  .addClass($button.data('set-class'));
339                             break;
340                         case 'sizes':
341                             $link.removeClass(_.keys(this.sizes).join(' '))
342                                  .addClass($button.data('set-class'));
343                         }
344                         this._.panel.hide();
345
346                         editor.fire('saveSnapshot');
347                     },
348
349                 });
350             }
351         });
352
353         CKEDITOR.plugins.add('oeref', {
354             requires: 'widget',
355
356             init: function (editor) {
357                 var specials = {
358                     // Can't find the correct ACL rule to only allow img tags
359                     image: { content: '*' },
360                     html: { text: '*' },
361                     monetary: {
362                         text: {
363                             selector: 'span.oe_currency_value',
364                             allowedContent: { }
365                         }
366                     }
367                 };
368                 _(specials).each(function (editable, type) {
369                     editor.widgets.add(type, {
370                         draggable: false,
371                         editables: editable,
372                         upcast: function (el) {
373                             return  el.attributes['data-oe-type'] === type;
374
375                         }
376                     });
377                 });
378                 editor.widgets.add('oeref', {
379                     draggable: false,
380                     editables: {
381                         text: {
382                             selector: '*',
383                             allowedContent: { }
384                         },
385                     },
386                     upcast: function (el) {
387                         var type = el.attributes['data-oe-type'];
388                         if (!type || (type in specials)) {
389                             return false;
390                         }
391                         if (el.attributes['data-oe-original']) {
392                             while (el.children.length) {
393                                 el.children[0].remove();
394                             }
395                             el.add(new CKEDITOR.htmlParser.text(
396                                 el.attributes['data-oe-original']
397                             ));
398                         }
399                         return true;
400                     }
401                 });
402
403                 editor.widgets.add('icons', {
404                     draggable: false,
405
406                     init: function () {
407                         this.on('edit', function () {
408                             new website.editor.MediaDialog(editor, this.element)
409                                 .appendTo(document.body);
410                         });
411                     },
412                     upcast: function (el) {
413                         return el.hasClass('fa')
414                             // ignore ir.ui.view (other data-oe-model should
415                             // already have been matched by oeref and
416                             // monetary?
417                             && !el.attributes['data-oe-model'];
418                     }
419                 });
420             }
421         });
422
423         var editor = new website.EditorBar();
424         var $body = $(document.body);
425         editor.prependTo($body).then(function () {
426             if (location.search.indexOf("enable_editor") >= 0) {
427                 editor.edit();
428             }
429         });
430     };
431
432     /* ----- TOP EDITOR BAR FOR ADMIN ---- */
433     website.EditorBar = openerp.Widget.extend({
434         template: 'website.editorbar',
435         events: {
436             'click button[data-action=edit]': 'edit',
437             'click button[data-action=save]': 'save',
438             'click a[data-action=cancel]': 'cancel',
439         },
440         container: 'body',
441         customize_setup: function() {
442             var self = this;
443             var view_name = $(document.documentElement).data('view-xmlid');
444             if (!view_name) {
445                 this.$('#customize-menu-button').addClass("hidden");
446             }
447             var menu = $('#customize-menu');
448             this.$('#customize-menu-button').click(function(event) {
449                 menu.empty();
450                 openerp.jsonRpc('/website/customize_template_get', 'call', { 'xml_id': view_name }).then(
451                     function(result) {
452                         _.each(result, function (item) {
453                             if (item.xml_id === "website.debugger" && !window.location.search.match(/[&?]debug(&|$)/)) return;
454                             if (item.header) {
455                                 menu.append('<li class="dropdown-header">' + item.name + '</li>');
456                             } else {
457                                 menu.append(_.str.sprintf('<li role="presentation"><a href="#" data-view-id="%s" role="menuitem"><strong class="fa fa%s-square-o"></strong> %s</a></li>',
458                                     item.id, item.active ? '-check' : '', item.name));
459                             }
460                         });
461                         // Adding Static Menus
462                         menu.append('<li class="divider"></li>');
463                         menu.append('<li><a data-action="ace" href="#">HTML Editor</a></li>');
464                         menu.append('<li class="js_change_theme"><a href="/page/website.themes">Change Theme</a></li>');
465                         menu.append('<li><a href="/web#return_label=Website&action=website.action_module_website">Install Apps</a></li>');
466                         self.trigger('rte:customize_menu_ready');
467                     }
468                 );
469             });
470             menu.on('click', 'a[data-action!=ace]', function (event) {
471                 var view_id = $(event.currentTarget).data('view-id');
472                 openerp.jsonRpc('/website/customize_template_toggle', 'call', {
473                     'view_id': view_id
474                 }).then( function() {
475                     window.location.reload();
476                 });
477             });
478         },
479         start: function() {
480             // remove placeholder editor bar
481             var fakebar = document.getElementById('website-top-navbar-placeholder');
482             if (fakebar) {
483                 fakebar.parentNode.removeChild(fakebar);
484             }
485
486             var self = this;
487             this.saving_mutex = new openerp.Mutex();
488
489             this.$('#website-top-edit').hide();
490             this.$('#website-top-view').show();
491
492             $('.dropdown-toggle').dropdown();
493             this.customize_setup();
494
495             this.$buttons = {
496                 edit: this.$('button[data-action=edit]'),
497                 save: this.$('button[data-action=save]'),
498                 cancel: this.$('button[data-action=cancel]'),
499             };
500
501             this.rte = new website.RTE(this);
502             this.rte.on('change', this, this.proxy('rte_changed'));
503             this.rte.on('rte:ready', this, function () {
504                 self.setup_hover_buttons();
505                 self.trigger('rte:ready');
506                 self.check_height();
507             });
508
509             $(window).on('resize', _.debounce(this.check_height.bind(this), 50));
510             this.check_height();
511
512             if (website.is_editable_button) {
513                 this.$("button[data-action=edit]").removeClass("hidden");
514             }
515
516             return $.when(
517                 this._super.apply(this, arguments),
518                 this.rte.appendTo(this.$('#website-top-edit .nav.pull-right'))
519             ).then(function () {
520                 self.check_height();
521             });
522         },
523         check_height: function () {
524             var editor_height = this.$el.outerHeight();
525             if (this.get('height') != editor_height) {
526                 $(document.body).css('padding-top', editor_height);
527                 this.set('height', editor_height);
528             }
529         },
530         edit: function () {
531             this.$buttons.edit.prop('disabled', true);
532             this.$('#website-top-view').hide();
533             this.$('#website-top-edit').show();
534             $('.css_non_editable_mode_hidden').removeClass("css_non_editable_mode_hidden");
535
536             this.rte.start_edition().then(this.check_height.bind(this));
537             this.trigger('rte:called');
538         },
539         rte_changed: function () {
540             this.$buttons.save.prop('disabled', false);
541         },
542         save: function () {
543             var self = this;
544
545             observer.disconnect();
546             var editor = this.rte.editor;
547             var root = editor.element.$;
548             editor.destroy();
549             // FIXME: select editables then filter by dirty?
550             var defs = this.rte.fetch_editables(root)
551                 .filter('.oe_dirty')
552                 .removeAttr('contentEditable')
553                 .removeClass('oe_dirty oe_editable cke_focus oe_carlos_danger')
554                 .map(function () {
555                     var $el = $(this);
556                     // TODO: Add a queue with concurrency limit in webclient
557                     // https://github.com/medikoo/deferred/blob/master/lib/ext/function/gate.js
558                     return self.saving_mutex.exec(function () {
559                         return self.saveElement($el)
560                             .then(undefined, function (thing, response) {
561                                 // because ckeditor regenerates all the dom,
562                                 // we can't just setup the popover here as
563                                 // everything will be destroyed by the DOM
564                                 // regeneration. Add markings instead, and
565                                 // returns a new rejection with all relevant
566                                 // info
567                                 var id = _.uniqueId('carlos_danger_');
568                                 $el.addClass('oe_dirty oe_carlos_danger');
569                                 $el.addClass(id);
570                                 return $.Deferred().reject({
571                                     id: id,
572                                     error: response.data,
573                                 });
574                             });
575                     });
576                 }).get();
577             return $.when.apply(null, defs).then(function () {
578                 website.reload();
579             }, function (failed) {
580                 // If there were errors, re-enable edition
581                 self.rte.start_edition(true).then(function () {
582                     // jquery's deferred being a pain in the ass
583                     if (!_.isArray(failed)) { failed = [failed]; }
584
585                     _(failed).each(function (failure) {
586                         var html = failure.error.exception_type === "except_osv";
587                         if (html) {
588                             var msg = $("<div/>").text(failure.error.message).html();
589                             var data = msg.substring(3,msg.length-2).split(/', u'/);
590                             failure.error.message = '<b>' + data[0] + '</b><br/>' + data[1];
591                         }
592                         $(root).find('.' + failure.id)
593                             .removeClass(failure.id)
594                             .popover({
595                                 html: html,
596                                 trigger: 'hover',
597                                 content: failure.error.message,
598                                 placement: 'auto top',
599                             })
600                             // Force-show popovers so users will notice them.
601                             .popover('show');
602                     });
603                 });
604             });
605         },
606         /**
607          * Saves an RTE content, which always corresponds to a view section (?).
608          */
609         saveElement: function ($el) {
610             var markup = $el.prop('outerHTML');
611             return openerp.jsonRpc('/web/dataset/call', 'call', {
612                 model: 'ir.ui.view',
613                 method: 'save',
614                 args: [$el.data('oe-id'), markup,
615                        $el.data('oe-xpath') || null,
616                        website.get_context()],
617             });
618         },
619         cancel: function () {
620             new $.Deferred(function (d) {
621                 var $dialog = $(openerp.qweb.render('website.editor.discard')).appendTo(document.body);
622                 $dialog.on('click', '.btn-danger', function () {
623                     d.resolve();
624                 }).on('hidden.bs.modal', function () {
625                     d.reject();
626                 });
627                 d.always(function () {
628                     $dialog.remove();
629                 });
630                 $dialog.modal('show');
631             }).then(function () {
632                 website.reload();
633             })
634         },
635
636         /**
637          * Creates a "hover" button for link edition
638          *
639          * @param {Function} editfn edition function, called when clicking the button
640          * @returns {jQuery}
641          */
642         make_hover_button_link: function (editfn) {
643             return $(openerp.qweb.render('website.editor.hoverbutton.link', {}))
644                 .hide()
645                 .click(function (e) {
646                     e.preventDefault();
647                     e.stopPropagation();
648                     editfn.call(this, e);
649                 })
650                 .appendTo(document.body);
651         },
652
653         /**
654          * Creates a "hover" button for image
655          *
656          * @param {Function} editfn edition function, called when clicking the button
657          * @param {Function} stylefn edition style function, called when clicking the button
658          * @returns {jQuery}
659          */
660         make_hover_button_image: function (editfn, stylefn) {
661             var $div = $(openerp.qweb.render('website.editor.hoverbutton.media', {}))
662                 .hide()
663                 .appendTo(document.body);
664
665             $div.find('[data-toggle="dropdown"]').dropdown();
666             $div.find(".hover-edition-button").click(function (e) {
667                 e.preventDefault();
668                 e.stopPropagation();
669                 editfn.call(this, e);
670             });
671             if (stylefn) {
672                 $div.find(".hover-style-button").click(function (e) {
673                     e.preventDefault();
674                     e.stopPropagation();
675                     stylefn.call(this, e);
676                 });
677             }
678             return $div;
679         },
680         /**
681          * For UI clarity, during RTE edition when the user hovers links and
682          * images a small button should appear to make the capability clear,
683          * as not all users think of double-clicking the image or link.
684          */
685         setup_hover_buttons: function () {
686             var editor = this.rte.editor;
687             var $link_button = this.make_hover_button_link(function () {
688                 var sel = new CKEDITOR.dom.element(previous);
689                 editor.getSelection().selectElement(sel);
690                 if(sel.hasClass('fa')) {
691                     new website.editor.MediaDialog(editor, previous)
692                         .appendTo(document.body);
693                 } else if (previous.tagName.toUpperCase() === 'A') {
694                     link_dialog(editor);
695                 }
696                 $link_button.hide();
697                 previous = null;
698             });
699
700             function is_icons_widget(element) {
701                 var w = editor.widgets.getByElement(element);
702                 return w && w.name === 'icons';
703             }
704
705             // previous is the state of the button-trigger: it's the
706             // currently-ish hovered element which can trigger a button showing.
707             // -ish, because when moving to the button itself ``previous`` is
708             // still set to the element having triggered showing the button.
709             var previous;
710             $(editor.element.$).on('mouseover', 'a', function () {
711                 // Back from edit button -> ignore
712                 if (previous && previous === this) { return; }
713
714                 // hover button should appear for "editable" links and images
715                 // (img and a nodes whose *attributes* are editable, they
716                 // can not be "editing hosts") *or* for non-editing-host
717                 // elements bearing an ``fa`` class. These should have been
718                 // made into CKE widgets which are editing hosts by
719                 // definition, so instead check if the element has been
720                 // converted/upcasted to an fa widget
721                 var selected = new CKEDITOR.dom.element(this);
722                 if (!(is_editable_node(selected) || is_icons_widget(selected))) {
723                     return;
724                 }
725
726                 previous = this;
727                 var $selected = $(this);
728                 var position = $selected.offset();
729                 $link_button.show().offset({
730                     top: $selected.outerHeight()
731                             + position.top,
732                     left: $selected.outerWidth() / 2
733                             + position.left
734                             - $link_button.outerWidth() / 2
735                 })
736             }).on('mouseleave', 'a, img, .fa', function (e) {
737                 var current = document.elementFromPoint(e.clientX, e.clientY);
738                 if (current === $link_button[0] || $(current).parent()[0] === $link_button[0]) {
739                     return;
740                 }
741                 previous = null;
742             });
743         }
744     });
745
746     var blocks_selector = _.keys(CKEDITOR.dtd.$block).join(',');
747     /* ----- RICH TEXT EDITOR ---- */
748     website.RTE = openerp.Widget.extend({
749         tagName: 'li',
750         id: 'oe_rte_toolbar',
751         className: 'oe_right oe_rte_toolbar',
752         // editor.ui.items -> possible commands &al
753         // editor.applyStyle(new CKEDITOR.style({element: "span",styles: {color: "#(color)"},overrides: [{element: "font",attributes: {color: null}}]}, {color: '#ff0000'}));
754
755         init: function (EditorBar) {
756             this.EditorBar = EditorBar;
757             this._super.apply(this, arguments);
758         },
759
760         /**
761          * In Webkit-based browsers, triple-click will select a paragraph up to
762          * the start of the next "paragraph" including any empty space
763          * inbetween. When said paragraph is removed or altered, it nukes
764          * the empty space and brings part of the content of the next
765          * "paragraph" (which may well be e.g. an image) into the current one,
766          * completely fucking up layouts and breaking snippets.
767          *
768          * Try to fuck around with selections on triple-click to attempt to
769          * fix this garbage behavior.
770          *
771          * Note: for consistent behavior we may actually want to take over
772          * triple-clicks, in all browsers in order to ensure consistent cross-
773          * platform behavior instead of being at the mercy of rendering engines
774          * & platform selection quirks?
775          */
776         webkitSelectionFixer: function (root) {
777             root.addEventListener('click', function (e) {
778                 // only webkit seems to have a fucked up behavior, ignore others
779                 // FIXME: $.browser goes away in jquery 1.9...
780                 if (!$.browser.webkit) { return; }
781                 // http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-eventgroupings-mouseevents
782                 // The detail attribute indicates the number of times a mouse button has been pressed
783                 // we just want the triple click
784                 if (e.detail !== 3) { return; }
785                 e.preventDefault();
786
787                 // Get closest block-level element to the triple-clicked
788                 // element (using ckeditor's block list because why not)
789                 var $closest_block = $(e.target).closest(blocks_selector);
790
791                 // manually set selection range to the content of the
792                 // triple-clicked block-level element, to avoid crossing over
793                 // between block-level elements
794                 document.getSelection().selectAllChildren($closest_block[0]);
795             });
796         },
797         tableNavigation: function (root) {
798             var self = this;
799             $(root).on('keydown', function (e) {
800                 // ignore non-TAB
801                 if (e.which !== 9) { return; }
802
803                 if (self.handleTab(e)) {
804                     e.preventDefault();
805                 }
806             });
807         },
808         /**
809          * Performs whatever operation is necessary on a [TAB] hit, returns
810          * ``true`` if the event's default should be cancelled (if the TAB was
811          * handled by the function)
812          */
813         handleTab: function (event) {
814             var forward = !event.shiftKey;
815
816             var root = window.getSelection().getRangeAt(0).commonAncestorContainer;
817             var $cell = $(root).closest('td,th');
818
819             if (!$cell.length) { return false; }
820
821             var cell = $cell[0];
822
823             // find cell in same row
824             var row = cell.parentNode;
825             var sibling = row.cells[cell.cellIndex + (forward ? 1 : -1)];
826             if (sibling) {
827                 document.getSelection().selectAllChildren(sibling);
828                 return true;
829             }
830
831             // find cell in previous/next row
832             var table = row.parentNode;
833             var sibling_row = table.rows[row.rowIndex + (forward ? 1 : -1)];
834             if (sibling_row) {
835                 var new_cell = sibling_row.cells[forward ? 0 : sibling_row.cells.length - 1];
836                 document.getSelection().selectAllChildren(new_cell);
837                 return true;
838             }
839
840             // at edge cells, copy word/openoffice behavior: if going backwards
841             // from first cell do nothing, if going forwards from last cell add
842             // a row
843             if (forward) {
844                 var row_size = row.cells.length;
845                 var new_row = document.createElement('tr');
846                 while(row_size--) {
847                     var newcell = document.createElement('td');
848                     // zero-width space
849                     newcell.textContent = '\u200B';
850                     new_row.appendChild(newcell);
851                 }
852                 table.appendChild(new_row);
853                 document.getSelection().selectAllChildren(new_row.cells[0]);
854             }
855
856             return true;
857         },
858         /**
859          * Makes the page editable
860          *
861          * @param {Boolean} [restart=false] in case the edition was already set
862          *                                  up once and is being re-enabled.
863          * @returns {$.Deferred} deferred indicating when the RTE is ready
864          */
865         start_edition: function (restart) {
866             var self = this;
867             // create a single editor for the whole page
868             var root = document.getElementById('wrapwrap');
869             if (!restart) {
870                 $(root).on('dragstart', 'img', function (e) {
871                     e.preventDefault();
872                 });
873                 this.webkitSelectionFixer(root);
874                 this.tableNavigation(root);
875             }
876             var def = $.Deferred();
877             var editor = this.editor = CKEDITOR.inline(root, self._config());
878             editor.on('instanceReady', function () {
879                 editor.setReadOnly(false);
880                 // ckeditor set root to editable, disable it (only inner
881                 // sections are editable)
882                 // FIXME: are there cases where the whole editor is editable?
883                 editor.editable().setReadOnly(true);
884
885                 self.setup_editables(root);
886
887                 try {
888                     // disable firefox's broken table resizing thing
889                     document.execCommand("enableObjectResizing", false, "false");
890                     document.execCommand("enableInlineTableEditing", false, "false");
891                 } catch (e) {}
892
893                 // detect & setup any CKEDITOR widget within a newly dropped
894                 // snippet. There does not seem to be a simple way to do it for
895                 // HTML not inserted via ckeditor APIs:
896                 // https://dev.ckeditor.com/ticket/11472
897                 $(document.body)
898                     .off('snippet-dropped')
899                     .on('snippet-dropped', function (e, el) {
900                         // CKEDITOR data processor extended by widgets plugin
901                         // to add wrappers around upcasting elements
902                         el.innerHTML = editor.dataProcessor.toHtml(el.innerHTML, {
903                             fixForBody: false,
904                             dontFilter: true,
905                         });
906                         // then repository.initOnAll() handles the conversion
907                         // from wrapper to actual widget instance (or something
908                         // like that).
909                         setTimeout(function () {
910                             editor.widgets.initOnAll();
911                         }, 0);
912                     });
913
914                 self.trigger('rte:ready');
915                 def.resolve();
916             });
917             return def;
918         },
919
920         setup_editables: function (root) {
921             // selection of editable sub-items was previously in
922             // EditorBar#edit, but for some unknown reason the elements were
923             // apparently removed and recreated (?) at editor initalization,
924             // and observer setup was lost.
925             var self = this;
926             // setup dirty-marking for each editable element
927             this.fetch_editables(root)
928                 .addClass('oe_editable')
929                 .each(function () {
930                     var node = this;
931                     var $node = $(node);
932                     // only explicitly set contenteditable on view sections,
933                     // cke widgets system will do the widgets themselves
934                     if ($node.data('oe-model') === 'ir.ui.view') {
935                         node.contentEditable = true;
936                     }
937
938                     observer.observe(node, OBSERVER_CONFIG);
939                     $node.one('content_changed', function () {
940                         $node.addClass('oe_dirty');
941                         self.trigger('change');
942                     });
943                 });
944         },
945
946         fetch_editables: function (root) {
947             return $(root).find('[data-oe-model]')
948                 .not('link, script')
949                 .not('.oe_snippet_editor')
950                 .filter(function () {
951                     var $this = $(this);
952                     // keep view sections and fields which are *not* in
953                     // view sections for top-level editables
954                     return $this.data('oe-model') === 'ir.ui.view'
955                        || !$this.closest('[data-oe-model = "ir.ui.view"]').length;
956                 });
957         },
958
959         _current_editor: function () {
960             return CKEDITOR.currentInstance;
961         },
962         _config: function () {
963             // base plugins minus
964             // - magicline (captures mousein/mouseout -> breaks draggable)
965             // - contextmenu & tabletools (disable contextual menu)
966             // - bunch of unused plugins
967             var plugins = [
968                 'a11yhelp', 'basicstyles', 'blockquote',
969                 'clipboard', 'colorbutton', 'colordialog', 'dialogadvtab',
970                 'elementspath', /*'enterkey',*/ 'entities', 'filebrowser',
971                 'find', 'floatingspace','format', 'htmlwriter', 'iframe',
972                 'indentblock', 'indentlist', 'justify',
973                 'list', 'pastefromword', 'pastetext', 'preview',
974                 'removeformat', 'resize', 'save', 'selectall', 'stylescombo',
975                 'table', 'templates', 'toolbar', 'undo', 'wysiwygarea'
976             ];
977             return {
978                 // FIXME
979                 language: 'en',
980                 // Disable auto-generated titles
981                 // FIXME: accessibility, need to generate user-sensible title, used for @title and @aria-label
982                 title: false,
983                 plugins: plugins.join(','),
984                 uiColor: '',
985                 // FIXME: currently breaks RTE?
986                 // Ensure no config file is loaded
987                 customConfig: '',
988                 // Disable ACF
989                 allowedContent: true,
990                 // Don't insert paragraphs around content in e.g. <li>
991                 autoParagraph: false,
992                 // Don't automatically add &nbsp; or <br> in empty block-level
993                 // elements when edition starts
994                 fillEmptyBlocks: false,
995                 filebrowserImageUploadUrl: "/website/attach",
996                 // Support for sharedSpaces in 4.x
997                 extraPlugins: 'sharedspace,customdialogs,tablebutton,oeref,linkstyle',
998                 // Place toolbar in controlled location
999                 sharedSpaces: { top: 'oe_rte_toolbar' },
1000                 toolbar: [{
1001                         name: 'basicstyles', items: [
1002                         "Bold", "Italic", "Underline", "Strike", "Subscript",
1003                         "Superscript", "TextColor", "BGColor", "RemoveFormat"
1004                     ]},{
1005                     name: 'span', items: [
1006                         "Link", "LinkStyle", "Blockquote", "BulletedList",
1007                         "NumberedList", "Indent", "Outdent"
1008                     ]},{
1009                     name: 'justify', items: [
1010                         "JustifyLeft", "JustifyCenter", "JustifyRight", "JustifyBlock"
1011                     ]},{
1012                     name: 'special', items: [
1013                         "Image", "TableButton"
1014                     ]},{
1015                     name: 'styles', items: [
1016                         "Styles"
1017                     ]}
1018                 ],
1019                 // styles dropdown in toolbar
1020                 stylesSet: [
1021                     {name: "Normal", element: 'p'},
1022                     {name: "Heading 1", element: 'h1'},
1023                     {name: "Heading 2", element: 'h2'},
1024                     {name: "Heading 3", element: 'h3'},
1025                     {name: "Heading 4", element: 'h4'},
1026                     {name: "Heading 5", element: 'h5'},
1027                     {name: "Heading 6", element: 'h6'},
1028                     {name: "Formatted", element: 'pre'},
1029                     {name: "Address", element: 'address'}
1030                 ],
1031             };
1032         },
1033     });
1034
1035     website.editor = { };
1036     website.editor.Dialog = openerp.Widget.extend({
1037         events: {
1038             'hidden.bs.modal': 'destroy',
1039             'click button.save': 'save',
1040             'click button[data-dismiss="modal"]': 'cancel',
1041         },
1042         init: function (editor) {
1043             this._super();
1044             this.editor = editor;
1045         },
1046         start: function () {
1047             var sup = this._super();
1048             this.$el.modal({backdrop: 'static'});
1049             this.$('input:first').focus();
1050             return sup;
1051         },
1052         save: function () {
1053             this.close();
1054         },
1055         cancel: function () {
1056         },
1057         close: function () {
1058             this.$el.modal('hide');
1059         },
1060     });
1061
1062     website.editor.LinkDialog = website.editor.Dialog.extend({
1063         template: 'website.editor.dialog.link',
1064         events: _.extend({}, website.editor.Dialog.prototype.events, {
1065             'change :input.url-source': function (e) { this.changed($(e.target)); },
1066             'mousedown': function (e) {
1067                 var $target = $(e.target).closest('.list-group-item');
1068                 if (!$target.length || $target.hasClass('active')) {
1069                     // clicked outside groups, or clicked in active groups
1070                     return;
1071                 }
1072
1073                 this.changed($target.find('.url-source').filter(':input'));
1074             },
1075             'click button.remove': 'remove_link',
1076             'change input#link-text': function (e) {
1077                 this.text = $(e.target).val()
1078             },
1079         }),
1080         init: function (editor) {
1081             this._super(editor);
1082             this.text = null;
1083             // Store last-performed request to be able to cancel/abort it.
1084             this.page_exists_req = null;
1085             this.search_pages_req = null;
1086         },
1087         start: function () {
1088             var self = this;
1089             var last;
1090             this.$('#link-page').select2({
1091                 minimumInputLength: 1,
1092                 placeholder: _t("New or existing page"),
1093                 query: function (q) {
1094                     if (q.term == last) return;
1095                     last = q.term;
1096                     $.when(
1097                         self.page_exists(q.term),
1098                         self.fetch_pages(q.term)
1099                     ).then(function (exists, results) {
1100                         var rs = _.map(results, function (r) {
1101                             return { id: r.url, text: r.name, };
1102                         });
1103                         if (!exists) {
1104                             rs.push({
1105                                 create: true,
1106                                 id: q.term,
1107                                 text: _.str.sprintf(_t("Create page '%s'"), q.term),
1108                             });
1109                         }
1110                         q.callback({
1111                             more: false,
1112                             results: rs
1113                         });
1114                     }, function () {
1115                         q.callback({more: false, results: []});
1116                     });
1117                 },
1118             });
1119             return this._super().then(this.proxy('bind_data'));
1120         },
1121         save: function () {
1122             var self = this, _super = this._super.bind(this);
1123             var $e = this.$('.list-group-item.active .url-source').filter(':input');
1124             var val = $e.val();
1125             if (!val || !$e[0].checkValidity()) {
1126                 // FIXME: error message
1127                 $e.closest('.form-group').addClass('has-error');
1128                 $e.focus();
1129                 return;
1130             }
1131
1132             var done = $.when();
1133             if ($e.hasClass('email-address')) {
1134                 this.make_link('mailto:' + val, false, val);
1135             } else if ($e.hasClass('page')) {
1136                 var data = $e.select2('data');
1137                 if (!data.create) {
1138                     self.make_link(data.id, false, data.text);
1139                 } else {
1140                     // Create the page, get the URL back
1141                     done = $.get(_.str.sprintf(
1142                             '/website/add/%s?noredirect=1', encodeURI(data.id)))
1143                         .then(function (response) {
1144                             self.make_link(response, false, data.id);
1145                         });
1146                 }
1147             } else {
1148                 this.make_link(val, this.$('input.window-new').prop('checked'));
1149             }
1150             done.then(_super);
1151         },
1152         make_link: function (url, new_window, label) {
1153         },
1154         bind_data: function (text, href, new_window) {
1155             href = href || this.element && (this.element.data( 'cke-saved-href')
1156                                     ||  this.element.getAttribute('href'));
1157
1158             if (new_window === undefined) {
1159                 new_window = this.element
1160                         ? this.element.getAttribute('target') === '_blank'
1161                         : false;
1162             }
1163             if (text === undefined) {
1164                 text = this.element ? this.element.getText() : '';
1165             }
1166
1167             this.$('input#link-text').val(text);
1168             this.$('input.window-new').prop('checked', new_window);
1169
1170             if (!href) { return; }
1171             var match, $control;
1172             if ((match = /mailto:(.+)/.exec(href))) {
1173                 $control = this.$('input.email-address').val(match[1]);
1174             }
1175             if (!$control) {
1176                 $control = this.$('input.url').val(href);
1177             }
1178
1179             this.changed($control);
1180         },
1181         changed: function ($e) {
1182             this.$('.url-source').filter(':input').not($e).val('')
1183                     .filter(function () { return !!$(this).data('select2'); })
1184                     .select2('data', null);
1185             $e.closest('.list-group-item')
1186                 .addClass('active')
1187                 .siblings().removeClass('active')
1188                 .addBack().removeClass('has-error');
1189         },
1190         call: function (method, args, kwargs) {
1191             var self = this;
1192             var req = method + '_req';
1193
1194             if (this[req]) { this[req].abort(); }
1195
1196             return this[req] = openerp.jsonRpc('/web/dataset/call_kw', 'call', {
1197                 model: 'website',
1198                 method: method,
1199                 args: args,
1200                 kwargs: kwargs,
1201             }).always(function () {
1202                 self[req] = null;
1203             });
1204         },
1205         page_exists: function (term) {
1206             return this.call('page_exists', [null, term], {
1207                 context: website.get_context(),
1208             });
1209         },
1210         fetch_pages: function (term) {
1211             return this.call('search_pages', [null, term], {
1212                 limit: 9,
1213                 context: website.get_context(),
1214             });
1215         },
1216     });
1217     website.editor.RTELinkDialog = website.editor.LinkDialog.extend({
1218         start: function () {
1219             var element;
1220             if ((element = this.get_selected_link()) && element.hasAttribute('href')) {
1221                 this.editor.getSelection().selectElement(element);
1222             }
1223             this.element = element;
1224             if (element) {
1225                 this.add_removal_button();
1226             }
1227
1228             return this._super();
1229         },
1230         add_removal_button: function () {
1231             this.$('.modal-footer').prepend(
1232                 openerp.qweb.render(
1233                     'website.editor.dialog.link.footer-button'));
1234         },
1235         remove_link: function () {
1236             var editor = this.editor;
1237             // same issue as in make_link
1238             setTimeout(function () {
1239                 editor.removeStyle(new CKEDITOR.style({
1240                     element: 'a',
1241                     type: CKEDITOR.STYLE_INLINE,
1242                     alwaysRemoveElement: true,
1243                 }));
1244             }, 0);
1245             this.close();
1246         },
1247         /**
1248          * Greatly simplified version of CKEDITOR's
1249          * plugins.link.dialogs.link.onOk.
1250          *
1251          * @param {String} url
1252          * @param {Boolean} [new_window=false]
1253          * @param {String} [label=null]
1254          */
1255         make_link: function (url, new_window, label) {
1256             var attributes = {href: url, 'data-cke-saved-href': url};
1257             var to_remove = [];
1258             if (new_window) {
1259                 attributes['target'] = '_blank';
1260             } else {
1261                 to_remove.push('target');
1262             }
1263
1264             if (this.element) {
1265                 this.element.setAttributes(attributes);
1266                 this.element.removeAttributes(to_remove);
1267                 if (this.text) { this.element.setText(this.text); }
1268             } else {
1269                 var selection = this.editor.getSelection();
1270                 var range = selection.getRanges(true)[0];
1271
1272                 if (range.collapsed) {
1273                     //noinspection JSPotentiallyInvalidConstructorUsage
1274                     var text = new CKEDITOR.dom.text(
1275                         this.text || label || url);
1276                     range.insertNode(text);
1277                     range.selectNodeContents(text);
1278                 }
1279
1280                 //noinspection JSPotentiallyInvalidConstructorUsage
1281                 new CKEDITOR.style({
1282                     type: CKEDITOR.STYLE_INLINE,
1283                     element: 'a',
1284                     attributes: attributes,
1285                 }).applyToRange(range);
1286
1287                 // focus dance between RTE & dialog blow up the stack in Safari
1288                 // and Chrome, so defer select() until dialog has been closed
1289                 setTimeout(function () {
1290                     range.select();
1291                 }, 0);
1292             }
1293         },
1294         /**
1295          * CKEDITOR.plugins.link.getSelectedLink ignores the editor's root,
1296          * if the editor is set directly on a link it will thus not work.
1297          */
1298         get_selected_link: function () {
1299             return get_selected_link(this.editor);
1300         },
1301     });
1302
1303     website.editor.Media = openerp.Widget.extend({
1304         init: function (parent, editor, media) {
1305             this._super();
1306             this.parent = parent;
1307             this.editor = editor;
1308             this.media = media;
1309         },
1310         start: function () {
1311             this.$preview = this.$('.preview-container').detach();
1312             return this._super();
1313         },
1314         search: function (needle) {
1315         },
1316         save: function () {
1317         },
1318         clear: function () {
1319         },
1320         cancel: function () {
1321         },
1322         close: function () {
1323         },
1324     });
1325     website.editor.MediaDialog = website.editor.Dialog.extend({
1326         template: 'website.editor.dialog.media',
1327         events : _.extend({}, website.editor.Dialog.prototype.events, {
1328             'input input#icon-search': 'search',
1329         }),
1330
1331         init: function (editor, media) {
1332             this._super(editor);
1333             this.editor = editor;
1334             this.page = 0;
1335             this.media = media;
1336         },
1337         start: function () {
1338             var self = this;
1339             this.imageDialog = new website.editor.RTEImageDialog(this, this.editor, this.media);
1340             this.imageDialog.appendTo(this.$("#editor-media-image"));
1341             this.iconDialog = new website.editor.FontIconsDialog(this, this.editor, this.media);
1342             this.iconDialog.appendTo(this.$("#editor-media-icon"));
1343             this.videoDialog = new website.editor.VideoDialog(this, this.editor, this.media);
1344             this.videoDialog.appendTo(this.$("#editor-media-video"));
1345
1346             this.active = this.imageDialog;
1347
1348             $('a[data-toggle="tab"]').on('shown.bs.tab', function (event) {
1349                 if ($(event.target).is('[href="#editor-media-image"]')) {
1350                     self.active = self.imageDialog;
1351                     self.$('.nav-tabs li.search').removeClass("hidden");
1352                 } else if ($(event.target).is('[href="#editor-media-icon"]')) {
1353                     self.active = self.iconDialog;
1354                     self.$('.nav-tabs li.search').removeClass("hidden");
1355                 } else if ($(event.target).is('[href="#editor-media-video"]')) {
1356                     self.active = self.videoDialog;
1357                     self.$('.nav-tabs li.search').addClass("hidden");
1358                 }
1359             });
1360
1361             if (this.media.$.nodeName === "IMG") {
1362                 this.$('[href="#editor-media-image"]').tab('show');
1363             } else if (this.media.$.className.match(/(^|\s)media_iframe_video($|\s)/)) {
1364                 this.$('[href="#editor-media-video"]').tab('show');
1365             } else if (this.media.$.className.match(/(^|\s)fa($|\s)/)) {
1366                 this.$('[href="#editor-media-icon"]').tab('show');
1367             }
1368
1369             return this._super();
1370         },
1371         save: function () {
1372             this.media.$.innerHTML = "";
1373             if (this.active !== this.imageDialog) {
1374                 this.imageDialog.clear();
1375             }
1376             if (this.active !== this.iconDialog) {
1377                 this.iconDialog.clear();
1378             }
1379             if (this.active !== this.videoDialog) {
1380                 this.videoDialog.clear();
1381             }
1382             this.active.save();
1383
1384             this.media.$.className = this.media.$.className.replace(/\s+/g, ' ');
1385
1386             return this._super();
1387         },
1388         search: function () {
1389             var needle = this.$("input#icon-search").val();
1390             this.active.search(needle || "");
1391         }
1392     });
1393
1394     /**
1395      * ImageDialog widget. Lets users change an image, including uploading a
1396      * new image in OpenERP or selecting the image style (if supported by
1397      * the caller).
1398      *
1399      * Initialized as usual, but the caller can hook into two events:
1400      *
1401      * @event start({url, style}) called during dialog initialization and
1402      *                            opening, the handler can *set* the ``url``
1403      *                            and ``style`` properties on its parameter
1404      *                            to provide these as default values to the
1405      *                            dialog
1406      * @event save({url, style}) called during dialog finalization, the handler
1407      *                           is provided with the image url and style
1408      *                           selected by the users (or possibly the ones
1409      *                           originally passed in)
1410      */
1411     var IMAGES_PER_ROW = 6;
1412     var IMAGES_ROWS = 4;
1413     website.editor.ImageDialog = website.editor.Media.extend({
1414         template: 'website.editor.dialog.image',
1415         events: _.extend({}, website.editor.Dialog.prototype.events, {
1416             'change .url-source': function (e) {
1417                 this.changed($(e.target));
1418             },
1419             'click button.filepicker': function () {
1420                 this.$('input[type=file]').click();
1421             },
1422             'change input[type=file]': 'file_selection',
1423             'change input[type=text]': function () {
1424                 this.$('form').submit();
1425             },
1426             'submit form': 'form_submit',
1427             //'change input.url': 'preview_image',
1428             //'change select.image-style': 'preview_image',
1429             'click .existing-attachments img': 'select_existing',
1430             'click .pager > li': function (e) {
1431                 e.preventDefault();
1432                 var $target = $(e.currentTarget);
1433                 if ($target.hasClass('disabled')) {
1434                     return;
1435                 }
1436                 this.page += $target.hasClass('previous') ? -1 : 1;
1437                 this.display_attachments();
1438             },
1439             'click .existing-attachment-remove': 'try_remove',
1440         }),
1441
1442         init: function (parent, editor, media) {
1443             this.page = 0;
1444             this._super(parent, editor, media);
1445         },
1446         start: function () {
1447             var res = this._super();
1448
1449             var o = { url: null };
1450             // avoid typos, prevent addition of new properties to the object
1451             Object.preventExtensions(o);
1452             this.trigger('start', o);
1453
1454             this.set_image(o.url);
1455
1456             return res;
1457         },
1458         save: function () {
1459             this.trigger('save', {
1460                 url: this.$('input.url').val()
1461             });
1462             this.media.renameNode("img");
1463             this.media.$.attributes.src = this.$('input.url').val();
1464             return this._super();
1465         },
1466         clear: function () {
1467             this.media.$.className = this.media.$.className.replace(/(^|\s)(img(\s|$)|img-[^\s]*)/g, ' ');
1468         },
1469         cancel: function () {
1470             this.trigger('cancel');
1471         },
1472
1473         set_image: function (url, error) {
1474             var self = this;
1475             this.$('input.url').val(error ? null : url || '');
1476             this.fetch_existing().then(function () {
1477                 self.selected_existing(url);
1478             });
1479         },
1480
1481         form_submit: function (event) {
1482             var self = this;
1483             var $form = this.$('form[action="/website/attach"]');
1484             if (!$form.find('input[name="upload"]').val().length) {
1485                 var url = $form.find('input[name="url"]').val();
1486                 console.log(url);
1487                 if (this.selected_existing(url).size()) {
1488                     event.preventDefault();
1489                     return false;
1490                 }
1491             }
1492             var callback = _.uniqueId('func_');
1493             this.$('input[name=func]').val(callback);
1494             window[callback] = function (url, error) {
1495                 delete window[callback];
1496                 self.file_selected(url, error);
1497             };
1498         },
1499         file_selection: function () {
1500             this.$el.addClass('nosave');
1501             this.$('form').removeClass('has-error').find('.help-block').empty();
1502             this.$('button.filepicker').removeClass('btn-danger btn-success');
1503             this.$('form').submit();
1504         },
1505         file_selected: function(url, error) {
1506             var $button = this.$('button.filepicker');
1507             if (!error) {
1508                 $button.addClass('btn-success');
1509             } else {
1510                 url = null;
1511                 this.$('form').addClass('has-error')
1512                     .find('.help-block').text(error);
1513                 $button.addClass('btn-danger');
1514             }
1515             this.set_image(url, error);
1516         },
1517
1518         fetch_existing: function () {
1519             return openerp.jsonRpc('/web/dataset/call_kw', 'call', {
1520                 model: 'ir.attachment',
1521                 method: 'search_read',
1522                 args: [],
1523                 kwargs: {
1524                     fields: ['name', 'website_url'],
1525                     domain: [['res_model', '=', 'ir.ui.view']],
1526                     order: 'id desc',
1527                     context: website.get_context(),
1528                 }
1529             }).then(this.proxy('fetched_existing'));
1530         },
1531         fetched_existing: function (records) {
1532             this.records = records;
1533             this.display_attachments();
1534         },
1535         display_attachments: function () {
1536             this.$('.help-block').empty();
1537             var per_screen = IMAGES_PER_ROW * IMAGES_ROWS;
1538
1539             var from = this.page * per_screen;
1540             var records = this.records;
1541
1542             // Create rows of 3 records
1543             var rows = _(records).chain()
1544                 .slice(from, from + per_screen)
1545                 .groupBy(function (_, index) { return Math.floor(index / IMAGES_PER_ROW); })
1546                 .values()
1547                 .value();
1548
1549             this.$('.existing-attachments').replaceWith(
1550                 openerp.qweb.render(
1551                     'website.editor.dialog.image.existing.content', {rows: rows}));
1552             this.$('.pager')
1553                 .find('li.previous').toggleClass('disabled', (from === 0)).end()
1554                 .find('li.next').toggleClass('disabled', (from + per_screen >= records.length));
1555
1556         },
1557         select_existing: function (e) {
1558             var link = $(e.currentTarget).attr('src');
1559             this.selected_existing(link);
1560         },
1561         selected_existing: function (link) {
1562             this.$('input.url').val(link);
1563             this.$('.existing-attachment-cell.media_selected').removeClass("media_selected");
1564             var $select = this.$('.existing-attachment-cell img').filter(function () {
1565                 return $(this).attr("src") == link;
1566             }).first();
1567             $select.parent().addClass("media_selected");
1568             return $select;
1569         },
1570
1571         try_remove: function (e) {
1572             var $help_block = this.$('.help-block').empty();
1573             var self = this;
1574             var id = parseInt($(e.target).data('id'), 10);
1575             var attachment = _.findWhere(this.records, {id: id});
1576
1577             return openerp.jsonRpc('/web/dataset/call_kw', 'call', {
1578                 model: 'ir.attachment',
1579                 method: 'try_remove',
1580                 args: [],
1581                 kwargs: {
1582                     ids: [id],
1583                     context: website.get_context()
1584                 }
1585             }).then(function (prevented) {
1586                 if (_.isEmpty(prevented)) {
1587                     self.records = _.without(self.records, attachment);
1588                     self.display_attachments();
1589                     return;
1590                 }
1591                 $help_block.replaceWith(openerp.qweb.render(
1592                     'website.editor.dialog.image.existing.error', {
1593                         views: prevented[id]
1594                     }
1595                 ));
1596             });
1597         },
1598     });
1599
1600     website.editor.RTEImageDialog = website.editor.ImageDialog.extend({
1601         init: function (parent, editor, media) {
1602             this._super(parent, editor, media);
1603
1604             this.on('start', this, this.proxy('started'));
1605             this.on('save', this, this.proxy('saved'));
1606         },
1607         started: function (holder) {
1608             if (!this.media) {
1609                 var selection = this.editor.getSelection();
1610                 this.media = selection && selection.getSelectedElement();
1611             }
1612
1613             var el = this.media;
1614             if (!el || !el.is('img')) {
1615                 return;
1616             }
1617             holder.url = el.getAttribute('src');
1618         },
1619         saved: function (data) {
1620             var element, editor = this.editor;
1621             if (!(element = this.media)) {
1622                 element = editor.document.createElement('img');
1623                 element.addClass('img');
1624                 element.addClass('img-responsive');
1625                 // focus event handler interactions between bootstrap (modal)
1626                 // and ckeditor (RTE) lead to blowing the stack in Safari and
1627                 // Chrome (but not FF) when this is done synchronously =>
1628                 // defer insertion so modal has been hidden & destroyed before
1629                 // it happens
1630                 setTimeout(function () {
1631                     editor.insertElement(element);
1632                 }, 0);
1633             }
1634
1635             var style = data.style;
1636             element.setAttribute('src', data.url);
1637             element.removeAttribute('data-cke-saved-src');
1638             if (style) { element.addClass(style); }
1639         },
1640     });
1641
1642     function get_selected_link(editor) {
1643         var sel = editor.getSelection(),
1644             el = sel.getSelectedElement();
1645         if (el && el.is('a')) { return el; }
1646
1647         var range = sel.getRanges(true)[0];
1648         if (!range) { return null; }
1649
1650         range.shrink(CKEDITOR.SHRINK_TEXT);
1651         var commonAncestor = range.getCommonAncestor();
1652         var viewRoot = editor.elementPath(commonAncestor).contains(function (element) {
1653             return element.data('oe-model') === 'ir.ui.view';
1654         });
1655         if (!viewRoot) { return null; }
1656         // if viewRoot is the first link, don't edit it.
1657         return new CKEDITOR.dom.elementPath(commonAncestor, viewRoot)
1658                 .contains('a', true);
1659     }
1660
1661     website.editor.FontIconsDialog = website.editor.Media.extend({
1662         template: 'website.editor.dialog.font-icons',
1663         events : _.extend({}, website.editor.Dialog.prototype.events, {
1664             change: 'update_preview',
1665             'click .font-icons-icon': function (e) {
1666                 e.preventDefault();
1667                 e.stopPropagation();
1668
1669                 this.$('#fa-icon').val(e.target.getAttribute('data-id'));
1670                 this.update_preview();
1671             },
1672             'click #fa-preview span': function (e) {
1673                 e.preventDefault();
1674                 e.stopPropagation();
1675
1676                 this.$('#fa-size').val(e.target.getAttribute('data-size'));
1677                 this.update_preview();
1678             },
1679         }),
1680
1681         // List of FontAwesome icons in 4.0.3, extracted from the cheatsheet.
1682         // Each icon provides the unicode codepoint as ``text`` and the class
1683         // name as ``id`` so the whole thing can be fed directly to select2
1684         // without post-processing and do the right thing (except for the part
1685         // where we still need to implement ``initSelection``)
1686         // TODO: add id/name to the text in order to allow FAYT selection of icons?
1687         icons: [{"text": "\uf000", "id": "fa-glass"}, {"text": "\uf001", "id": "fa-music"}, {"text": "\uf002", "id": "fa-search"}, {"text": "\uf003", "id": "fa-envelope-o"}, {"text": "\uf004", "id": "fa-heart"}, {"text": "\uf005", "id": "fa-star"}, {"text": "\uf006", "id": "fa-star-o"}, {"text": "\uf007", "id": "fa-user"}, {"text": "\uf008", "id": "fa-film"}, {"text": "\uf009", "id": "fa-th-large"}, {"text": "\uf00a", "id": "fa-th"}, {"text": "\uf00b", "id": "fa-th-list"}, {"text": "\uf00c", "id": "fa-check"}, {"text": "\uf00d", "id": "fa-times"}, {"text": "\uf00e", "id": "fa-search-plus"}, {"text": "\uf010", "id": "fa-search-minus"}, {"text": "\uf011", "id": "fa-power-off"}, {"text": "\uf012", "id": "fa-signal"}, {"text": "\uf013", "id": "fa-cog"}, {"text": "\uf014", "id": "fa-trash-o"}, {"text": "\uf015", "id": "fa-home"}, {"text": "\uf016", "id": "fa-file-o"}, {"text": "\uf017", "id": "fa-clock-o"}, {"text": "\uf018", "id": "fa-road"}, {"text": "\uf019", "id": "fa-download"}, {"text": "\uf01a", "id": "fa-arrow-circle-o-down"}, {"text": "\uf01b", "id": "fa-arrow-circle-o-up"}, {"text": "\uf01c", "id": "fa-inbox"}, {"text": "\uf01d", "id": "fa-play-circle-o"}, {"text": "\uf01e", "id": "fa-repeat"}, {"text": "\uf021", "id": "fa-refresh"}, {"text": "\uf022", "id": "fa-list-alt"}, {"text": "\uf023", "id": "fa-lock"}, {"text": "\uf024", "id": "fa-flag"}, {"text": "\uf025", "id": "fa-headphones"}, {"text": "\uf026", "id": "fa-volume-off"}, {"text": "\uf027", "id": "fa-volume-down"}, {"text": "\uf028", "id": "fa-volume-up"}, {"text": "\uf029", "id": "fa-qrcode"}, {"text": "\uf02a", "id": "fa-barcode"}, {"text": "\uf02b", "id": "fa-tag"}, {"text": "\uf02c", "id": "fa-tags"}, {"text": "\uf02d", "id": "fa-book"}, {"text": "\uf02e", "id": "fa-bookmark"}, {"text": "\uf02f", "id": "fa-print"}, {"text": "\uf030", "id": "fa-camera"}, {"text": "\uf031", "id": "fa-font"}, {"text": "\uf032", "id": "fa-bold"}, {"text": "\uf033", "id": "fa-italic"}, {"text": "\uf034", "id": "fa-text-height"}, {"text": "\uf035", "id": "fa-text-width"}, {"text": "\uf036", "id": "fa-align-left"}, {"text": "\uf037", "id": "fa-align-center"}, {"text": "\uf038", "id": "fa-align-right"}, {"text": "\uf039", "id": "fa-align-justify"}, {"text": "\uf03a", "id": "fa-list"}, {"text": "\uf03b", "id": "fa-outdent"}, {"text": "\uf03c", "id": "fa-indent"}, {"text": "\uf03d", "id": "fa-video-camera"}, {"text": "\uf03e", "id": "fa-picture-o"}, {"text": "\uf040", "id": "fa-pencil"}, {"text": "\uf041", "id": "fa-map-marker"}, {"text": "\uf042", "id": "fa-adjust"}, {"text": "\uf043", "id": "fa-tint"}, {"text": "\uf044", "id": "fa-pencil-square-o"}, {"text": "\uf045", "id": "fa-share-square-o"}, {"text": "\uf046", "id": "fa-check-square-o"}, {"text": "\uf047", "id": "fa-arrows"}, {"text": "\uf048", "id": "fa-step-backward"}, {"text": "\uf049", "id": "fa-fast-backward"}, {"text": "\uf04a", "id": "fa-backward"}, {"text": "\uf04b", "id": "fa-play"}, {"text": "\uf04c", "id": "fa-pause"}, {"text": "\uf04d", "id": "fa-stop"}, {"text": "\uf04e", "id": "fa-forward"}, {"text": "\uf050", "id": "fa-fast-forward"}, {"text": "\uf051", "id": "fa-step-forward"}, {"text": "\uf052", "id": "fa-eject"}, {"text": "\uf053", "id": "fa-chevron-left"}, {"text": "\uf054", "id": "fa-chevron-right"}, {"text": "\uf055", "id": "fa-plus-circle"}, {"text": "\uf056", "id": "fa-minus-circle"}, {"text": "\uf057", "id": "fa-times-circle"}, {"text": "\uf058", "id": "fa-check-circle"}, {"text": "\uf059", "id": "fa-question-circle"}, {"text": "\uf05a", "id": "fa-info-circle"}, {"text": "\uf05b", "id": "fa-crosshairs"}, {"text": "\uf05c", "id": "fa-times-circle-o"}, {"text": "\uf05d", "id": "fa-check-circle-o"}, {"text": "\uf05e", "id": "fa-ban"}, {"text": "\uf060", "id": "fa-arrow-left"}, {"text": "\uf061", "id": "fa-arrow-right"}, {"text": "\uf062", "id": "fa-arrow-up"}, {"text": "\uf063", "id": "fa-arrow-down"}, {"text": "\uf064", "id": "fa-share"}, {"text": "\uf065", "id": "fa-expand"}, {"text": "\uf066", "id": "fa-compress"}, {"text": "\uf067", "id": "fa-plus"}, {"text": "\uf068", "id": "fa-minus"}, {"text": "\uf069", "id": "fa-asterisk"}, {"text": "\uf06a", "id": "fa-exclamation-circle"}, {"text": "\uf06b", "id": "fa-gift"}, {"text": "\uf06c", "id": "fa-leaf"}, {"text": "\uf06d", "id": "fa-fire"}, {"text": "\uf06e", "id": "fa-eye"}, {"text": "\uf070", "id": "fa-eye-slash"}, {"text": "\uf071", "id": "fa-exclamation-triangle"}, {"text": "\uf072", "id": "fa-plane"}, {"text": "\uf073", "id": "fa-calendar"}, {"text": "\uf074", "id": "fa-random"}, {"text": "\uf075", "id": "fa-comment"}, {"text": "\uf076", "id": "fa-magnet"}, {"text": "\uf077", "id": "fa-chevron-up"}, {"text": "\uf078", "id": "fa-chevron-down"}, {"text": "\uf079", "id": "fa-retweet"}, {"text": "\uf07a", "id": "fa-shopping-cart"}, {"text": "\uf07b", "id": "fa-folder"}, {"text": "\uf07c", "id": "fa-folder-open"}, {"text": "\uf07d", "id": "fa-arrows-v"}, {"text": "\uf07e", "id": "fa-arrows-h"}, {"text": "\uf080", "id": "fa-bar-chart-o"}, {"text": "\uf081", "id": "fa-twitter-square"}, {"text": "\uf082", "id": "fa-facebook-square"}, {"text": "\uf083", "id": "fa-camera-retro"}, {"text": "\uf084", "id": "fa-key"}, {"text": "\uf085", "id": "fa-cogs"}, {"text": "\uf086", "id": "fa-comments"}, {"text": "\uf087", "id": "fa-thumbs-o-up"}, {"text": "\uf088", "id": "fa-thumbs-o-down"}, {"text": "\uf089", "id": "fa-star-half"}, {"text": "\uf08a", "id": "fa-heart-o"}, {"text": "\uf08b", "id": "fa-sign-out"}, {"text": "\uf08c", "id": "fa-linkedin-square"}, {"text": "\uf08d", "id": "fa-thumb-tack"}, {"text": "\uf08e", "id": "fa-external-link"}, {"text": "\uf090", "id": "fa-sign-in"}, {"text": "\uf091", "id": "fa-trophy"}, {"text": "\uf092", "id": "fa-github-square"}, {"text": "\uf093", "id": "fa-upload"}, {"text": "\uf094", "id": "fa-lemon-o"}, {"text": "\uf095", "id": "fa-phone"}, {"text": "\uf096", "id": "fa-square-o"}, {"text": "\uf097", "id": "fa-bookmark-o"}, {"text": "\uf098", "id": "fa-phone-square"}, {"text": "\uf099", "id": "fa-twitter"}, {"text": "\uf09a", "id": "fa-facebook"}, {"text": "\uf09b", "id": "fa-github"}, {"text": "\uf09c", "id": "fa-unlock"}, {"text": "\uf09d", "id": "fa-credit-card"}, {"text": "\uf09e", "id": "fa-rss"}, {"text": "\uf0a0", "id": "fa-hdd-o"}, {"text": "\uf0a1", "id": "fa-bullhorn"}, {"text": "\uf0f3", "id": "fa-bell"}, {"text": "\uf0a3", "id": "fa-certificate"}, {"text": "\uf0a4", "id": "fa-hand-o-right"}, {"text": "\uf0a5", "id": "fa-hand-o-left"}, {"text": "\uf0a6", "id": "fa-hand-o-up"}, {"text": "\uf0a7", "id": "fa-hand-o-down"}, {"text": "\uf0a8", "id": "fa-arrow-circle-left"}, {"text": "\uf0a9", "id": "fa-arrow-circle-right"}, {"text": "\uf0aa", "id": "fa-arrow-circle-up"}, {"text": "\uf0ab", "id": "fa-arrow-circle-down"}, {"text": "\uf0ac", "id": "fa-globe"}, {"text": "\uf0ad", "id": "fa-wrench"}, {"text": "\uf0ae", "id": "fa-tasks"}, {"text": "\uf0b0", "id": "fa-filter"}, {"text": "\uf0b1", "id": "fa-briefcase"}, {"text": "\uf0b2", "id": "fa-arrows-alt"}, {"text": "\uf0c0", "id": "fa-users"}, {"text": "\uf0c1", "id": "fa-link"}, {"text": "\uf0c2", "id": "fa-cloud"}, {"text": "\uf0c3", "id": "fa-flask"}, {"text": "\uf0c4", "id": "fa-scissors"}, {"text": "\uf0c5", "id": "fa-files-o"}, {"text": "\uf0c6", "id": "fa-paperclip"}, {"text": "\uf0c7", "id": "fa-floppy-o"}, {"text": "\uf0c8", "id": "fa-square"}, {"text": "\uf0c9", "id": "fa-bars"}, {"text": "\uf0ca", "id": "fa-list-ul"}, {"text": "\uf0cb", "id": "fa-list-ol"}, {"text": "\uf0cc", "id": "fa-strikethrough"}, {"text": "\uf0cd", "id": "fa-underline"}, {"text": "\uf0ce", "id": "fa-table"}, {"text": "\uf0d0", "id": "fa-magic"}, {"text": "\uf0d1", "id": "fa-truck"}, {"text": "\uf0d2", "id": "fa-pinterest"}, {"text": "\uf0d3", "id": "fa-pinterest-square"}, {"text": "\uf0d4", "id": "fa-google-plus-square"}, {"text": "\uf0d5", "id": "fa-google-plus"}, {"text": "\uf0d6", "id": "fa-money"}, {"text": "\uf0d7", "id": "fa-caret-down"}, {"text": "\uf0d8", "id": "fa-caret-up"}, {"text": "\uf0d9", "id": "fa-caret-left"}, {"text": "\uf0da", "id": "fa-caret-right"}, {"text": "\uf0db", "id": "fa-columns"}, {"text": "\uf0dc", "id": "fa-sort"}, {"text": "\uf0dd", "id": "fa-sort-asc"}, {"text": "\uf0de", "id": "fa-sort-desc"}, {"text": "\uf0e0", "id": "fa-envelope"}, {"text": "\uf0e1", "id": "fa-linkedin"}, {"text": "\uf0e2", "id": "fa-undo"}, {"text": "\uf0e3", "id": "fa-gavel"}, {"text": "\uf0e4", "id": "fa-tachometer"}, {"text": "\uf0e5", "id": "fa-comment-o"}, {"text": "\uf0e6", "id": "fa-comments-o"}, {"text": "\uf0e7", "id": "fa-bolt"}, {"text": "\uf0e8", "id": "fa-sitemap"}, {"text": "\uf0e9", "id": "fa-umbrella"}, {"text": "\uf0ea", "id": "fa-clipboard"}, {"text": "\uf0eb", "id": "fa-lightbulb-o"}, {"text": "\uf0ec", "id": "fa-exchange"}, {"text": "\uf0ed", "id": "fa-cloud-download"}, {"text": "\uf0ee", "id": "fa-cloud-upload"}, {"text": "\uf0f0", "id": "fa-user-md"}, {"text": "\uf0f1", "id": "fa-stethoscope"}, {"text": "\uf0f2", "id": "fa-suitcase"}, {"text": "\uf0a2", "id": "fa-bell-o"}, {"text": "\uf0f4", "id": "fa-coffee"}, {"text": "\uf0f5", "id": "fa-cutlery"}, {"text": "\uf0f6", "id": "fa-file-text-o"}, {"text": "\uf0f7", "id": "fa-building-o"}, {"text": "\uf0f8", "id": "fa-hospital-o"}, {"text": "\uf0f9", "id": "fa-ambulance"}, {"text": "\uf0fa", "id": "fa-medkit"}, {"text": "\uf0fb", "id": "fa-fighter-jet"}, {"text": "\uf0fc", "id": "fa-beer"}, {"text": "\uf0fd", "id": "fa-h-square"}, {"text": "\uf0fe", "id": "fa-plus-square"}, {"text": "\uf100", "id": "fa-angle-double-left"}, {"text": "\uf101", "id": "fa-angle-double-right"}, {"text": "\uf102", "id": "fa-angle-double-up"}, {"text": "\uf103", "id": "fa-angle-double-down"}, {"text": "\uf104", "id": "fa-angle-left"}, {"text": "\uf105", "id": "fa-angle-right"}, {"text": "\uf106", "id": "fa-angle-up"}, {"text": "\uf107", "id": "fa-angle-down"}, {"text": "\uf108", "id": "fa-desktop"}, {"text": "\uf109", "id": "fa-laptop"}, {"text": "\uf10a", "id": "fa-tablet"}, {"text": "\uf10b", "id": "fa-mobile"}, {"text": "\uf10c", "id": "fa-circle-o"}, {"text": "\uf10d", "id": "fa-quote-left"}, {"text": "\uf10e", "id": "fa-quote-right"}, {"text": "\uf110", "id": "fa-spinner"}, {"text": "\uf111", "id": "fa-circle"}, {"text": "\uf112", "id": "fa-reply"}, {"text": "\uf113", "id": "fa-github-alt"}, {"text": "\uf114", "id": "fa-folder-o"}, {"text": "\uf115", "id": "fa-folder-open-o"}, {"text": "\uf118", "id": "fa-smile-o"}, {"text": "\uf119", "id": "fa-frown-o"}, {"text": "\uf11a", "id": "fa-meh-o"}, {"text": "\uf11b", "id": "fa-gamepad"}, {"text": "\uf11c", "id": "fa-keyboard-o"}, {"text": "\uf11d", "id": "fa-flag-o"}, {"text": "\uf11e", "id": "fa-flag-checkered"}, {"text": "\uf120", "id": "fa-terminal"}, {"text": "\uf121", "id": "fa-code"}, {"text": "\uf122", "id": "fa-reply-all"}, {"text": "\uf122", "id": "fa-mail-reply-all"}, {"text": "\uf123", "id": "fa-star-half-o"}, {"text": "\uf124", "id": "fa-location-arrow"}, {"text": "\uf125", "id": "fa-crop"}, {"text": "\uf126", "id": "fa-code-fork"}, {"text": "\uf127", "id": "fa-chain-broken"}, {"text": "\uf128", "id": "fa-question"}, {"text": "\uf129", "id": "fa-info"}, {"text": "\uf12a", "id": "fa-exclamation"}, {"text": "\uf12b", "id": "fa-superscript"}, {"text": "\uf12c", "id": "fa-subscript"}, {"text": "\uf12d", "id": "fa-eraser"}, {"text": "\uf12e", "id": "fa-puzzle-piece"}, {"text": "\uf130", "id": "fa-microphone"}, {"text": "\uf131", "id": "fa-microphone-slash"}, {"text": "\uf132", "id": "fa-shield"}, {"text": "\uf133", "id": "fa-calendar-o"}, {"text": "\uf134", "id": "fa-fire-extinguisher"}, {"text": "\uf135", "id": "fa-rocket"}, {"text": "\uf136", "id": "fa-maxcdn"}, {"text": "\uf137", "id": "fa-chevron-circle-left"}, {"text": "\uf138", "id": "fa-chevron-circle-right"}, {"text": "\uf139", "id": "fa-chevron-circle-up"}, {"text": "\uf13a", "id": "fa-chevron-circle-down"}, {"text": "\uf13b", "id": "fa-html5"}, {"text": "\uf13c", "id": "fa-css3"}, {"text": "\uf13d", "id": "fa-anchor"}, {"text": "\uf13e", "id": "fa-unlock-alt"}, {"text": "\uf140", "id": "fa-bullseye"}, {"text": "\uf141", "id": "fa-ellipsis-h"}, {"text": "\uf142", "id": "fa-ellipsis-v"}, {"text": "\uf143", "id": "fa-rss-square"}, {"text": "\uf144", "id": "fa-play-circle"}, {"text": "\uf145", "id": "fa-ticket"}, {"text": "\uf146", "id": "fa-minus-square"}, {"text": "\uf147", "id": "fa-minus-square-o"}, {"text": "\uf148", "id": "fa-level-up"}, {"text": "\uf149", "id": "fa-level-down"}, {"text": "\uf14a", "id": "fa-check-square"}, {"text": "\uf14b", "id": "fa-pencil-square"}, {"text": "\uf14c", "id": "fa-external-link-square"}, {"text": "\uf14d", "id": "fa-share-square"}, {"text": "\uf14e", "id": "fa-compass"}, {"text": "\uf150", "id": "fa-caret-square-o-down"}, {"text": "\uf151", "id": "fa-caret-square-o-up"}, {"text": "\uf152", "id": "fa-caret-square-o-right"}, {"text": "\uf153", "id": "fa-eur"}, {"text": "\uf154", "id": "fa-gbp"}, {"text": "\uf155", "id": "fa-usd"}, {"text": "\uf156", "id": "fa-inr"}, {"text": "\uf157", "id": "fa-jpy"}, {"text": "\uf158", "id": "fa-rub"}, {"text": "\uf159", "id": "fa-krw"}, {"text": "\uf15a", "id": "fa-btc"}, {"text": "\uf15b", "id": "fa-file"}, {"text": "\uf15c", "id": "fa-file-text"}, {"text": "\uf15d", "id": "fa-sort-alpha-asc"}, {"text": "\uf15e", "id": "fa-sort-alpha-desc"}, {"text": "\uf160", "id": "fa-sort-amount-asc"}, {"text": "\uf161", "id": "fa-sort-amount-desc"}, {"text": "\uf162", "id": "fa-sort-numeric-asc"}, {"text": "\uf163", "id": "fa-sort-numeric-desc"}, {"text": "\uf164", "id": "fa-thumbs-up"}, {"text": "\uf165", "id": "fa-thumbs-down"}, {"text": "\uf166", "id": "fa-youtube-square"}, {"text": "\uf167", "id": "fa-youtube"}, {"text": "\uf168", "id": "fa-xing"}, {"text": "\uf169", "id": "fa-xing-square"}, {"text": "\uf16a", "id": "fa-youtube-play"}, {"text": "\uf16b", "id": "fa-dropbox"}, {"text": "\uf16c", "id": "fa-stack-overflow"}, {"text": "\uf16d", "id": "fa-instagram"}, {"text": "\uf16e", "id": "fa-flickr"}, {"text": "\uf170", "id": "fa-adn"}, {"text": "\uf171", "id": "fa-bitbucket"}, {"text": "\uf172", "id": "fa-bitbucket-square"}, {"text": "\uf173", "id": "fa-tumblr"}, {"text": "\uf174", "id": "fa-tumblr-square"}, {"text": "\uf175", "id": "fa-long-arrow-down"}, {"text": "\uf176", "id": "fa-long-arrow-up"}, {"text": "\uf177", "id": "fa-long-arrow-left"}, {"text": "\uf178", "id": "fa-long-arrow-right"}, {"text": "\uf179", "id": "fa-apple"}, {"text": "\uf17a", "id": "fa-windows"}, {"text": "\uf17b", "id": "fa-android"}, {"text": "\uf17c", "id": "fa-linux"}, {"text": "\uf17d", "id": "fa-dribbble"}, {"text": "\uf17e", "id": "fa-skype"}, {"text": "\uf180", "id": "fa-foursquare"}, {"text": "\uf181", "id": "fa-trello"}, {"text": "\uf182", "id": "fa-female"}, {"text": "\uf183", "id": "fa-male"}, {"text": "\uf184", "id": "fa-gittip"}, {"text": "\uf185", "id": "fa-sun-o"}, {"text": "\uf186", "id": "fa-moon-o"}, {"text": "\uf187", "id": "fa-archive"}, {"text": "\uf188", "id": "fa-bug"}, {"text": "\uf189", "id": "fa-vk"}, {"text": "\uf18a", "id": "fa-weibo"}, {"text": "\uf18b", "id": "fa-renren"}, {"text": "\uf18c", "id": "fa-pagelines"}, {"text": "\uf18d", "id": "fa-stack-exchange"}, {"text": "\uf18e", "id": "fa-arrow-circle-o-right"}, {"text": "\uf190", "id": "fa-arrow-circle-o-left"}, {"text": "\uf191", "id": "fa-caret-square-o-left"}, {"text": "\uf192", "id": "fa-dot-circle-o"}, {"text": "\uf193", "id": "fa-wheelchair"}, {"text": "\uf194", "id": "fa-vimeo-square"}, {"text": "\uf195", "id": "fa-try"}, {"text": "\uf196", "id": "fa-plus-square-o"}],
1688         /**
1689          * Initializes select2: in Chrome and Safari, <select> font apparently
1690          * isn't customizable (?) and the fontawesome glyphs fail to appear.
1691          */
1692         start: function () {
1693             return this._super().then(this.proxy('load_data'));
1694         },
1695         search: function (needle) {
1696             var icons = this.icons;
1697             if (needle) {
1698                 icons = _(icons).filter(function (icon) {
1699                     return icon.id.substring(3).indexOf(needle) !== -1;
1700                 });
1701             }
1702
1703             this.$('div.font-icons-icons').html(
1704                 openerp.qweb.render(
1705                     'website.editor.dialog.font-icons.icons',
1706                     {icons: icons}));
1707         },
1708         /**
1709          * Removes existing FontAwesome classes on the bound element, and sets
1710          * all the new ones if necessary.
1711          */
1712         save: function () {
1713             var classes = (this.media.$.className||"").split(/\s+/);
1714             var non_fa_classes = _.reject(classes, function (cls) {
1715                 return cls === 'fa' || /^fa-/.test(cls);
1716             });
1717             var final_classes = non_fa_classes.concat(this.get_fa_classes());
1718             this.media.$.className = final_classes.join(' ');
1719             this.media.renameNode("span");
1720             this._super();
1721         },
1722         /**
1723          * Looks up the various FontAwesome classes on the bound element and
1724          * sets the corresponding template/form elements to the right state.
1725          * If multiple classes of the same category are present on an element
1726          * (e.g. fa-lg and fa-3x) the last one occurring will be selected,
1727          * which may not match the visual look of the element.
1728          */
1729         load_data: function () {
1730             var classes = (this.media.$.className||"").split(/\s+/);
1731             for (var i = 0; i < classes.length; i++) {
1732                 var cls = classes[i];
1733                 switch(cls) {
1734                 case 'fa-2x':case 'fa-3x':case 'fa-4x':case 'fa-5x':
1735                     // size classes
1736                     this.$('#fa-size').val(cls);
1737                     continue;
1738                 case 'fa-spin':
1739                 case 'fa-rotate-90':case 'fa-rotate-180':case 'fa-rotate-270':
1740                 case 'fa-flip-horizontal':case 'fa-rotate-vertical':
1741                     this.$('#fa-rotation').val(cls);
1742                     continue;
1743                 case 'fa-fw':
1744                     continue;
1745                 case 'fa-border':
1746                     this.$('#fa-border').prop('checked', true);
1747                     continue;
1748                 default:
1749                     if (!/^fa-/.test(cls)) { continue; }
1750                     this.$('#fa-icon').val(cls);
1751                 }
1752             }
1753             this.update_preview();
1754         },
1755         /**
1756          * Serializes the dialog to an array of FontAwesome classes. Includes
1757          * the base ``fa``.
1758          */
1759         get_fa_classes: function () {
1760             return [
1761                 'fa',
1762                 this.$('#fa-icon').val(),
1763                 this.$('#fa-size').val(),
1764                 this.$('#fa-rotation').val(),
1765                 this.$('#fa-border').prop('checked') ? 'fa-border' : ''
1766             ];
1767         },
1768         update_preview: function () {
1769             this.$preview.empty();
1770             var $preview = this.$('#fa-preview').empty();
1771
1772             var sizes = ['', 'fa-2x', 'fa-3x', 'fa-4x', 'fa-5x'];
1773             var classes = this.get_fa_classes();
1774             var no_sizes = _.difference(classes, sizes).join(' ');
1775             var selected = false;
1776             for (var i = sizes.length - 1; i >= 0; i--) {
1777                 var size = sizes[i];
1778
1779                 var $p = $('<span>')
1780                         .attr('data-size', size)
1781                         .addClass(size)
1782                         .addClass(no_sizes);
1783                 if ((size && _.contains(classes, size)) || (!size && !selected)) {
1784                     this.$preview.append($p.clone());
1785                     $p.addClass('font-icons-selected');
1786                     selected = true;
1787                 }
1788                 $preview.prepend($p);
1789             }
1790         },
1791         clear: function () {
1792             this.media.$.className = this.media.$.className.replace(/(^|\s)(fa(\s|$)|fa-[^\s]*)/g, ' ');
1793         },
1794     });
1795
1796     website.editor.VideoDialog = website.editor.Media.extend({
1797         template: 'website.editor.dialog.video',
1798         events : _.extend({}, website.editor.Dialog.prototype.events, {
1799             'blur input#urlvideo': 'get_video',
1800         }),
1801         start: function () {
1802             this.$iframe = this.$("iframe");
1803             var $media = $(this.media.$);
1804             if ($media.hasClass("media_iframe_video")) {
1805                 var src = $media.data('src');
1806                 this.$("input#urlvideo").val(src);
1807                 this.$("#autoplay").attr("checked", src.indexOf('autoplay=1') != -1);
1808                 this.get_video();
1809             }
1810             return this._super();
1811         },
1812         get_url: function () {
1813             var video_id = this.$("#video_id").val();
1814             var video_type = this.$("#video_type").val();
1815             switch (video_type) {
1816                 case "youtube":
1817                     return "//www.youtube.com/embed/" + video_id + "?autoplay=" + (this.$("#autoplay").is(":checked") ? 1 : 0);
1818                 case "vimeo":
1819                     return "//player.vimeo.com/video/" + video_id + "?autoplay=" + (this.$("#autoplay").is(":checked") ? 1 : 0);
1820                 case "dailymotion":
1821                     return "//www.dailymotion.com/embed/video/" + video_id + "?autoplay=" + (this.$("#autoplay").is(":checked") ? 1 : 0);
1822             }
1823         },
1824         get_video: function () {
1825             var needle = this.$("input#urlvideo").val();
1826             var video_id;
1827             var video_type;
1828
1829             if (needle.indexOf(".youtube.") != -1) {
1830                 video_type = "youtube";
1831                 video_id = needle.match(/\.youtube\.[a-z]+\/(embed\/|watch\?v=)?([^\/?&]+)/i)[2];
1832             } else if (needle.indexOf("//youtu.") != -1) {
1833                 video_type = "youtube";
1834                 video_id = needle.match(/youtube\.[a-z]+\/([^\/?&]+)/i)[1];
1835             } else if (needle.indexOf("player.vimeo.") != -1 || needle.indexOf("//vimeo.") != -1) {
1836                 video_type = "vimeo";
1837                 video_id = needle.match(/vimeo\.[a-z]+\/(video\/)?([^?&]+)/i)[2];
1838                 console.log(video_id);
1839             } else if (needle.indexOf(".dailymotion.") != -1) {
1840                 video_type = "dailymotion";
1841                 video_id = needle.match(/dailymotion\.[a-z]+\/(embed\/)?(video\/)?([^\/?&]+)/i)[3];
1842             }
1843
1844             this.$("#video_id").val(video_id);
1845             this.$("#video_type").val(video_type);
1846
1847             this.$iframe.attr("src", this.get_url());
1848         },
1849         save: function () {
1850             var video_id = this.$("#video_id").val();
1851             var video_type = this.$("#video_type").val();
1852             var $iframe = $(
1853                 '<div class="media_iframe_video" data-src="'+this.get_url()+'">'+
1854                     '<div class="css_editable_mode_display">&nbsp;</div>'+
1855                     '<iframe src="'+this.get_url()+'" frameborder="0" allowfullscreen="allowfullscreen"></iframe>'+
1856                 '</div>');
1857             $iframe.attr("style", this.$(this.media.$).attr("style"));
1858             $(this.media.$).replaceWith($iframe);
1859             this._super();
1860         },
1861         clear: function () {
1862             delete this.media.$.dataset.src;
1863             this.media.$.className = this.media.$.className.replace(/(^|\s)media_iframe_video(\s|$)/g, ' ');
1864         },
1865     });
1866
1867     website.Observer = window.MutationObserver || window.WebkitMutationObserver || window.JsMutationObserver;
1868     var OBSERVER_CONFIG = {
1869         childList: true,
1870         attributes: true,
1871         characterData: true,
1872         subtree: true,
1873         attributeOldValue: true,
1874     };
1875     var observer = new website.Observer(function (mutations) {
1876         // NOTE: Webkit does not fire DOMAttrModified => webkit browsers
1877         //       relying on JsMutationObserver shim (Chrome < 18, Safari < 6)
1878         //       will not mark dirty on attribute changes (@class, img/@src,
1879         //       a/@href, ...)
1880         _(mutations).chain()
1881             .filter(function (m) {
1882                 // ignore any change related to mundane image-edit-button
1883                 if (m.target && m.target.className
1884                         && m.target.className.indexOf('image-edit-button') !== -1) {
1885                     return false;
1886                 }
1887                 switch(m.type) {
1888                 case 'attributes': // ignore .cke_focus being added or removed
1889                     // ignore id modification
1890                     if (m.attributeName === 'id') { return false; }
1891                     // if attribute is not a class, can't be .cke_focus change
1892                     if (m.attributeName !== 'class') { return true; }
1893
1894                     // find out what classes were added or removed
1895                     var oldClasses = (m.oldValue || '').split(/\s+/);
1896                     var newClasses = m.target.className.split(/\s+/);
1897                     var change = _.union(_.difference(oldClasses, newClasses),
1898                                          _.difference(newClasses, oldClasses));
1899                     // ignore mutation if the *only* change is .cke_focus
1900                     return change.length !== 1 || change[0] === 'cke_focus';
1901                 case 'childList':
1902                     setTimeout(function () {
1903                         fixup_browser_crap(m.addedNodes);
1904                     }, 0);
1905                     // Remove ignorable nodes from addedNodes or removedNodes,
1906                     // if either set remains non-empty it's considered to be an
1907                     // impactful change. Otherwise it's ignored.
1908                     return !!remove_mundane_nodes(m.addedNodes).length ||
1909                            !!remove_mundane_nodes(m.removedNodes).length;
1910                 default:
1911                     return true;
1912                 }
1913             })
1914             .map(function (m) {
1915                 var node = m.target;
1916                 while (node && !$(node).hasClass('oe_editable')) {
1917                     node = node.parentNode;
1918                 }
1919                 return node;
1920             })
1921             .compact()
1922             .uniq()
1923             .each(function (node) { $(node).trigger('content_changed'); })
1924     });
1925     function remove_mundane_nodes(nodes) {
1926         if (!nodes || !nodes.length) { return []; }
1927
1928         var output = [];
1929         for(var i=0; i<nodes.length; ++i) {
1930             var node = nodes[i];
1931             if (node.nodeType === document.ELEMENT_NODE) {
1932                 if (node.nodeName === 'BR' && node.getAttribute('type') === '_moz') {
1933                     // <br type="_moz"> appears when focusing RTE in FF, ignore
1934                     continue;
1935                 } else if (node.nodeName === 'DIV' && $(node).hasClass('oe_drop_zone')) {
1936                     // ignore dropzone inserted by snippets
1937                     continue
1938                 }
1939             }
1940
1941             output.push(node);
1942         }
1943         return output;
1944     }
1945
1946     var programmatic_styles = {
1947         float: 1,
1948         display: 1,
1949         position: 1,
1950         top: 1,
1951         left: 1,
1952         right: 1,
1953         bottom: 1,
1954     };
1955     function fixup_browser_crap(nodes) {
1956         if (!nodes || !nodes.length) { return; }
1957         /**
1958          * Checks that the node only has a @style, not e.g. @class or whatever
1959          */
1960         function has_only_style(node) {
1961             for (var i = 0; i < node.attributes.length; i++) {
1962                 var attr = node.attributes[i];
1963                 if (attr.attributeName !== 'style') {
1964                     return false;
1965                 }
1966             }
1967             return true;
1968         }
1969         function has_programmatic_style(node) {
1970             for (var i = 0; i < node.style.length; i++) {
1971               var style = node.style[i];
1972               if (programmatic_styles[style]) {
1973                   return true;
1974               }
1975             }
1976             return false;
1977         }
1978
1979         for (var i=0; i<nodes.length; ++i) {
1980             var node = nodes[i];
1981             if (node.nodeType !== document.ELEMENT_NODE) { continue; }
1982
1983             if (node.nodeName === 'SPAN'
1984                     && has_only_style(node)
1985                     && !has_programmatic_style(node)) {
1986                 // On backspace, webkit browsers create a <span> with a bunch of
1987                 // inline styles "remembering" where they come from. Refs:
1988                 //    http://www.neotericdesign.com/blog/2013/3/working-around-chrome-s-contenteditable-span-bug
1989                 //    https://code.google.com/p/chromium/issues/detail?id=226941
1990                 //    https://bugs.webkit.org/show_bug.cgi?id=114791
1991                 //    http://dev.ckeditor.com/ticket/9998
1992                 var child, parent = node.parentNode;
1993                 while (child = node.firstChild) {
1994                     parent.insertBefore(child, node);
1995                 }
1996                 parent.removeChild(node);
1997                 // chances are we had e.g.
1998                 //  <p>foo</p>
1999                 //  <p>bar</p>
2000                 // merged the lines getting this in webkit
2001                 //  <p>foo<span>bar</span></p>
2002                 // after unwrapping the span, we have 2 text nodes
2003                 //  <p>[foo][bar]</p>
2004                 // where we probably want only one. Normalize will merge
2005                 // adjacent text nodes. However, does not merge text and cdata
2006                 parent.normalize();
2007             }
2008         }
2009     }
2010 })();