Out-of-bounds setting values are now shown in red
This commit is contained in:
parent
69a28210e9
commit
b9c6c0b3bd
|
@ -173,6 +173,14 @@ function addSetting(ob) {
|
|||
window["setting_"+ob.id] = refin; // Is this still needed?
|
||||
window["label_"+ob.id] = reflb; // Is this still needed?
|
||||
// Add event function to input
|
||||
var updateLabelColor = function () {
|
||||
var value = (ob.unit === "float" ? parseFloat : parseInt)(reflb.val());
|
||||
if(value > ob.max || value < ob.min) {
|
||||
reflb.addClass("setting-value-warning");
|
||||
} else {
|
||||
reflb.removeClass("setting-value-warning");
|
||||
}
|
||||
}
|
||||
var send = function () {
|
||||
sliders_throttle(ob.id, function () {
|
||||
socket.send({'cmd': $(refin).attr('id'), 'data': $(reflb).val()});
|
||||
|
@ -180,11 +188,12 @@ function addSetting(ob) {
|
|||
}
|
||||
refin.on("input", function (event) {
|
||||
reflb.val(refin.val());
|
||||
updateLabelColor();
|
||||
send();
|
||||
});
|
||||
}).on("change", updateLabelColor);
|
||||
reflb.on("change", function (event) {
|
||||
var value = (ob.unit === "float" ? parseFloat : parseInt)(event.target.value);
|
||||
if(Number.isNaN(value) || value > ob.max || value < ob.min) {
|
||||
if(Number.isNaN(value) || (ob.min >= 0 && value < 0)) {
|
||||
event.target.value = refin.val();
|
||||
return;
|
||||
}
|
||||
|
@ -193,6 +202,7 @@ function addSetting(ob) {
|
|||
}
|
||||
refin.val(value);
|
||||
reflb.val(value);
|
||||
updateLabelColor();
|
||||
send();
|
||||
});
|
||||
} else if(ob.uitype == "toggle"){
|
||||
|
@ -2065,48 +2075,48 @@ $(document).ready(function(){
|
|||
newTextHighlight($("#n"+msg.data))
|
||||
} else if(msg.cmd == "updatetemp") {
|
||||
// Send current temp value to input
|
||||
$("#settemp").val(parseFloat(msg.data));
|
||||
$("#settempcur").val(msg.data);
|
||||
$("#settemp").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatetopp") {
|
||||
// Send current top p value to input
|
||||
$("#settopp").val(parseFloat(msg.data));
|
||||
$("#settoppcur").val(msg.data);
|
||||
$("#settopp").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatetopk") {
|
||||
// Send current top k value to input
|
||||
$("#settopk").val(parseFloat(msg.data));
|
||||
$("#settopkcur").val(msg.data);
|
||||
$("#settopk").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatetfs") {
|
||||
// Send current tfs value to input
|
||||
$("#settfs").val(parseFloat(msg.data));
|
||||
$("#settfscur").val(msg.data);
|
||||
$("#settfs").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatetypical") {
|
||||
// Send current typical value to input
|
||||
$("#settypical").val(parseFloat(msg.data));
|
||||
$("#settypicalcur").val(msg.data);
|
||||
$("#settypical").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatereppen") {
|
||||
// Send current rep pen value to input
|
||||
$("#setreppen").val(parseFloat(msg.data));
|
||||
$("#setreppencur").val(msg.data);
|
||||
$("#setreppen").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatereppenslope") {
|
||||
// Send current rep pen value to input
|
||||
$("#setreppenslope").val(parseFloat(msg.data));
|
||||
$("#setreppenslopecur").val(msg.data);
|
||||
$("#setreppenslope").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatereppenrange") {
|
||||
// Send current rep pen value to input
|
||||
$("#setreppenrange").val(parseFloat(msg.data));
|
||||
$("#setreppenrangecur").val(msg.data);
|
||||
$("#setreppenrange").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updateoutlen") {
|
||||
// Send current output amt value to input
|
||||
$("#setoutput").val(parseInt(msg.data));
|
||||
$("#setoutputcur").val(msg.data);
|
||||
$("#setoutput").val(parseInt(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatetknmax") {
|
||||
// Send current max tokens value to input
|
||||
$("#settknmax").val(parseInt(msg.data));
|
||||
$("#settknmaxcur").val(msg.data);
|
||||
$("#settknmax").val(parseInt(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updateikgen") {
|
||||
// Send current max tokens value to input
|
||||
$("#setikgen").val(parseInt(msg.data));
|
||||
$("#setikgencur").val(msg.data);
|
||||
$("#setikgen").val(parseInt(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "setlabeltemp") {
|
||||
// Update setting label with value from server
|
||||
$("#settempcur").val(msg.data);
|
||||
|
@ -2310,15 +2320,15 @@ $(document).ready(function(){
|
|||
$("#setnumseqcur").html(msg.data);
|
||||
} else if(msg.cmd == "updatenumseq") {
|
||||
// Send current max tokens value to input
|
||||
$("#setnumseq").val(parseInt(msg.data));
|
||||
$("#setnumseqcur").html(msg.data);
|
||||
$("#setnumseq").val(parseInt(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "setlabelwidepth") {
|
||||
// Update setting label with value from server
|
||||
$("#setwidepthcur").html(msg.data);
|
||||
} else if(msg.cmd == "updatewidepth") {
|
||||
// Send current max tokens value to input
|
||||
$("#setwidepth").val(parseInt(msg.data));
|
||||
$("#setwidepthcur").html(msg.data);
|
||||
$("#setwidepth").val(parseInt(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updateuseprompt") {
|
||||
// Update toggle state
|
||||
$("#setuseprompt").prop('checked', msg.data).change();
|
||||
|
|
|
@ -22,6 +22,14 @@ chunk.editing, chunk.editing * {
|
|||
font-style: normal !important;
|
||||
}
|
||||
|
||||
.setting-value-warning {
|
||||
color: #ff7777;
|
||||
}
|
||||
|
||||
.setting-value-warning:focus {
|
||||
color: #ffaaaa !important;
|
||||
}
|
||||
|
||||
.settinglabel input {
|
||||
width: 5ch;
|
||||
background-color: inherit;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<link rel="stylesheet" href="static/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="static/bootstrap-toggle.min.css">
|
||||
<link rel="stylesheet" href="static/open-iconic-bootstrap.min.css">
|
||||
<link rel="stylesheet" href="static/custom.css?ver=1.17a">
|
||||
<link rel="stylesheet" href="static/custom.css?ver=1.17c">
|
||||
|
||||
<script src="static/jquery-3.6.0.min.js"></script>
|
||||
<script src="static/jquery-ui.sortable.min.js"></script>
|
||||
|
@ -17,7 +17,7 @@
|
|||
<script src="static/bootstrap.min.js"></script>
|
||||
<script src="static/bootstrap-toggle.min.js"></script>
|
||||
<script src="static/rangy-core.min.js"></script>
|
||||
<script src="static/application.js?ver=1.17f"></script>
|
||||
<script src="static/application.js?ver=1.17g"></script>
|
||||
</head>
|
||||
<body>
|
||||
<input type="file" id="remote-save-select" accept="application/json" style="display:none">
|
||||
|
|
Loading…
Reference in New Issue