123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- var SessionError = Class.create();
- SessionError.prototype = {
- initialize: function (errorText) {
- this.errorText = errorText;
- },
- toString: function () {
- return 'Session Error:' + this.errorText;
- }
- };
- Ajax.Request.addMethods({
- initialize: function ($super, url, options) {
- $super(options);
- this.transport = Ajax.getTransport();
- if (!url.match(new RegExp('[?&]isAjax=true',''))) {
- url = url.match(new RegExp('\\?','g')) ? url + '&isAjax=true' : url + '?isAjax=true';
- }
- if (Object.isString(this.options.parameters) &&
- this.options.parameters.indexOf('form_key=') == -1
- ) {
- this.options.parameters += '&' + Object.toQueryString({
- form_key: FORM_KEY
- });
- } else {
- if (!this.options.parameters) {
- this.options.parameters = {
- form_key: FORM_KEY
- };
- }
- if (!this.options.parameters.form_key) {
- this.options.parameters.form_key = FORM_KEY;
- }
- }
- this.request(url);
- },
- respondToReadyState: function (readyState) {
- var state = Ajax.Request.Events[readyState],
- response = new Ajax.Response(this);
- if (state == 'Complete') {
- try {
- this._complete = true;
- if (response.responseText.isJSON()) {
- var jsonObject = response.responseText.evalJSON();
- if (jsonObject.ajaxExpired && jsonObject.ajaxRedirect) {
- window.location.replace(jsonObject.ajaxRedirect);
- throw new SessionError('session expired');
- }
- }
- (this.options['on' + response.status] ||
- this.options['on' + (this.success() ? 'Success' : 'Failure')] ||
- Prototype.emptyFunction)(response, response.headerJSON);
- } catch (e) {
- this.dispatchException(e);
- if (e instanceof SessionError) {
- return;
- }
- }
- var contentType = response.getHeader('Content-type');
- if (this.options.evalJS == 'force' ||
- this.options.evalJS && this.isSameOrigin() && contentType &&
- contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)) {
- this.evalResponse();
- }
- }
- try {
- (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON);
- Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON);
- } catch (e) {
- this.dispatchException(e);
- }
- if (state == 'Complete') {
- // avoid memory leak in MSIE: clean up
- this.transport.onreadystatechange = Prototype.emptyFunction;
- }
- }
- });
- Ajax.Updater.respondToReadyState = Ajax.Request.respondToReadyState;
- //Ajax.Updater = Object.extend(Ajax.Updater, {
- // initialize: function($super, container, url, options) {
- // this.container = {
- // success: (container.success || container),
- // failure: (container.failure || (container.success ? null : container))
- // };
- //
- // options = Object.clone(options);
- // var onComplete = options.onComplete;
- // options.onComplete = (function(response, json) {
- // this.updateContent(response.responseText);
- // if (Object.isFunction(onComplete)) onComplete(response, json);
- // }).bind(this);
- //
- // $super((url.match(new RegExp('\\?',"g")) ? url + '&isAjax=1' : url + '?isAjax=1'), options);
- // }
- //});
- var varienLoader = new Class.create();
- varienLoader.prototype = {
- initialize: function (caching) {
- this.callback = false;
- this.cache = $H();
- this.caching = caching || false;
- this.url = false;
- },
- getCache: function (url) {
- if (this.cache.get(url)) {
- return this.cache.get(url);
- }
- return false;
- },
- load: function (url, params, callback) {
- this.url = url;
- this.callback = callback;
- if (this.caching) {
- var transport = this.getCache(url);
- if (transport) {
- this.processResult(transport);
- return;
- }
- }
- if (typeof params.updaterId != 'undefined') {
- new varienUpdater(params.updaterId, url, {
- evalScripts: true,
- onComplete: this.processResult.bind(this),
- onFailure: this._processFailure.bind(this)
- });
- } else {
- new Ajax.Request(url,{
- method: 'post',
- parameters: params || {},
- onComplete: this.processResult.bind(this),
- onFailure: this._processFailure.bind(this)
- });
- }
- },
- _processFailure: function (transport) {
- location.href = BASE_URL;
- },
- processResult: function (transport) {
- if (this.caching) {
- this.cache.set(this.url, transport);
- }
- if (this.callback) {
- this.callback(transport.responseText);
- }
- }
- };
- if (!window.varienLoaderHandler)
- var varienLoaderHandler = new Object();
- varienLoaderHandler.handler = {
- onCreate: function (request) {
- if (request.options.loaderArea === false) {
- return;
- }
- jQuery('body').trigger('processStart');
- },
- onException: function (transport) {
- jQuery('body').trigger('processStop');
- },
- onComplete: function (transport) {
- jQuery('body').trigger('processStop');
- }
- };
- /**
- * @todo need calculate middle of visible area and scroll bind
- */
- function setLoaderPosition() {
- var elem = $('loading_mask_loader');
- if (elem && Prototype.Browser.IE) {
- var elementDims = elem.getDimensions();
- var viewPort = document.viewport.getDimensions();
- var offsets = document.viewport.getScrollOffsets();
- elem.style.left = Math.floor(viewPort.width / 2 + offsets.left - elementDims.width / 2) + 'px';
- elem.style.top = Math.floor(viewPort.height / 2 + offsets.top - elementDims.height / 2) + 'px';
- elem.style.position = 'absolute';
- }
- }
- /*function getRealHeight() {
- var body = document.body;
- if (window.innerHeight && window.scrollMaxY) {
- return window.innerHeight + window.scrollMaxY;
- }
- return Math.max(body.scrollHeight, body.offsetHeight);
- }*/
- function toggleSelectsUnderBlock(block, flag) {
- if (Prototype.Browser.IE) {
- var selects = document.getElementsByTagName('select');
- for (var i = 0; i < selects.length; i++) {
- /**
- * @todo: need check intersection
- */
- if (flag) {
- if (selects[i].needShowOnSuccess) {
- selects[i].needShowOnSuccess = false;
- // Element.show(selects[i])
- selects[i].style.visibility = '';
- }
- } else if (Element.visible(selects[i])) {
- // Element.hide(selects[i]);
- selects[i].style.visibility = 'hidden';
- selects[i].needShowOnSuccess = true;
- }
- }
- }
- }
- Ajax.Responders.register(varienLoaderHandler.handler);
- var varienUpdater = Class.create(Ajax.Updater, {
- updateContent: function ($super, responseText) {
- if (responseText.isJSON()) {
- var responseJSON = responseText.evalJSON();
- if (responseJSON.ajaxExpired && responseJSON.ajaxRedirect) {
- window.location.replace(responseJSON.ajaxRedirect);
- }
- } else {
- $super(responseText);
- }
- }
- });
|