Я создаю функцию быстрого просмотра, где вы можете видеть содержимое каждого элемента в списке товаров непосредственно в модальном окне, которое откроется.
В модальном режиме есть кадр, который динамически генерируется с помощью javascript, и я помещаю URL-адрес моего контроллера, который отображает модальное содержимое (URL-адрес, такой как http://localhost/quickview/product/view/id/18564/
).
Когда модальное окно закрыто, я удаляю модальное содержимое, и когда пользователь хочет увидеть содержимое другого продукта на той же странице, я заново генерирую элемент iframe с javascript и display.
Проблема в том, что после первого модального просмотра iframe загружает и снова отображает содержимое, но JavaScript, который работает в iframe (у нас есть галерея изображений в содержимом продукта), не работает. Вскоре после второй попытки перед галереей и всеми другими действиями с javascript не работают, хотя модальные, iframe и контент, поступающий от контроллера, являются правильными.
Я уже пытался перезагрузить тот же самый iframe (не уничтожая его) и снова отобразить его, я пытался создать iframe с идентификатором, отличным для каждого модального представления, но я не мог решить его один раз. Ниже javascript, который я использую для создания модального и iframe. Контроллер, которому я не верю, уместен (всякий раз, когда я открываю URL контента в новой вкладке, все работает отлично, а также независимо от продукта каждый раз, когда я сначала открываю модал, все загружается правильно в модале).
var ProductInfo = Class.create();
ProductInfo.prototype = {
settings: {
'loadingMessage': 'aguarde ...',
'viewport': document.viewport.getDimensions()
},
idframe: 'quick-frame',
initialize: function(selector, x_image, settings) {
Object.extend(this.settings, settings);
this.createWindow();
var that = this;
$$(selector).each(function(el, index){
el.observe('click', that.loadInfo.bind(that));
})
},
createLoader: function() {
var loader = new Element('div', {id: 'pleaseWaitDialog'});
var imgLoader = new Element('img', {src: '/js/inovarti/ajax-loader.gif', alt: this.settings.loadingMessage, id: 'loading-quickview-img'});
var contentLoader = new Element('p', {class: 'loader'});
contentLoader.setStyle({
'display': 'block',
'margin-top': (this.settings.viewport.height/2 - contentLoader.getHeight()/2)+'px',
'text-align': 'center'
});
contentLoader.appendChild(imgLoader);
loader.appendChild(contentLoader);
document.body.appendChild(loader);
$('pleaseWaitDialog').setStyle({
'position': 'fixed',
'top': 0,
'left': 0,
'width': '100%',
'height': '100%',
'display': 'block',
'opacity': '.8',
'background': '#FFFFFF',
'z-index': '99999'
});
},
destroyLoader: function(full) {
if(full) {
$('pleaseWaitDialog').remove();
}
else {
if($('loading-quickview-img') != null) {
$('loading-quickview-img').remove();
}
$('pleaseWaitDialog').setStyle({'background-color': '#000000'});
}
},
showButton: function(e) {
el = this;
while (el.tagName != 'P') {
el = el.up();
}
$(el).getElementsBySelector('.quickview-ajax')[0].setStyle({
display: 'block'
})
},
hideButton: function(e) {
el = this;
while (el.tagName != 'P') {
el = el.up();
}
$(el).getElementsBySelector('.quickview-ajax')[0].setStyle({
display: 'none'
})
},
createWindow: function() {
var qWindow = new Element('div', {id: 'quick-window'});
qWindow.innerHTML = '<div id="quickview-header" style="width: 100%; text-align: right;"><a href="javascript:void(0)" id="quickview-close"><i class="glyphicon glyphicon-remove"></i></a></div><div class="quick-view-content"></div>';
document.body.appendChild(qWindow);
$('quickview-close').setStyle({
'padding-right': "20px",
'padding-left': "20px"
});
$('quickview-close').observe('click', this.hideWindow.bind(this));
},
showWindow: function() {
var screenWidth, offsetTopModal;
if(document.body.clientWidth > 1400) {
screenWidth = 1400;
offsetTopModal = 100;
}
else {
if(document.body.clientWidth < 768) {
screenWidth = document.body.clientWidth;
offsetTopModal = 0;
}
else {
screenWidth = document.body.clientWidth * 0.8;
offsetTopModal = 100;
}
}
var windowWidth = screenWidth;
$('quick-window').setStyle({
'top': document.viewport.getScrollOffsets().top + offsetTopModal + 'px',
'left': document.body.clientWidth/2 - windowWidth/2 + 'px',
'display': 'block',
'position': 'absolute',
'width': windowWidth + 'px',
'background': '#FFFFFF',
'padding': '20px 0px',
'margin-bottom': '20px',
'border': '1px solid #F0F0F0',
'z-index': '999999',
'border-radius': '4px'
});
$('pleaseWaitDialog').observe('click', this.hideWindow.bind(this));
this.resizeIframe($(this.idframe));
},
setContent: function(srcUrl) {
var options = {
id: this.idframe,
frameborder: "0",
scrolling: "no",
src: srcUrl,
hspace: "0",
name: this.idframe+(new Date().getTime()),
width: "100%"
};
var frame = new Element('iframe', options);
$$('.quick-view-content')[0].insert(frame);
},
clearContent: function() {
$$('.quick-view-content')[0].replace('<div class="quick-view-content"></div>');
},
hideWindow: function() {
this.clearContent();
this.destroyLoader(true);
$('quick-window').hide();
},
loadInfo: function(e) {
e.stop();
var that = this;
this.createLoader();
this.clearContent();
this.setContent(e.element().href);
Event.observe($(this.idframe), 'load', function() {
window.quickview.completeInfo();
setTimeout(function () {
window.quickview.resizeIframe($(this.idframe));
},500);
});
},
completeInfo: function () {
this.destroyLoader(false);
this.showWindow();
},
resizeIframe: function(obj) {
if(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
obj.style.width = "100%";
}
}
}
Event.observe(window, 'load', function() {
window.quickview = new ProductInfo('.quickview-ajax', '.product-image', {
});
});
Я считаю, что это не имеет значения, но приложение Magento 1.9.3.9, поэтому я использую прототип в качестве js-фреймворка (родной из Magento).
Любопытный факт: если я обновляю фрейм через браузер с помощью правой кнопки и запрашиваю «Обновить фрейм» с помощью мыши, iframe корректно обновляется и JavaScript-контент корректно загружается.
UPDATE:
Проведя несколько тестов, я заметил, что при первой загрузке iframe ширина iframe определяется в js внутри iframe. Но в других случаях, когда он создается и вставляется, ширина определяется как ноль. Ниже тесты:
//First open
console.log(document.documentElement.clientWidth);
//output: 1356
//Second open
console.log(document.documentElement.clientWidth);
//output: 0
OwlCarousel2 делает бросок (подробнее в https://github.com/OwlCarousel2/OwlCarousel2/issues/1704),, и я думаю, что de JS остановится за исключением.
Owl.prototype.viewport = function() {
var width;
if (this.options.responsiveBaseElement !== window) {
width = $(this.options.responsiveBaseElement).width();
} else if (window.innerWidth) {
width = window.innerWidth;
} else if (document.documentElement && document.documentElement.clientWidth) {
width = document.documentElement.clientWidth;
} else {
throw 'Can not detect viewport width.';
}
return width;
};
Несмотря на то, что я изменяю OwlCarousel2 (в последней версии нет броска), я считаю, что тот факт, что ширина определяется неправильно, вызовет несколько других проблем.
Я также обновил iframe, всегда создавая его шириной 100%, но проблема все еще сохраняется.