145 lines
4.9 KiB
HTML
145 lines
4.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/node_modules/@fontsource-variable/jetbrains-mono/index.css">
|
|
<link rel="stylesheet" href="/node_modules/normalize.css/normalize.css">
|
|
<title>THE PTOOLS - Better than your MOM</title>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="main"></div>
|
|
<div id="q">
|
|
<div id="r"><p><button onclick="btn('base64d')"><<<</button> base64d</p><textarea id="base64d"></textarea></div>
|
|
<div id="r"><p><button onclick="btn('base64e')"><<<</button> base64e</p><textarea id="base64e"></textarea></div>
|
|
<div id="r"><p><button onclick="btn('urid')"><<<</button> urid (cmp: <input id="uridcmp" style="width: 20px;" type="checkbox">)</p><textarea id="urid"></textarea></div>
|
|
<div id="r"><p><button onclick="btn('urie')"><<<</button> urie (cmp: <input id="uriecmp" style="width: 20px;" type="checkbox">)</p><textarea id="urie"></textarea></div>
|
|
<div id="r"><p><button onclick="btn('jsonbtf')"><<<</button> jsonbtf (sp: <input id="jsonbtfsp" style="width: 20px;" value="4">)</p><textarea id="jsonbtf"></textarea></div>
|
|
<div id="r"><p><button onclick="btn('jsonsmp')"><<<</button> jsonsmp</p><textarea id="jsonsmp"></textarea></div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html, body, #container {
|
|
width: 100%;
|
|
height: 100%
|
|
}
|
|
|
|
#container {
|
|
display: flex;
|
|
color: #fafafa;
|
|
background-color: #212121;
|
|
font-family: 'JetBrains Mono Variable', monospace;
|
|
}
|
|
|
|
#container > * {
|
|
flex: 1;
|
|
}
|
|
|
|
#q {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
padding: 10px;
|
|
max-height: 100%;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
#q > * {
|
|
flex: 1;
|
|
}
|
|
|
|
#r {
|
|
display: flex;
|
|
min-height: 200px;
|
|
flex-direction: column;
|
|
background-color: #1e1e1e;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
}
|
|
|
|
#r > textarea {
|
|
flex: 1;
|
|
border: none;
|
|
resize: none;
|
|
background-color: transparent;
|
|
color: #fafafa;
|
|
padding: 10px;
|
|
}
|
|
|
|
#r > textarea:focus {
|
|
outline: none;
|
|
}
|
|
|
|
#r > p {
|
|
padding: 10px;
|
|
background-color: #323232;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#r button {
|
|
border: none;
|
|
padding: 6px 10px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
background-color: #1683ff;
|
|
color: white;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
#r button:hover {
|
|
background-color: #1c74da;
|
|
}
|
|
</style>
|
|
|
|
<script src="/node_modules/monaco-editor/min/vs/loader.js"></script>
|
|
<script>
|
|
require.config({ paths: { vs: '/node_modules/monaco-editor/min/vs' } });
|
|
|
|
require(['vs/editor/editor.main'], function () {
|
|
var editor = monaco.editor.create(document.getElementById('main'), {
|
|
value: '',
|
|
language: 'json',
|
|
automaticLayout: true,
|
|
minimap: { enabled: false },
|
|
fontSize: 16,
|
|
theme: "vs-dark",
|
|
scrollBeyondLastLine: false,
|
|
fontFamily: 'JetBrains Mono Variable',
|
|
fontLigatures: true,
|
|
wordWrap: true
|
|
});
|
|
|
|
function render () {
|
|
const value = editor.getValue()
|
|
try { document.getElementById('base64d').value = atob(value) } catch { document.getElementById('base64d').value ='(err)' }
|
|
try { document.getElementById('base64e').value = btoa(value) } catch { document.getElementById('base64e').value ='(err)' }
|
|
try { document.getElementById('urid').value = document.getElementById('uridcmp').checked ? decodeURIComponent(value) : decodeURI(value) } catch { document.getElementById('urid').value = '(err)' }
|
|
try { document.getElementById('urie').value = document.getElementById('uriecmp').checked ? encodeURIComponent(value) : encodeURI(value) } catch { document.getElementById('urie').value = '(err)' }
|
|
try { document.getElementById('jsonbtf').value = JSON.stringify(JSON.parse(value), null, parseInt(document.getElementById('jsonbtfsp').value)) } catch { document.getElementById('jsonbtf').value ='(err)' }
|
|
try { document.getElementById('jsonsmp').value = JSON.stringify(JSON.parse(value)) } catch { document.getElementById('jsonsmp').value ='(err)' }
|
|
}
|
|
|
|
window.btn = (id) =>
|
|
editor.setValue(document.getElementById(id).value)
|
|
|
|
try {
|
|
document.getElementById('uridcmp').onchange = () => render()
|
|
document.getElementById('uriecmp').onchange = () => render()
|
|
document.getElementById('jsonbtfsp').oninput = () => render()
|
|
} catch{}
|
|
|
|
editor.getModel().onDidChangeContent((event) => {
|
|
render()
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|