2023-09-21 17:29:40 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
2023-09-23 16:50:18 +02:00
< meta charset = "utf-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
< meta property = "og:url" content = "https://hub.octt.eu.org/FramesBrowser" / >
< link rel = "canonical" href = "https://hub.octt.eu.org/FramesBrowser" / >
< link rel = "shortcut icon" type = "image/x-icon" href = "../favicon.png" / >
< link rel = "manifest" href = "./manifest.json" / >
< title > 🪟️ Frames Browser (WIP)< / title >
< meta name = "description" content = "iFrame-based HTML5 Browser for fun and development" / >
< meta property = "og:title" content = "🪟️ Frames Browser (WIP)" / >
< meta property = "og:description" content = "iFrame-based HTML5 Browser for fun and development" / >
2023-09-21 17:29:40 +02:00
< style >
2023-09-21 23:09:22 +02:00
:root {
2023-09-23 00:46:50 +02:00
--BaseMargin: 8px;
--BtnHeight: calc(1rem + var(--BaseMargin));
--BtnActionHeight: calc(2rem + var(--BaseMargin));
--ColorBg: #f0f0f0;
--ColorFg: #0f0f0f;
2023-09-21 23:09:22 +02:00
}
2023-09-21 17:29:40 +02:00
* {
box-sizing: border-box;
}
body {
margin: 0px;
2023-09-21 23:09:22 +02:00
max-width: 100vw;
max-height: 100vh;
}
button {
height: var(--BtnHeight);
2023-09-21 17:29:40 +02:00
}
iframe {
border: none;
width: 100vw;
2023-09-22 01:05:42 +02:00
height: calc(100vh - var(--BtnActionHeight));
2023-09-21 17:29:40 +02:00
position: relative;
}
2023-09-23 00:46:50 +02:00
#BoxControls {
overflow: auto;
}
2023-09-22 01:05:42 +02:00
#BoxControls table, #BoxControls table td, #BoxControls table td > * {
2023-09-21 23:09:22 +02:00
height: var(--BtnActionHeight);
min-width: var(--BtnActionHeight);
2023-09-23 00:46:50 +02:00
padding-top: 0;
padding-bottom: 0;
2023-09-21 17:29:40 +02:00
border-spacing: 0;
}
2023-09-21 23:09:22 +02:00
.BoxPopup {
left: 0;
right: 0;
}
2023-09-23 00:46:50 +02:00
.BoxPopup.Container {
position: absolute;
top: 10vh;
z-index: 1;
text-align: center;
}
.BoxPopup.Content {
position: relative;
margin-left: auto;
margin-right: auto;
width: fit-content;
2023-09-23 16:50:18 +02:00
max-height: 80vh;
overflow: auto;
2023-09-23 00:46:50 +02:00
box-shadow: gray 4px 4px 4px 0px;
color: var(--ColorFg);
background-color: var(--ColorBg);
}
.BtnAction {
height: var(--BtnActionHeight);
}
2023-09-21 17:29:40 +02:00
< / style >
< script >
var FrameZoomLevels = [50, 200];
2024-03-15 22:04:56 +01:00
var AppInfoString = `Frames Browser v2024-03-15.`;
2023-09-21 17:29:40 +02:00
< / script >
< / head >
< body >
< div id = "BoxControls" > < table > < tr >
< td > < button onclick = "ShowAppInfo()" > ℹ ️ Info< / button > < / td >
2023-09-23 16:50:18 +02:00
< td > < button onclick = "ToggleDevTools()" > 📐️ Tools< / button > < / td >
2023-09-22 01:05:42 +02:00
< td >
2023-09-23 16:50:18 +02:00
< button id = "BtnFile" onclick = "this.nextElementSibling.click()" > 📄 File< / button >
2023-09-22 01:05:42 +02:00
< input type = "file" hidden = "hidden" style = "display: none;" onchange = "LoadFile(this.files[0])" / >
< / td >
2023-09-21 17:29:40 +02:00
< td > < button onclick = "ZoomFrame()" > 🔍️ Zoom< / button > < / td >
2023-09-23 00:46:50 +02:00
< td > < button onclick = "ListFrames()" > 🪟 Frames< / button > < / td >
2023-09-23 16:50:18 +02:00
< td style = "width: 100%;" > < input id = "InputUri" type = "text" style = "min-width: 100%;" placeholder = "🔗️ Enter URI..." onkeydown = "InputHandleKey(event)" / > < / td >
< td > < button id = "BtnLoad" onclick = "LoadFrame()" > ↩️ Load< / button > < / td >
< td > < button id = "BtnExcise" onclick = "ExciseFrame()" > ↗️ Excise< / button > < / td >
2023-09-21 17:29:40 +02:00
< tr > < / table > < / div >
2023-09-23 00:46:50 +02:00
< noscript > < p class = "NoScript" >
This is an actual app, not a badly-made website.
< br >
It needs JavaScript to work, so you need to enable it.
< br >
The code is fully open, and you can review it with "View Page Source".
< / p > < / noscript >
< div id = "BoxHandy" > < / div >
2024-03-15 22:04:56 +01:00
< div id = "MainAppContent" >
< h1 > Frames Browser< / h1 >
< p > Frames Browser is an iFrame-based HTML5 browser made for fun and development. Use the above menu to operate the app.< / p >
< p > Note: the app is still in development and data handling may break between versions! Backup your data externally to avoid losing it.< / p >
<!-- <p>You can also visit, or go back to, my home page: <a href="https://hub.octt.eu.org">hub.octt.eu.org</a>!</p> -->
< h2 > Changelog< / h2 >
< h3 > 2024-03-15< / h3 > < ul >
< li > Improve some crusty code.< / li >
< li > Add this default/sample HTML text into the app, visible via the otherwise useless Root Window.< / li >
< li > Add symbol for indicating current zoom level on zoom button.< / li >
< li > Add counter for open frames (goes up to 99 before becoming generic).< / li >
< li > Better handling of devtools, removed floating button and always use dedicated button.< / li >
< / ul >
< h3 > 2023-09-23 and before< / h3 > < ul >
< li > MVP version of the app with finished UI and basic features.< / li >
< li > Eruda DevTools.< / li >
< li > In-frame page zoom with 3 levels.< / li >
< li > Creating, deleting, and switching to different frames, inputting URL.< / li >
< li > Persistent app state saving frames and their URLs.< / li >
< li > Excise frame content into another native browser tab (via opening the same URL)< / li >
< li > Import file into data URI from local file.< / li >
< / ul >
< / div >
2023-09-21 17:29:40 +02:00
< script >
2023-09-23 00:46:50 +02:00
var CurrentFrames = [];
var FrameIndexes = [-1];
2023-09-21 17:29:40 +02:00
var FrameZoomIndex = -1;
2024-03-15 22:04:56 +01:00
var SampleHtmlContent = MainAppContent.innerHTML;
MainAppContent.innerHTML = '< iframe > < / iframe > ';
document.body.style.overflow = 'hidden';
2023-09-21 17:29:40 +02:00
2023-09-23 00:46:50 +02:00
function $new(tag, props){
var el = document.createElement(tag);
if (props) {
Object.keys(props).forEach(function(key){
el[key] = props[key];
});
};
return el;
2023-09-22 01:05:42 +02:00
};
2023-09-21 23:09:22 +02:00
2023-09-23 16:50:18 +02:00
function $request(url, opts){
if (!opts.method) {
opts.method = 'GET';
};
var req = new XMLHttpRequest();
req.onreadystatechange = function(){
if (this.readyState == 4) {
opts.callback(req.responseText);
};
};
req.open(opts.method, url, true);
req.send();
};
2023-09-21 17:29:40 +02:00
function ShowAppInfo(){
alert(AppInfoString);
};
2023-09-23 16:50:18 +02:00
function InputHandleKey(ev){
// Enter
if (ev.keyCode == 13) {
LoadFrame();
};
};
2023-09-23 00:46:50 +02:00
function ShowFrame(index){
2024-03-15 22:04:56 +01:00
var isFrameRoot = (index === -1);
2023-09-23 00:46:50 +02:00
ListFramesClose();
FrameIndexes = [index];
SaveCurrentFrames();
2024-03-15 22:04:56 +01:00
InputUri.disabled = isFrameRoot;
InputUri.value = (isFrameRoot ? '' : CurrentFrames[index]);
BtnFile.disabled = isFrameRoot;
BtnLoad.disabled = isFrameRoot;
BtnExcise.disabled = isFrameRoot;
document.querySelector('iframe').src = (isFrameRoot ? `data:text/html;utf8,${SampleHtmlContent}` : CurrentFrames[index]);
2023-09-23 00:46:50 +02:00
};
2023-09-21 23:09:22 +02:00
function SaveUrl(){
2023-09-22 01:05:42 +02:00
var url = document.querySelector('input[type="text"]').value;
2023-09-21 17:29:40 +02:00
localStorage.setItem('FramesBrowser.url', url);
2023-09-23 00:46:50 +02:00
CurrentFrames[FrameIndexes[0]] = url;
SaveCurrentFrames();
2023-09-21 23:09:22 +02:00
return url;
2023-09-23 00:46:50 +02:00
};
function AddFrame(){
CurrentFrames = CurrentFrames.concat(['']);
2024-03-15 22:04:56 +01:00
ListFrames();
2023-09-23 00:46:50 +02:00
ShowFrame(CurrentFrames.length - 1);
SaveCurrentFrames();
2024-03-15 22:04:56 +01:00
RefreshFramesCounter();
2023-09-23 00:46:50 +02:00
};
function CloseFrame(index){
CurrentFrames.pop(index);
if (FrameIndexes[0] === index) {
2024-03-15 22:04:56 +01:00
ShowFrame(-1);//ShowRootFrame();
2023-09-23 00:46:50 +02:00
} else if (FrameIndexes[0] > index) {
FrameIndexes[0] --;
};
ListFrames(); ListFrames();
SaveCurrentFrames();
2024-03-15 22:04:56 +01:00
RefreshFramesCounter();
2023-09-23 00:46:50 +02:00
};
function SaveCurrentFrames(){
localStorage.setItem('FramesBrowser.CurrentFrames', JSON.stringify(CurrentFrames));
localStorage.setItem('FramesBrowser.FrameIndexes', JSON.stringify(FrameIndexes));
};
2023-09-21 23:09:22 +02:00
2024-03-15 22:04:56 +01:00
function RefreshFramesCounter(){
var count = CurrentFrames.length;
var countHtml = '';
if (count > 99) {
countHtml = '(...)';
} else if (count > 0) {
countHtml = `(${count})`;
};
document.querySelector('button[onclick="ListFrames()"]').textContent = `🪟${countHtml} Frames`;
};
2023-09-21 23:09:22 +02:00
function LoadFrame(){
document.querySelector('iframe').src = SaveUrl();
};
function ExciseFrame(){
2023-09-23 00:46:50 +02:00
var uri = SaveUrl();
if (uri.toLowerCase().startsWith('data:')) {
opendatauri(uri);
} else {
open(uri, '_blank');
2023-09-22 01:05:42 +02:00
};
2023-09-21 23:09:22 +02:00
};
2023-09-22 01:05:42 +02:00
function LoadFile(file){
var reader = new FileReader();
reader.onload = function(){
2023-09-23 16:50:18 +02:00
document.querySelector('input[type="text"]').value = reader.result;
2023-09-22 01:05:42 +02:00
LoadFrame();
};
2023-09-23 16:50:18 +02:00
reader.readAsDataURL(file);
2023-09-21 17:29:40 +02:00
};
function ZoomFrame(){
2023-09-23 00:46:50 +02:00
if (FrameZoomIndex === FrameZoomLevels.length - 1) {
2023-09-21 17:29:40 +02:00
FrameZoomIndex = -1;
} else {
FrameZoomIndex ++;
};
var level = FrameZoomLevels[FrameZoomIndex];
var levelopp = FrameZoomLevels[FrameZoomLevels.length - 1 - FrameZoomIndex];
var stylepos = (level < 100
? `right: ${level}vw; bottom: calc(${level}vh - 16px);`
: `left: ${levelopp/2}vw; top: calc(${levelopp/2}vh - 8px);`
);
2023-09-23 00:46:50 +02:00
document.querySelector('iframe').style = (FrameZoomIndex === -1
2023-09-21 17:29:40 +02:00
? ''
2023-09-22 01:05:42 +02:00
: `scale: ${level/100}; width: ${levelopp}vw; height: calc(${levelopp}vh - (var(--BtnActionHeight) * ${levelopp / 100})); ${stylepos}`
2023-09-21 17:29:40 +02:00
);
2024-03-15 22:04:56 +01:00
var zoomButton = document.querySelector('button[onclick="ZoomFrame()"]');
if (level < 100 ) {
zoomButton.textContent = '🔍️(-) Zoom';
} else if (level > 100) {
zoomButton.textContent = '🔍️(+) Zoom';
} else {
zoomButton.textContent = '🔍️ Zoom';
};
2023-09-21 23:09:22 +02:00
};
function ListFrames(){
2023-09-23 00:46:50 +02:00
if (!ListFramesClose()){
var Box = NewBoxPopup('BoxFramesList');
var BtnAdd = $new('button', { className: 'BtnAction', innerHTML: '➕ Add', onclick: AddFrame });
Box.Content.appendChild(BtnAdd);
var BoxList = $new('ul');
Box.Content.appendChild(BoxList);
var LiMain = $new('li');
BoxList.appendChild(LiMain);
2024-03-15 22:04:56 +01:00
var BtnMain = $new('button', { innerHTML: 'Root Window', onclick: /*ShowRootFrame*/function(){ ShowFrame(-1) }, disabled: FrameIndexes[0] === -1 });
2023-09-23 00:46:50 +02:00
LiMain.appendChild(BtnMain);
for (var i=0; i< CurrentFrames.length ; i + + ) {
var li = $new('li');
li.ItemIndex = i;
BoxList.appendChild(li);
var open = $new('button', { innerHTML: ` ${CurrentFrames[i].slice(0, 16)} `, onclick: function(){ShowFrame(this.parentElement.ItemIndex)}, disabled: FrameIndexes[0] === i });
li.append(open);
var close = $new('button', { innerHTML: '✖️', onclick: function(){CloseFrame(this.parentElement.ItemIndex)} });
li.append(close);
};
};
};
function ListFramesClose(){
var exist = document.querySelector('#BoxFramesList');
if (exist) {
BoxFramesList.remove();
};
return exist;
};
2024-03-15 22:04:56 +01:00
var isDevToolsOpen = false;
2023-09-23 16:50:18 +02:00
function ToggleDevTools(){
2024-03-15 22:04:56 +01:00
if (typeof(eruda) === 'undefined') {
$request('https://cdn.jsdelivr.net/npm/eruda', { callback: function(text){
eval(text);
eruda.init();
eruda._shadowRoot.querySelector('div.eruda-entry-btn').style.display = 'none';
eruda.show();
isDevToolsOpen = true;
} });
} else {
eruda[isDevToolsOpen ? 'hide' : 'show']();
isDevToolsOpen = !isDevToolsOpen;
}
2023-09-23 16:50:18 +02:00
};
2023-09-23 00:46:50 +02:00
function NewBoxPopup(id){
var Container = $new('div', { id: id, className: 'BoxPopup Container' });
var Content = $new('div', { className: 'BoxPopup Content' });
Container.appendChild(Content);
var BtnClose = $new('button', { className: 'BtnAction', innerHTML: '❌ Close', onclick: function(){this.parentElement.parentElement.remove()} });
Content.appendChild(BtnClose);
BoxHandy.appendChild(Container);
return { Container: Container, Content: Content };
};
window.opendatauri = function opendatauri(data){
var head = data.split(',')[0].split('data:')[1];
var [mime, encoding] = head.split(';');
data = data.split(',').slice(1).join(',');
if (encoding.toLowerCase() === 'base64') {
data = atob(data);
};
var bytes = new Array(data.length);
for (var i = 0; i < data.length ; i + + ) {
bytes[i] = data.charCodeAt(i);
};
window.open(URL.createObjectURL(
new Blob([new Uint8Array(bytes)], { type: `${mime};${encoding ? encoding : 'utf8'}` })
), '_blank');
2023-09-21 17:29:40 +02:00
};
2024-03-15 22:04:56 +01:00
window.onload = function(){
2023-09-23 00:46:50 +02:00
Array.from(document.querySelectorAll('noscript, .NoScript')).forEach(function(el){ el.remove() });
CurrentFrames = (JSON.parse(localStorage.getItem('FramesBrowser.CurrentFrames')) || []);
FrameIndexes = (JSON.parse(localStorage.getItem('FramesBrowser.FrameIndexes')) || [-1]);
2023-09-22 01:05:42 +02:00
document.querySelector('input[type="text"]').value = localStorage.getItem('FramesBrowser.url');
2024-03-15 22:04:56 +01:00
ShowFrame(FrameIndexes[0]);
RefreshFramesCounter();
2023-09-21 17:29:40 +02:00
};
< / script >
< / body >
< / html >