(function () { 'use strict'; var website = openerp.website; website.add_template_file('/website/static/src/xml/website.snippets.xml'); website.EditorBar.include({ start: function () { var self = this; $("[data-oe-model]").on('click', function (event) { var $this = $(event.srcElement); var tag = $this[0] && $this[0].tagName.toLowerCase(); if (!(tag === 'a' || tag === "button") && !$this.parents("a, button").length) { self.$('[data-action="edit"]').parent().effect('bounce', {distance: 18, times: 5}, 250); } }); return this._super(); }, edit: function () { var self = this; $("body").off('click'); website.snippet.stop_animation(); window.snippets = this.snippets = new website.snippet.BuildingBlock(this); this.snippets.appendTo(this.$el); this.on('rte:ready', this, function () { self.snippets.$button.removeClass("hidden"); website.snippet.start_animation(); $(website.snippet.readyAnimation).each(function() { var animation = $(this).data("snippet-view"); if (animation) { animation.$target.on('focus', '*', function(){ animation.stop(); }); animation.$target.on('blur', '*', function(){ animation.start(); }); } }); }); return this._super.apply(this, arguments); }, save: function () { this.snippets.make_active(false); // FIXME: call clean_for_save on all snippets of the page, not only modified ones // important for banner of parallax that changes data automatically. this.snippets.clean_for_save(); remove_added_snippet_id(); this._super(); }, }); /* ----- SNIPPET SELECTOR ---- */ var observer = new website.Observer(function (mutations) { if (!_(mutations).find(function (m) { return m.type === 'childList' && m.addedNodes.length > 0; })) { return; } hack_to_add_snippet_id() }); // puts $el at the same absolute position as $target function hack_to_add_snippet_id () { _.each(website.snippet.selector, function (val) { $(val[0]).each(function() { if (!$(this).is("[data-snippet-id]") && $(this).parents("[data-oe-model]").length) { $(this).attr("data-snippet-id", val[1]); } }); }); } function remove_added_snippet_id () { _.each(website.snippet.selector, function (val) { $(val[0]).each(function() { if ($(this).data("snippet-id") === val[1]) { $(this).removeAttr("data-snippet-id"); } }); }); } $(document).ready(function() { hack_to_add_snippet_id(); }); // 'snippet-dropped' is triggered on '#oe_snippets' whith $target as attribute when a snippet is dropped // 'snippet-activated' is triggered on '#oe_snippets' (and on snippet) when a snippet is activated if (!website.snippet) website.snippet = {}; website.snippet.styles = {}; website.snippet.selector = []; website.snippet.BuildingBlock = openerp.Widget.extend({ template: 'website.snippets', activeSnippets: [], init: function (parent) { this.parent = parent; this._super.apply(this, arguments); if(!$('#oe_manipulators').length){ $("
").appendTo('body'); } this.$active_snipped_id = false; hack_to_add_snippet_id(); this.snippets = []; observer.observe(document.body, { childList: true, subtree: true, }); }, dom_filter: function (dom, sibling) { if (typeof dom === "string") { var include = "[data-oe-model]"; var sdom = dom.split(','); dom = ""; _.each(sdom, function (val) { val = val.replace(/^\s+|\s+$/g, ''); dom += include + " " + val + ", "; if (!sibling) { val = val.split(" "); dom += val.shift() + include + val.join(" ") + ", "; } }); dom = dom.replace(/,\s*$/g, ''); return $(dom); } else { return (!sibling && $(dom).is("[data-oe-model]")) || $(dom).parents("[data-oe-model]").length ? $(dom) : $(""); } }, start: function() { var self = this; this.$button = $(openerp.qweb.render('website.snippets_button')) .prependTo(this.parent.$("#website-top-edit ul")) .find("button"); this.$button.click(function () { self.make_active(false); self.$el.toggleClass("hidden"); }); $("#wrapwrap").click(function () { self.$el.addClass("hidden"); }); this.fetch_snippet_templates(); this.bind_snippet_click_editor(); this.$el.addClass("hidden"); $(document).on('click', '.dropdown-submenu a[tabindex]', function (e) { e.preventDefault(); }); this.getParent().on('change:height', this, function (editor) { self.$el.css('top', editor.get('height')); }); self.$el.css('top', this.parent.get('height')); }, _get_snippet_url: function () { return '/website/snippets'; }, fetch_snippet_templates: function () { var self = this; openerp.jsonRpc(this._get_snippet_url(), 'call', {}) .then(function (html) { var $html = $(html); var $styles = $html.find("[data-snippet-style-id]"); $styles.each(function () { var $style = $(this); var style_id = $style.data('snippet-style-id'); website.snippet.styles[style_id] = { 'snippet-style-id' : style_id, 'selector': $style.data('selector'), '$el': $style, }; }); $styles.addClass("hidden"); self.$snippets = $html.find(".tab-content > div > div").addClass("oe_snippet"); self.$el.append($html); var snippets = 0; self.$snippets.each(function () { if (self.snippet_have_dropzone($(this))) snippets++; }); if (!snippets) self.$button.css("display", "none"); self.make_snippet_draggable(self.$snippets); }); }, cover_target: function ($el, $target){ var pos = $target.offset(); var mt = parseInt($target.css("margin-top") || 0); var mb = parseInt($target.css("margin-bottom") || 0); $el.css({ 'width': $target.outerWidth(), 'top': pos.top - mt - 5, 'left': pos.left }); $el.find(">.e,>.w").css({'height': $target.outerHeight() + mt + mb+1}); $el.find(">.s").css({'top': $target.outerHeight() + mt + mb}); $el.find(">.size").css({'top': $target.outerHeight() + mt}); $el.find(">.s,>.n").css({'width': $target.outerWidth()-2}); }, show: function () { this.$el.removeClass("hidden"); }, hide: function () { this.$el.addClass("hidden"); }, snippet_have_dropzone: function ($snippet) { return (($snippet.data('selector-siblings') && this.dom_filter($snippet.data('selector-siblings')).size() > 0) || ($snippet.data('selector-children') && this.dom_filter($snippet.data('selector-children')).size() > 0) || ($snippet.data('selector-vertical-children') && this.dom_filter($snippet.data('selector-vertical-children')).size() > 0)); }, bind_snippet_click_editor: function () { var self = this; $("#wrapwrap").on('click', function (event) { var $target = $(event.srcElement || event.target); if (!$target.attr("data-snippet-id")) { $target = $target.parents("[data-snippet-id]:first"); } if (!$target.attr("data-oe-model") && !$target.parents("[data-oe-model]:first").length) { $target = false; } if (self.$active_snipped_id && self.$active_snipped_id.is($target)) { return; } self.make_active($target); }); }, snippet_blur: function ($snippet) { if ($snippet) { if ($snippet.data("snippet-editor")) { $snippet.data("snippet-editor").onBlur(); } } }, snippet_focus: function ($snippet) { if ($snippet) { if ($snippet.data("snippet-editor")) { $snippet.data("snippet-editor").onFocus(); } } }, clean_for_save: function () { for (var k in this.snippets) { if (!this.snippets.hasOwnProperty(k)) { continue; } var editor = $(this.snippets[k]).data("snippet-editor"); if (editor) { editor.clean_for_save(); } } }, make_active: function ($snippet) { if ($snippet && this.$active_snipped_id && this.$active_snipped_id.get(0) === $snippet.get(0)) { return; } if (this.$active_snipped_id) { this.snippet_blur(this.$active_snipped_id); this.$active_snipped_id = false; } if ($snippet && $snippet.length) { if(_.indexOf(this.snippets, $snippet.get(0)) === -1) { this.snippets.push($snippet.get(0)); } this.$active_snipped_id = $snippet; this.create_overlay(this.$active_snipped_id); this.snippet_focus($snippet); } $("#oe_snippets").trigger('snippet-activated', $snippet); if ($snippet) { $snippet.trigger('snippet-activated', $snippet); } }, create_overlay: function ($snippet) { if (typeof $snippet.data("snippet-editor") === 'undefined') { var $targets = this.activate_overlay_zones($snippet); if (!$targets.length) return; var editor = website.snippet.editorRegistry[$snippet.data("snippet-id")] || website.snippet.editorRegistry.resize; $snippet.data("snippet-editor", new editor(this, $snippet)); } this.cover_target($snippet.data('overlay'), $snippet); }, path_eval: function(path){ var obj = window; path = path.split('.'); do{ obj = obj[path.shift()]; }while(path.length && obj); return obj; }, // activate drag and drop for the snippets in the snippet toolbar make_snippet_draggable: function($snippets){ var self = this; var $tumb = $snippets.find(".oe_snippet_thumbnail:first"); var left = $tumb.outerWidth()/2; var top = $tumb.outerHeight()/2; var $toInsert, dropped, $snippet, action, snipped_id; $snippets.draggable({ greedy: true, helper: 'clone', zIndex: '1000', appendTo: 'body', cursor: "move", handle: ".oe_snippet_thumbnail", cursorAt: { 'left': left, 'top': top }, start: function(){ self.hide(); dropped = false; $snippet = $(this); snipped_id = $snippet.data('snippet-id'); action = $snippet.find('.oe_snippet_body').size() ? 'insert' : 'mutate'; if( action === 'insert'){ if (!$snippet.data('selector-siblings') && !$snippet.data('selector-children') && !$snippet.data('selector-vertical-children')) { console.debug($snippet.data("snippet-id") + " have oe_snippet_body class and have not for insert action"+ "data-selector-siblings, data-selector-children or data-selector-vertical-children tag for mutate action"); return; } self.activate_insertion_zones({ siblings: $snippet.data('selector-siblings'), children: $snippet.data('selector-children'), vertical_children: $snippet.data('selector-vertical-children') }); $toInsert = $snippet.find('.oe_snippet_body').clone(); $toInsert.removeClass('oe_snippet_body'); $toInsert.data('src-snippet-id', snipped_id); if (!$toInsert.data('snippet-id')) { $toInsert.attr('data-snippet-id', snipped_id); } else { snipped_id = $toInsert.data('snippet-id'); } } else if( action === 'mutate' ){ if (!$snippet.data('selector')) { console.debug($snippet.data("snippet-id") + " have not oe_snippet_body class and have not data-selector tag"); return; } var $targets = self.activate_overlay_zones($snippet.data('selector')); $targets.each(function(){ var $clone = $(this).data('overlay').clone(); $clone.addClass("oe_drop_zone").data('target', $(this)); $(this).data('overlay').after($clone); }); } $('.oe_drop_zone').droppable({ over: function(){ if( action === 'insert'){ dropped = true; $(this).first().after($toInsert); } }, out: function(){ var prev = $toInsert.prev(); if( action === 'insert' && this === prev[0]){ dropped = false; $toInsert.detach(); } } }); }, stop: function(ev, ui){ if (action === 'insert' && ! dropped && $('.oe_drop_zone') && ui.position.top > 3) { var el = $('.oe_drop_zone').nearest({x: ui.position.left, y: ui.position.top}).first(); if (el.length) { el.after($toInsert); dropped = true; } } $('.oe_drop_zone').droppable('destroy').remove(); if (dropped) { var $target = false; if(action === 'insert'){ $target = $toInsert; website.snippet.start_animation(); self.create_overlay($target); if ($target.data("snippet-editor")) { $target.data("snippet-editor").drop_and_build_snippet($target); } $target.find("[data-snippet-id]").each(function () { var $snippet = $(this); var snippet_id = $snippet.data("data-snippet-id"); self.create_overlay($snippet); if ($snippet.data("snippet-editor")) { $snippet.data("snippet-editor").drop_and_build_snippet($snippet); } }); } else { $target = $(this).data('target'); self.create_overlay($target); if (website.snippet.editorRegistry[snipped_id]) { var snippet = new website.snippet.editorRegistry[snipped_id](self, $target); snippet.drop_and_build_snippet($target); } } setTimeout(function () { $("#oe_snippets").trigger('snippet-dropped', $target); // reset snippet for rte $target.removeData("snippet-editor"); if ($target.data("overlay")) { $target.data("overlay").remove(); $target.removeData("overlay"); } $target.find("[data-snippet-id]").each(function () { var $snippet = $(this); $snippet.removeData("snippet-editor"); if ($snippet.data("overlay")) { $snippet.data("overlay").remove(); $snippet.removeData("overlay"); } }); // end self.create_overlay($target); self.make_active($target); },0); } else { $toInsert.remove(); } }, }); }, // return the original snippet in the editor bar from a snippet id (string) get_snippet_from_id: function(id){ return $('.oe_snippet').filter(function(){ return $(this).data('snippet-id') === id; }).first(); }, // Create element insertion drop zones. two css selectors can be provided // selector.children -> will insert drop zones as direct child of the selected elements // in case the selected elements have children themselves, dropzones will be interleaved // with them. // selector.siblings -> will insert drop zones after and before selected elements activate_insertion_zones: function(selector){ var self = this; var child_selector = selector.children; var sibling_selector = selector.siblings; var vertical_child_selector = selector.vertical_children; var zone_template = "
"; if(child_selector){ self.dom_filter(child_selector).each(function (){ var $zone = $(this); $zone.find('> *:not(.oe_drop_zone):visible').after(zone_template); $zone.prepend(zone_template); }); } if(vertical_child_selector){ self.dom_filter(vertical_child_selector).each(function (){ var $zone = $(this); var $template = $(zone_template).addClass("oe_vertical"); var nb = 0; var $lastinsert = false; var left = 0; var temp_left = 0; $zone.find('> *:not(.oe_drop_zone):visible').each(function () { var $col = $(this); $template.css('height', ($col.outerHeight() + parseInt($col.css("margin-top")) + parseInt($col.css("margin-bottom")))+'px'); $lastinsert = $template.clone(); $(this).after($lastinsert); temp_left = $col.position().left; if (left === temp_left) { $col.prev(".oe_drop_zone.oe_vertical").remove(); $col.before($template.clone().css("clear", "left")); } else if (!nb) { $col.before($template.clone()); } left = temp_left; nb ++; }); if (!nb) { $zone.prepend($template.css('height', $zone.outerHeight()+'px')); } }); } if(sibling_selector){ self.dom_filter(sibling_selector, true).each(function (){ var $zone = $(this); if($zone.prev('.oe_drop_zone:visible').length === 0){ $zone.before(zone_template); } if($zone.next('.oe_drop_zone:visible').length === 0){ $zone.after(zone_template); } }); } var count; do { count = 0; // var $zones = $('.oe_drop_zone + .oe_drop_zone'); // no two consecutive zones // count += $zones.length; // $zones.remove(); $zones = $('.oe_drop_zone > .oe_drop_zone:not(.oe_vertical)').remove(); // no recursive zones count += $zones.length; $zones.remove(); } while (count > 0); // Cleaning up zones placed between floating or inline elements. We do not like these kind of zones. var $zones = $('.oe_drop_zone:not(.oe_vertical)'); $zones.each(function (){ var zone = $(this); var prev = zone.prev(); var next = zone.next(); var float_prev = prev.css('float') || 'none'; var float_next = next.css('float') || 'none'; var disp_prev = prev.css('display') || null; var disp_next = next.css('display') || null; if( (float_prev === 'left' || float_prev === 'right') && (float_next === 'left' || float_next === 'right') ){ zone.remove(); }else if( !( disp_prev === null || disp_next === null || disp_prev === 'block' || disp_next === 'block' )){ zone.remove(); } }); }, // generate drop zones covering the elements selected by the selector // we generate overlay drop zones only to get an idea of where the snippet are, the drop activate_overlay_zones: function(selector){ var $targets = this.dom_filter(selector || '[data-snippet-id]'); var self = this; if (typeof selector !== 'string' && !$targets.length) { console.debug( "A good node must have a [data-oe-model] attribute or must have at least one parent with [data-oe-model] attribute."); console.debug( "Wrong node(s): ", selector); } function is_visible($el){ return $el.css('display') != 'none' && $el.css('opacity') != '0' && $el.css('visibility') != 'hidden'; } // filter out invisible elements $targets = $targets.filter(function(){ return is_visible($(this)); }); // filter out elements with invisible parents $targets = $targets.filter(function(){ var parents = $(this).parents().filter(function(){ return !is_visible($(this)); }); return parents.length === 0; }); $targets.each(function () { var $target = $(this); if (!$target.data('overlay')) { var $zone = $(openerp.qweb.render('website.snippet_overlay')); // fix for pointer-events: none with ie9 if (document.body && document.body.addEventListener) { $zone.on("click mousedown mousedown", function passThrough(event) { event.preventDefault(); $target.each(function() { // check if clicked point (taken from event) is inside element event.srcElement = this; $(this).trigger(event.type); }); return false; }); } $zone.appendTo('#oe_manipulators'); $zone.data('target',$target); $target.data('overlay',$zone); $target.on("DOMNodeInserted DOMNodeRemoved DOMSubtreeModified", function () { self.cover_target($zone, $target); }); $('body').on("resize", function () { self.cover_target($zone, $target); }); } self.cover_target($target.data('overlay'), $target); }); return $targets; } }); website.snippet.styleRegistry = {}; website.snippet.StyleEditor = openerp.Class.extend({ // initialisation (don't overwrite) init: function (parent, $target, snippet_id) { this.parent = parent; this.$target = $target; var styles = this.$target.data("snippet-style-ids") || {}; styles[snippet_id] = this; this.$target.data("snippet-style-ids", styles); this.$overlay = this.$target.data('overlay'); this['snippet-style-id'] = snippet_id; this.$el = website.snippet.styles[snippet_id].$el.find(">li").clone(); this.required = this.$el.data("required"); this.set_active(); this.$el.find('li[data-class] a').on('mouseover mouseout click', _.bind(this._mouse, this)); this.$target.on('snippet-style-reset', _.bind(this.set_active, this)); this.start(); }, _mouse: function (event) { var self = this; if (event.type === 'mouseout') { if (!this.over) return; this.over = false; } else if (event.type === 'click') { this.over = false; }else { this.over = true; } var $prev, $next; if (event.type === 'mouseout') { $prev = $(event.currentTarget).parent(); $next = this.$el.find("li[data-class].active"); } else { $prev = this.$el.find("li[data-class].active"); $next = $(event.currentTarget).parent(); } if (!$prev.length) { $prev = false; } if ($prev && $prev[0] === $next[0]) { $next = false; if (this.required) { return; } } var np = {'$next': $next, '$prev': $prev}; if (event.type === 'click') { setTimeout(function () { self.set_active(); self.$target.trigger("snippet-style-change", [self, np]); },0); this.select(event, {'$next': $next, '$prev': $prev}); } else { setTimeout(function () { self.$target.trigger("snippet-style-preview", [self, np]); },0); this.preview(event, np); } }, // start is call just after the init start: function () { }, /* select * called when a user select an item * variables: np = {$next, $prev} * $next is false if they are no next item selected * $prev is false if they are no previous item selected */ select: function (event, np) { var self = this; // add or remove html class if (np.$prev) { this.$target.removeClass(np.$prev.data('class' || "")); } if (np.$next) { this.$target.addClass(np.$next.data('class') || ""); } }, /* preview * called when a user is on mouse over or mouse out of an item * variables: np = {$next, $prev} * $next is false if they are no next item selected * $prev is false if they are no previous item selected */ preview: function (event, np) { var self = this; // add or remove html class if (np.$prev) { this.$target.removeClass(np.$prev.data('class') || ""); } if (np.$next) { this.$target.addClass(np.$next.data('class') || ""); } }, /* set_active * select and set item active or not (add highlight item and his parents) * called before start */ set_active: function () { var self = this; this.$el.find('li').removeClass("active"); var $active = this.$el.find('li[data-class]') .filter(function () { var $li = $(this); return ($li.data('class') && self.$target.hasClass($li.data('class'))); }) .first() .addClass("active"); this.$el.find('li:has(li[data-class].active)').addClass("active"); } }); website.snippet.styleRegistry.background = website.snippet.StyleEditor.extend({ _get_bg: function () { return this.$target.css("background-image").replace(/url\(['"]*|['"]*\)|^none$/g, ""); }, _set_bg: function (src) { this.$target.css("background-image", src && src !== "" ? 'url(' + src + ')' : ""); }, start: function () { this._super(); var src = this._get_bg(); this.$el.find("li[data-class].active.oe_custom_bg").data("src", src); }, select: function(event, np) { var self = this; this._super(event, np); if (np.$next) { if (np.$next.hasClass("oe_custom_bg")) { var editor = new website.editor.ImageDialog(); editor.on('start', self, function (o) {o.url = np.$prev && np.$prev.data("src") || np.$next && np.$next.data("src") || "";}); editor.on('save', self, function (o) { self._set_bg(o.url); np.$next.data("src", o.url); self.$target.trigger("snippet-style-change", [self, np]); }); editor.on('cancel', self, function () { if (!np.$prev || np.$prev.data("src") === "") { self.$target.removeClass(np.$next.data("class")); self.$target.trigger("snippet-style-change", [self, np]); } }); editor.appendTo($('body')); } else { this._set_bg(np.$next.data("src")); } } else { this._set_bg(false); this.$target.removeClass(np.$prev.data("class")); } }, preview: function (event, np) { this._super(event, np); if (np.$next) { this._set_bg(np.$next.data("src")); } }, set_active: function () { var self = this; var bg = self.$target.css("background-image"); this.$el.find('li').removeClass("active"); var $active = this.$el.find('li[data-class]') .filter(function () { var $li = $(this); return ($li.data('src') && bg.indexOf($li.data('src')) >= 0) || (!$li.data('src') && self.$target.hasClass($li.data('class'))); }) .first(); if (!$active.length) { $active = this.$target.css("background-image") !== 'none' ? this.$el.find('li[data-class].oe_custom_bg') : this.$el.find('li[data-class=""]'); } $active.addClass("active"); this.$el.find('li:has(li[data-class].active)').addClass("active"); } }); website.snippet.editorRegistry = {}; website.snippet.Editor = openerp.Class.extend({ init: function (parent, dom) { this.parent = parent; this.$target = $(dom); this.$overlay = this.$target.data('overlay'); this.$overlay.find('a[data-toggle="dropdown"]').dropdown(); this.snippet_id = this.$target.data("snippet-id"); this._readXMLData(); this.load_style_options(); this.get_parent_block(); this.start(); }, /* * _readXMLData * Read data XML and set value into: * this.$el : * all xml data * this.$overlay : * Dom hover the $target who content options * this.$editor : * content of .oe_snippet_options * Displayed into the overlay options on focus */ _readXMLData: function() { var self = this; this.$el = this.parent.$snippets.filter(function () { return $(this).data("snippet-id") == self.snippet_id; }).clone(); this.$editor = this.$el.find(".oe_snippet_options"); var $options = this.$overlay.find(".oe_overlay_options"); this.$editor.prependTo($options.find(".oe_options ul")); if ($options.find(".oe_options ul li").length) { $options.find(".oe_options").removeClass("hidden"); } }, // activate drag and drop for the snippets in the snippet toolbar _drag_and_drop: function(){ var self = this; this.dropped = false; this.$overlay.draggable({ greedy: true, appendTo: 'body', cursor: "move", handle: ".oe_snippet_move", cursorAt: { left: 18, top: 14 }, helper: function() { var $clone = $(this).clone().css({width: "24px", height: "24px", border: 0}); $clone.find(".oe_overlay_options >:not(:contains(.oe_snippet_move)), .oe_handle").remove(); $clone.find(":not(.glyphicon)").css({position: 'absolute', top: 0, left: 0}); $clone.appendTo("body").removeClass("hidden"); return $clone; }, start: _.bind(self._drag_and_drop_start, self), stop: _.bind(self._drag_and_drop_stop, self) }); }, _drag_and_drop_after_insert_dropzone: function (){}, _drag_and_drop_active_drop_zone: function ($zones){ var self = this; $zones.droppable({ over: function(){ $(".oe_drop_zone.hide").removeClass("hide"); $(this).addClass("hide").first().after(self.$target); self.dropped = true; }, out: function(){ $(this).removeClass("hide"); self.$target.detach(); self.dropped = false; }, }); }, _drag_and_drop_start: function (){ var self = this; self.parent.hide(); self.parent.editor_busy = true; self.size = { width: self.$target.width(), height: self.$target.height() }; self.$target.after("