Basic EVOLV setup

This commit is contained in:
2025-07-23 14:46:03 +02:00
parent 79e0d0678a
commit f70fa15ef5
5 changed files with 228 additions and 23 deletions

View File

@@ -1,28 +1,51 @@
<script src="/liquidFlowHandler/menu.js"></script>
<script type="text/javascript">
RED.nodes.registerType("liquidFlowHandler", {
category: "WWTP",
color: "#e4a363",
defaults: {
name: { value: "" },
},
inputs: 1,
outputs: 3,
inputLabels: ["input"],
outputLabels: ["process", "dbase", "parent"],
icon: "font-awesome/fa-random",
label: function() {
return this.name || "Liquid Flow Handler";
RED.nodes.registerType("liquidFlowHandler", {
category: "WWTP",
color: "#e4a363",
defaults: {
name: { value: "" },
},
inputs: 1,
outputs: 3,
inputLabels: ["input"],
outputLabels: ["process", "dbase", "parent"],
icon: "font-awesome/fa-random",
label: function() {
return this.name || "Liquid Flow Handler";
},
oneditprepare: function() {
// wait for the menu scripts to load
const waitForMenuData = () => {
if (window.EVOLV?.nodes?.liquidFlowHandler?.initEditor) {
window.EVOLV.nodes.liquidFlowHandler.initEditor(this);
} else {
setTimeout(waitForMenuData, 50);
}
});
};
waitForMenuData();
},
oneditsave: function() {
// save logger fields
if (window.EVOLV?.nodes?.liquidFlowHandler?.loggerMenu?.saveEditor) {
window.EVOLV.nodes.liquidFlowHandler.loggerMenu.saveEditor(this);
}
}
});
</script>
<script type="text/html" data-template-name="liquidFlowHandler">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<!-- Logger fields injected here -->
<div id="logger-fields-placeholder"></div>
</script>
<script type="text/html" data-help-name="liquidFlowHandler">
<p>Liquid Flow Handler for handling multicomponent liquid flows</p>
<p>Liquid Flow Handler for handling multicomponent liquid flows</p>
</script>