103 lines
4.0 KiB
HTML
103 lines
4.0 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Iframe Test - Quote Upload</title>
|
|
<link rel="stylesheet" href="{% static 'css/test_iframe.css' %}">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="test-container">
|
|
<h1>Iframe Embedding Test</h1>
|
|
<div class="test-info">
|
|
<p><strong>Purpose:</strong> Test how the quote upload page appears when embedded in an iframe</p>
|
|
<p><strong>URL:</strong> <span id="iframeUrl"></span></p>
|
|
</div>
|
|
|
|
<div class="iframe-wrapper">
|
|
<h2>Responsive Iframe (Auto Height)</h2>
|
|
<div class="iframe-container" id="iframeContainer">
|
|
<iframe id="testIframe" src="/" title="Quote Upload Test"></iframe>
|
|
</div>
|
|
<div class="size-controls">
|
|
<label>Width: <input type="number" id="widthInput" value="100" min="300" max="2000"> px</label>
|
|
<label>Height: <input type="number" id="heightInput" value="800" min="400" max="3000"> px</label>
|
|
<div class="size-presets">
|
|
<button onclick="setSize('mobile')">Mobile (375px)</button>
|
|
<button onclick="setSize('tablet')">Tablet (768px)</button>
|
|
<button onclick="setSize('desktop')">Desktop (1024px)</button>
|
|
<button onclick="setSize('full')">Full Width</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Display the iframe URL
|
|
document.getElementById('iframeUrl').textContent = window.location.origin + '/';
|
|
|
|
const iframe = document.getElementById('testIframe');
|
|
const iframeContainer = document.getElementById('iframeContainer');
|
|
const widthInput = document.getElementById('widthInput');
|
|
const heightInput = document.getElementById('heightInput');
|
|
|
|
// Listen for height messages from the iframe
|
|
window.addEventListener('message', function (event) {
|
|
if (event.data && event.data.type === 'sedutto-ifr-height') {
|
|
iframe.style.height = event.data.height + 'px';
|
|
heightInput.value = event.data.height;
|
|
}
|
|
});
|
|
|
|
// Update iframe size when inputs change
|
|
widthInput.addEventListener('input', function () {
|
|
iframeContainer.style.width = this.value + 'px';
|
|
});
|
|
|
|
heightInput.addEventListener('input', function () {
|
|
iframe.style.height = this.value + 'px';
|
|
});
|
|
|
|
// Size presets
|
|
function setSize(preset) {
|
|
const sizes = {
|
|
mobile: 375,
|
|
tablet: 768,
|
|
desktop: 1024,
|
|
full: '100%'
|
|
};
|
|
|
|
if (preset === 'full') {
|
|
iframeContainer.style.width = '100%';
|
|
iframeContainer.classList.remove('mobile', 'tablet', 'desktop');
|
|
widthInput.value = window.innerWidth - 60; // Account for padding
|
|
} else {
|
|
const width = sizes[preset];
|
|
iframeContainer.style.width = width + 'px';
|
|
iframeContainer.className = 'iframe-container ' + preset;
|
|
widthInput.value = width;
|
|
}
|
|
}
|
|
|
|
// Initial auto-height setup
|
|
iframe.addEventListener('load', function () {
|
|
// Try to get initial height
|
|
setTimeout(() => {
|
|
try {
|
|
const iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
|
|
const height = iframeDoc.documentElement.scrollHeight;
|
|
iframe.style.height = height + 'px';
|
|
heightInput.value = height;
|
|
} catch (e) {
|
|
// Cross-origin restrictions - rely on postMessage
|
|
console.log('Cannot access iframe content directly, using postMessage');
|
|
}
|
|
}, 100);
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |