add units to config form
This commit is contained in:
parent
da4dab35cc
commit
cdcae0b05e
@ -13,11 +13,11 @@
|
|||||||
<form>
|
<form>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Name</legend>
|
<legend>Name</legend>
|
||||||
<div class="labels-inputs" id="name"></div>
|
<div class="labels-inputs-units" id="name"></div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Resources</legend>
|
<legend>Resources</legend>
|
||||||
<div class="labels-inputs" id="resources"></div>
|
<div class="labels-inputs-units" id="resources"></div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset class="fieldset-no-border">
|
<fieldset class="fieldset-no-border">
|
||||||
<div class="btn-group" id="form-actions">
|
<div class="btn-group" id="form-actions">
|
||||||
|
@ -29,9 +29,9 @@ button {
|
|||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.labels-inputs {
|
.labels-inputs-units {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: auto auto;
|
grid-template-columns: auto auto auto;
|
||||||
column-gap: 10px;
|
column-gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,26 +26,26 @@ async function populateForm (node, type, vmid) {
|
|||||||
|
|
||||||
addFormLine("name", "name", "Name", {type: "text", value: config.data.name});
|
addFormLine("name", "name", "Name", {type: "text", value: config.data.name});
|
||||||
|
|
||||||
addFormLine("resources", "cores", "Cores", {type: "number", value: config.data.cores, min: 1, max: 8192});
|
addFormLine("resources", "cores", "Cores", {type: "number", value: config.data.cores, min: 1, max: 8192}, "Threads");
|
||||||
addFormLine("resources", "memory", "Memory", {type: "number", value: config.data.memory, min: 16});
|
addFormLine("resources", "memory", "Memory", {type: "number", value: config.data.memory / 1024, min: 16}, "GiB");
|
||||||
|
|
||||||
let i = 0;
|
let i = 0;
|
||||||
while(Object.hasOwn(config.data, `sata${i}`)){
|
while(Object.hasOwn(config.data, `sata${i}`)){
|
||||||
let sata = config.data[`sata${i}`];
|
let sata = config.data[`sata${i}`];
|
||||||
sata = `{"${sata.replaceAll(":", '":"').replaceAll("=", '":"').replaceAll(",", '","')}"}`;
|
sata = `{"${sata.replaceAll(":", '":"').replaceAll("=", '":"').replaceAll(",", '","')}"}`;
|
||||||
sata = JSON.parse(sata);
|
sata = JSON.parse(sata);
|
||||||
addFormLine("resources", `sata${i}`, `SATA ${i}`, {type: "text", value: sata.size});
|
addFormLine("resources", `sata${i}`, `SATA ${i}`, {type: "text", value: sata.size.slice(0, sata.size.length - 1)}, sata.size.includes("G") ? "GiB" : "MiB");
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function addFormLine (fieldset, id, labelName, inputAttr) {
|
function addFormLine (fieldset, id, labelValue, inputAttr, unitValue="") {
|
||||||
let form = document.querySelector(`#${fieldset}`);
|
let field = document.querySelector(`#${fieldset}`);
|
||||||
|
|
||||||
let label = document.createElement("label");
|
let label = document.createElement("label");
|
||||||
label.for = id;
|
label.for = id;
|
||||||
label.innerHTML = labelName;
|
label.innerHTML = labelValue;
|
||||||
form.append(label);
|
field.append(label);
|
||||||
|
|
||||||
let input = document.createElement("input");
|
let input = document.createElement("input");
|
||||||
input.id = id;
|
input.id = id;
|
||||||
@ -53,5 +53,9 @@ function addFormLine (fieldset, id, labelName, inputAttr) {
|
|||||||
for (let k in inputAttr) {
|
for (let k in inputAttr) {
|
||||||
input.setAttribute(k, inputAttr[k])
|
input.setAttribute(k, inputAttr[k])
|
||||||
}
|
}
|
||||||
form.append(input);
|
field.append(input);
|
||||||
|
|
||||||
|
let unit = document.createElement("p");
|
||||||
|
unit.innerText = unitValue;
|
||||||
|
field.append(unit)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user