forked from extern/jq_offline
176 lines
6.6 KiB
HTML
Executable File
176 lines
6.6 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Jq Play Offline</title>
|
|
<script>
|
|
if('serviceWorker' in navigator) {
|
|
navigator.serviceWorker.register('/jq_offline/service_worker.js', { scope: '/jq_offline' })
|
|
.then(function(registration) {
|
|
console.log('Service Worker Registered');
|
|
})
|
|
.catch(e => {
|
|
console.log('Unable to register service worker', e);
|
|
});
|
|
|
|
navigator.serviceWorker.ready.then(function(registration) {
|
|
console.log('Service Worker Ready');
|
|
})
|
|
.catch(e => {
|
|
console.log('Service worker unable to get ready', e);
|
|
});
|
|
}
|
|
</script>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="https://cdn.biowasm.com/v2/aioli/latest/aioli.js"></script>
|
|
<script defer type="module">
|
|
async function setup() {
|
|
// Populate the form from the url parameters
|
|
let params = (new URL(document.location)).searchParams;
|
|
let query = params.get('query');
|
|
|
|
if (query) {
|
|
document.getElementById("filter").value = query;
|
|
}
|
|
}
|
|
|
|
async function jq() {
|
|
let data = document.getElementById("input-json").value;
|
|
let query = document.getElementById("filter").value;
|
|
let compactOutput = document.getElementById("compact-output").checked;
|
|
let sortKeys = document.getElementById("sort-keys").checked;
|
|
let rawInput = document.getElementById("raw-input").checked;
|
|
let rawOutput = document.getElementById("raw-output").checked;
|
|
let slurp = document.getElementById("slurp").checked;
|
|
|
|
let options = ["--monochrome-output"];
|
|
if (compactOutput) {
|
|
options.push("--compact-output");
|
|
}
|
|
if (sortKeys) {
|
|
options.push("--sort-keys");
|
|
}
|
|
if (rawInput) {
|
|
options.push("--raw-input");
|
|
}
|
|
if (rawOutput) {
|
|
options.push("--raw-output");
|
|
}
|
|
if (slurp) {
|
|
options.push("--slurp");
|
|
}
|
|
|
|
// Update url query params with current query
|
|
let params = (new URL(document.location)).searchParams;
|
|
params.set('query', query);
|
|
const url = new URL(document.location);
|
|
url.search = params.toString();
|
|
window.history.replaceState({}, 'Jq Offline', url);
|
|
|
|
// Create mock JSON file
|
|
await CLI.fs.writeFile("test.json", data);
|
|
|
|
options.push(query);
|
|
options.push("test.json");
|
|
|
|
let output = await CLI.exec("jq", options);
|
|
document.getElementById("output-json").value = output;
|
|
}
|
|
|
|
// buffer and call the callback only after no activity for "interval": aka debounce
|
|
// This reduces load on the browser by avoiding jq evaluation while the user is typing
|
|
function debounce(callback, interval) {
|
|
let debounceTimeoutId;
|
|
|
|
return function(...args) {
|
|
clearTimeout(debounceTimeoutId);
|
|
debounceTimeoutId = setTimeout(() => callback.apply(this, args), interval);
|
|
};
|
|
}
|
|
|
|
let delayedJq = debounce(jq, 400);
|
|
|
|
setup();
|
|
let CLI = await new Aioli("jq/1.6");
|
|
|
|
document.getElementById("filter").addEventListener('input', delayedJq);
|
|
document.getElementById("input-json").addEventListener('input', delayedJq);
|
|
document.getElementById("compact-output").addEventListener('input', jq);
|
|
document.getElementById("sort-keys").addEventListener('input', jq);
|
|
document.getElementById("raw-input").addEventListener('input', jq);
|
|
document.getElementById("raw-output").addEventListener('input', jq);
|
|
document.getElementById("slurp").addEventListener('input', jq);
|
|
// Call jq the first time without any changes
|
|
jq();
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="top">
|
|
<h1>Jq Play Offline</h1>
|
|
<a href="https://stedolan.github.io/jq/manual/v1.6/">1.6 - Web Assembly Version</a>
|
|
</div>
|
|
<div id="content">
|
|
<div id="query">
|
|
<label id="filter-label" for="filter">Query</label>
|
|
<input
|
|
id="filter"
|
|
type="text"
|
|
name="filter"
|
|
autocapitalize="off"
|
|
autocomplete="on"
|
|
spellcheck="false"
|
|
autocorrect="off"
|
|
autofocus
|
|
/>
|
|
<ul id="options">
|
|
<p>Options</p>
|
|
<li>
|
|
<input type="checkbox" id="compact-output" name="co">
|
|
<label for="co" title="By default, jq pretty-prints JSON output. Using this option will result in more compact output by instead putting each JSON object on a single line.">--compact-output</label>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="sort-keys" name="sk">
|
|
<label for="sk" title="Output the fields of each object with the keys in sorted order.">--sort-key</label>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="raw-input" name="ri">
|
|
<label for="ri" title="Don't parse the input as JSON. Instead, each line of text is passed to the filter as a string. If combined with --slurp, then the entire input is passed to the filter as a single long string.">--raw-input</label>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="raw-output" name="ro">
|
|
<label for="ro" title="With this option, if the filter's result is a string then it will be written directly to standard output rather than being formatted as a JSON string with quotes. This can be useful for making jq filters talk to non-JSON-based systems.">--raw-output</label>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="slurp" name="s">
|
|
<label for="s" title="Instead of running the filter for each JSON object in the input, read the entire input stream into a large array and run the filter just once.">--slurp</label>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="input">
|
|
<label id="input-label" for="input-json">Input</label>
|
|
<textarea
|
|
id="input-json"
|
|
name="input"
|
|
placeholder="Paste your input json here"
|
|
autocapitalize="off"
|
|
autocomplete="off"
|
|
spellcheck="false"
|
|
autocorrect="off"
|
|
></textarea>
|
|
</div>
|
|
|
|
<div id="output">
|
|
<label id="output-label" for="output-json">Result</label>
|
|
<textarea
|
|
id="output-json"
|
|
placeholder="Output will appear here"
|
|
readonly
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |