Compare commits
5 commits
410dca3db4
...
448c6caa0f
Author | SHA1 | Date | |
---|---|---|---|
|
448c6caa0f | ||
|
48d3e53b66 | ||
|
91380d5264 | ||
|
2e55b8ebbf | ||
|
03342624fc |
12
README.md
12
README.md
|
@ -1,3 +1,13 @@
|
||||||
# band-plan-web
|
# band-plan-web
|
||||||
|
|
||||||
Create a customizable band plan for amateur radio
|
Create a customizable band plan for amateur radio
|
||||||
|
|
||||||
|
Demo of the latest git version on [dm5wk.de](https://dm5wk.de/band-plan/).
|
||||||
|
|
||||||
|
It is possible to
|
||||||
|
- use an own plan in yaml format
|
||||||
|
- toggle columns
|
||||||
|
- filter rows
|
||||||
|
- negate filter rows with "!"
|
||||||
|
- select rows with the mouse
|
||||||
|
- download the plan in pdf format
|
||||||
|
|
|
@ -13,6 +13,9 @@
|
||||||
body>div {
|
body>div {
|
||||||
padding-bottom: 1em;
|
padding-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
div#togglebuttons>button {
|
||||||
|
margin: 0 0.1em;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -33,6 +36,12 @@ body>div {
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', () => {
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
update_plan();
|
update_plan();
|
||||||
|
|
||||||
|
document.getElementById("sel_plan").addEventListener("keydown", (event) => {
|
||||||
|
if (event.key === 'Enter') {
|
||||||
|
update_plan()
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
@ -55,8 +64,21 @@ body>div {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function display_error(e) {
|
||||||
|
let t = document.getElementById("data-table");
|
||||||
|
t.innerHTML = "";
|
||||||
|
t.removeAttribute("class");
|
||||||
|
console.log(e);
|
||||||
|
document.getElementById("error").innerText = e;
|
||||||
|
}
|
||||||
|
|
||||||
function update_plan() {
|
function update_plan() {
|
||||||
fetch(document.getElementById('sel_plan').value).then((response) => {
|
fetch(document.getElementById('sel_plan').value, {
|
||||||
|
mode: 'cors'
|
||||||
|
}).then((response) => {
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(response.status);
|
||||||
|
}
|
||||||
return response.text();
|
return response.text();
|
||||||
}).then((data) => {
|
}).then((data) => {
|
||||||
try {
|
try {
|
||||||
|
@ -99,45 +121,58 @@ body>div {
|
||||||
{title: "description", field: "description", headerFilter: "input", headerFilterFunc: filter_with_not},
|
{title: "description", field: "description", headerFilter: "input", headerFilterFunc: filter_with_not},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
document.getElementById("print").addEventListener("click", () => {
|
|
||||||
|
document.getElementById("download").addEventListener("click", () => {
|
||||||
let download_range = "all";
|
let download_range = "all";
|
||||||
if (table.getSelectedRows().length > 0) {
|
if (table.getSelectedRows().length > 0) {
|
||||||
download_range = "selected";
|
download_range = "selected";
|
||||||
}
|
}
|
||||||
table.download("pdf", path.basename(document.getElementById('sel_plan').value, '.yml') + '.pdf', {}, download_range);
|
table.download("pdf", path.basename(document.getElementById('sel_plan').value, '.yml') + '.pdf', {}, download_range);
|
||||||
});
|
});
|
||||||
//["band", "frequency", "bandwidth", "mode", "description"].forEach((col) => {
|
|
||||||
table.getColumns().forEach((col) => {
|
table.on("tableBuilt", () => {
|
||||||
document.getElementById("toggle-" + col).addEventListener("click", () => {
|
var div_togglebuttons = document.getElementById("togglebuttons");
|
||||||
table.toggleColumn(col);
|
div_togglebuttons.innerHTML = "<span>Toggle column:</span>";
|
||||||
|
table.getColumns().forEach((col) => {
|
||||||
|
let col_name = col.getField();
|
||||||
|
let b = document.createElement("button");
|
||||||
|
b.innerText = col_name;
|
||||||
|
b.addEventListener("click", () => {
|
||||||
|
table.toggleColumn(col_name);
|
||||||
|
});
|
||||||
|
div_togglebuttons.appendChild(b);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
document.getElementById("error").innerText = "";
|
||||||
document.getElementById("error").innerText = "";
|
} catch (e) {
|
||||||
} catch (e) {
|
display_error(e);
|
||||||
console.log(e);
|
}
|
||||||
document.getElementById("error").innerText = e;
|
}).catch((e) => {
|
||||||
}
|
display_error(e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// used in button
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
function help() {
|
||||||
|
alert(
|
||||||
|
'Plan: use your own yml file for a band plan, URLs are possible, CORS needs to be allowed for the file\n'
|
||||||
|
+ 'Filter rows with text in column headings, use filter starting with "!" as exclusion\n'
|
||||||
|
+ 'Download list: saves .pdf of the current list\n'
|
||||||
|
+ 'Selection of rows with mouse possible'
|
||||||
|
);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<div>
|
<div>
|
||||||
<form name="selection">
|
<label>Plan:
|
||||||
<label>plan:
|
<input name="plan" id="sel_plan" type="text" value="plan-de.yml">
|
||||||
<input name="plan" id="sel_plan" type="text" value="/plan-de.yml">
|
</label>
|
||||||
</label>
|
<button onclick="update_plan()">Change plan</button>
|
||||||
<button onclick="update_plan()">Change plan</button>
|
|
||||||
<button id="print">Print plan</button>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<button id="toggle-band">Toggle band</button>
|
|
||||||
<button id="toggle-frequency">Toggle frequency</button>
|
|
||||||
<button id="toggle-bandwidth">Toggle bandwidth</button>
|
|
||||||
<button id="toggle-mode">Toggle mode</button>
|
|
||||||
<button id="toggle-description">Toggle description</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div id="togglebuttons"></div>
|
||||||
<div>
|
<div>
|
||||||
Use filter with "!" as "not".
|
<button id="download">Download list</button>
|
||||||
|
<button onclick="help()">Help</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="data-table"></div>
|
<div id="data-table"></div>
|
||||||
<div id="error"></div>
|
<div id="error"></div>
|
||||||
|
|
Loading…
Reference in a new issue