Folks,
I would like some help, please.
I have the following code below:
//Assign to a variable for the expression to be small.
var pMaxima = global.get("pMaxima");
var varSupervisor = global.get("varSupervisor");
var varMergulhador01 = global.get("varMergulhador01");
var varMergulhador02 = global.get("varMergulhador02");
var varMergulhador03 = global.get("varMergulhador03");
var tempoTNR = global.get("tempoTNR");
var tempoM = global.get("tempoM");
var tempoTTF = global.get("tempoTTF");
var vNumRom = global.get("varNumROM");
var vNumMergulho = global.get("varNumMergulho");
var vEmbarcacao = global.get("varEmbarcacao");
var vLocal = global.get("varLocal");
//--------COMEÇA UMA CONFERENCIA SE OS DADOS FORAM PLANEJADOS
var varPlanFeito = global.get("prepDados");
if (pMaxima == '') {varPlanFeito = false };
if (varSupervisor == '') { varPlanFeito = false };
if (varMergulhador01 == '') { varPlanFeito = false };
if (varMergulhador02 == '') { varPlanFeito = false };
if (varMergulhador03 == '') { varPlanFeito = false };
if (tempoM == '') { varPlanFeito = false };
if (tempoTTF == '') { varPlanFeito = false };
// ---PERGUNTAR PARA O CLIENTE SE ESSES DADOS SÃO OPCIONAIS -------------//
if (vNumRom == '') { varPlanFeito = false };
if (vNumMergulho == '') { varPlanFeito = false };
if (vEmbarcacao == '') { varPlanFeito = false };
if (vLocal == '') { varPlanFeito = false };
node.warn(varPlanFeito);
if (varPlanFeito) { global.set("prepDados", true) } else { global.set("prepDados", false) }
msg.column_name = ["Supervisor", "Mergulhador01", "Mergulhador02", "Mergulhador03", "ProfundidadeMaxima_plan", "TNR_plan", "TempoMergulho_plan", "TTF_plan", "NumROM", "NumMergulho", "Embarcacao", "Local"];
msg.column_sort = [varSupervisor, varMergulhador01, varMergulhador02, varMergulhador03, pMaxima, tempoTNR, tempoM, tempoTTF, vNumRom, vNumMergulho, vEmbarcacao, vLocal];
msg.database = "Mergulho";
msg.command = "insert";
But I would like to build it visually.
Because I'm training my personal ability to do everything no-code!!
I have 11 global variables that I need to check if the user has filled it in or not...
And I can already do this efficiently within a function.
But how I want to get wild in NODE-RED and be totally no-CODE.
What is the suggestion to do this completely with the NODES?