/** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category Mage * @package js * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var TranslateInline = Class.create(); TranslateInline.prototype = { initialize: function(trigEl, ajaxUrl, area) { this.ajaxUrl = ajaxUrl; this.area = area; this.trigTimer = null; this.trigContentEl = null; if (Prototype.Browser.IE) { $$('*[translate]').each(this.initializeElement.bind(this)); var scope = this; Ajax.Responders.register({ onComplete: function() { window.setTimeout(scope.reinitElements.bind(scope), 50) } }); var ElementNode = (typeof HTMLElement != 'undefined' ? HTMLElement : Element) var ElementUpdate = ElementNode.prototype.update; ElementNode.prototype.update = function() { ElementUpdate.apply(this, arguments); $(this).select('*[translate]').each(scope.initializeElement.bind(scope)); } } this.trigEl = $(trigEl); this.trigEl.observe('click', this.formShow.bind(this)); Event.observe(document.body, 'mousemove', function(e) { var target = Event.element(e); if (!$(target).match('*[translate]')) { target = target.up('*[translate]'); } if (target && $(target).match('*[translate]')) { this.trigShow(target, e); } else { if (Event.element(e).match('#' + trigEl)) { this.trigHideClear(); } else { this.trigHideDelayed(); } } }.bind(this)); this.helperDiv = document.createElement('div'); }, initializeElement: function(el) { if (!el.initializedTranslate) { el.addClassName('translate-inline'); el.initializedTranslate = true; } }, reinitElements: function(el) { $$('*[translate]').each(this.initializeElement.bind(this)); }, trigShow: function(el, event) { if (this.trigContentEl != el) { this.trigHideClear(); this.trigContentEl = el; var p = Element.cumulativeOffset(el); this.trigEl.style.left = p[0] + 'px'; this.trigEl.style.top = p[1] + 'px'; this.trigEl.style.display = 'block'; Event.stop(event); }; }, trigHide: function() { this.trigEl.style.display = 'none'; this.trigContentEl = null; }, trigHideDelayed: function() { if (this.trigTimer === null) { this.trigTimer = window.setTimeout(this.trigHide.bind(this), 2000); } }, trigHideClear: function() { clearInterval(this.trigTimer); this.trigTimer = null; }, formShow: function() { if (this.formIsShown) { return; } this.formIsShown = true; var el = this.trigContentEl; if (!el) { return; } this.trigHideClear(); eval('var data = ' + el.getAttribute('translate')); var content = '
Please refresh the page to see your changes after submitting this form.
'; this.overlayShowEffectOptions = Windows.overlayShowEffectOptions; this.overlayHideEffectOptions = Windows.overlayHideEffectOptions; Windows.overlayShowEffectOptions = {duration: 0}; Windows.overlayHideEffectOptions = {duration: 0}; Dialog.confirm(content, { draggable: true, resizable: true, closable: true, className: "magento", title: "Translation", width: 650, height: 470, zIndex: 2100, recenterAuto: false, hideEffect: Element.hide, showEffect: Element.show, id: "translate-inline", buttonClass: "form-button button", okLabel: "Submit", ok: this.formOk.bind(this), cancel: this.formClose.bind(this), onClose: this.formClose.bind(this) }); this.trigHide(); }, formOk: function(win) { if (this.formIsSubmitted) { return; } this.formIsSubmitted = true; var inputs = $('translate-inline-form').getInputs(), parameters = {}; for (var i = 0; i < inputs.length; i++) { if (inputs[i].type == 'checkbox') { if (inputs[i].checked) { parameters[inputs[i].name] = inputs[i].value; } } else { parameters[inputs[i].name] = inputs[i].value; } } parameters['area'] = this.area; new Ajax.Request(this.ajaxUrl, { method: 'post', parameters: parameters, onComplete: this.ajaxComplete.bind(this, win) }); this.formIsSubmitted = false; }, ajaxComplete: function(win, transport) { win.close(); this.formClose(win); }, formClose: function(win) { Windows.overlayShowEffectOptions = this.overlayShowEffectOptions; Windows.overlayHideEffectOptions = this.overlayHideEffectOptions; this.formIsShown = false; }, escapeHTML: function(str) { this.helperDiv.innerHTML = ''; var text = document.createTextNode(str); this.helperDiv.appendChild(text); var escaped = this.helperDiv.innerHTML; escaped = escaped.replace(/"/g, '"'); return escaped; } }