UNPKG

node-red-contrib-displayext-node

Version:

A node for software DisplayEXT

303 lines (280 loc) 13.5 kB
<script type="text/javascript"> // convert to i18 text function c_(x) { return RED._("node-red-dashboard/ui_template:ui_template."+x); } RED.nodes.registerType('ui_templatePopupInfosDE',{ category: "Display Externe", color: '#ffccff', defaults: { group: {type: 'ui_groupDE', required:true}, name: {value: ''}, order: {value: 0}, width: {value: 0, validate: function(v) { var valid = true if (this.templateScope !== 'global') { var width = v||0; var currentGroup = $('#node-input-group').val()||this.group; var groupNode = RED.nodes.node(currentGroup); valid = !groupNode || +width <= +groupNode.width; $("#node-input-size").toggleClass("input-error",!valid); } return valid; }}, height: {value: 0}, format: {value: `<!-- Style pour le Popup --> <style> .popupInfos { position: fixed; top: 10px; right: 10px; background-color: rgba(0, 0, 0, 0.7); color: white; /* padding: 20px 20px 0; */ border-radius: 10px 10px 2px 2px; width: 300px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); font-size: 14px; opacity: 0; transform: translateX(100%); transition: opacity 0.5s ease, transform 0.5s ease; z-index: 9999; } .popup-title { font-size: 22px; color: orange; margin-bottom: 10px; font-weight: bold; padding: 20px 20px 0px; } .popup-message { font-size: 14px; padding: 0px 20px 20px; } .popup-bar { width: 100%; height: 3px; background-color: green; border-radius: 2px; margin-top: 10px; transition: width 3s ease, background-color 3s ease; } </style> <!-- Contenu du Popup --> <div id="popupInfos" class="popupInfos"> <div class="popup-title">Change save</div> <div class="popup-message">Change save, please reload to apply</div> <div id="popupBar" class="popup-bar"></div> </div> <script> (function(scope) { // Fonction pour afficher et réinitialiser le popup function showPopup() { const popup = document.getElementById("popupInfos"); const popupBar = document.getElementById("popupBar"); // Réinitialiser l'animation du popup à chaque fois popup.style.transform = "translateX(100%)"; // Déplacer le popup à droite (hors écran) popup.style.opacity = "0"; // Rendre l'élément transparent popupBar.style.width = "100%"; // Réinitialiser la largeur de la barre à 100% popupBar.style.backgroundColor = "green"; // Réinitialiser la couleur à vert // Relancer l'animation après un délai minimal setTimeout(function() { popup.style.transform = "translateX(0)"; // Revenir à sa position initiale popup.style.opacity = "1"; // Rendre l'élément visible // Réinitialiser la barre de progression setTimeout(function() { popupBar.style.transition = "none"; // Désactiver la transition pour réinitialiser popupBar.style.width = "100%"; // Remettre la barre à 100% popupBar.style.backgroundColor = "green"; // Remettre la couleur verte // Lancer la transition de réduction de la barre setTimeout(function() { popupBar.style.transition = "width 3s ease, background-color 3s ease"; // Réactiver la transition popupBar.style.width = "0"; // Rétrécir la barre popupBar.style.backgroundColor = "red"; // Passer à la couleur rouge }, 50); // Délai avant que la barre commence à rétrécir }, 50); // Un petit délai pour réinitialiser correctement la barre // Après 3 secondes (quand la barre devient rouge et disparait), le popup disparaît setTimeout(function() { popup.style.opacity = "0"; // Rendre transparent popup.style.transform = "translateX(100%)"; // Le déplacer à droite à nouveau }, 3000); // Après 3 secondes }, 50); // Un petit délai avant de relancer l'animation } // Réagir à l'arrivée de n'importe quel msg.payload scope.$watch('msg.payload', function(payload) { // Même si msg.payload change, le texte reste le même. showPopup(); // Afficher le popup avec le texte fixe }); })(scope); `+`<`+`/script> `}, storeOutMessages: {value: true}, fwdInMessages: {value: false}, resendOnRefresh: {value: true}, templateScope: {value: 'local'}, className: {value: ''} }, inputs:1, outputs:0, icon: "icon.png", paletteLabel: 'Popup Infos', label: function() { return this.name || 'Popup Infos'; }, labelStyle: function() { return this.name?"node_label_italic":""; }, oneditprepare: function() { if (RED.editor.hasOwnProperty("editText") && typeof RED.editor.editText === "function") { $("#node-template-expand-editor").show(); } else { $("#node-template-expand-editor").hide(); } var that = this; $("#node-input-size").elementSizer({ width: "#node-input-width", height: "#node-input-height", group: "#node-input-group" }); if (typeof this.storeOutMessages === 'undefined') { this.storeOutMessages = true; $('#node-input-storeOutMessages').prop('checked', true); } if (typeof this.fwdInMessages === 'undefined') { this.fwdInMessages = true; $('#node-input-fwdInMessages').prop('checked', true); } if (typeof this.templateScope === 'undefined') { this.templateScope = 'local'; $('#node-input-templateScope').val(this.templateScope); } $('#node-input-templateScope').on('change', function() { if ($('#node-input-templateScope').val() === 'global') { $('#template-row-group, #template-row-size, #template-pass-store, #template-row-class').hide(); that._def.defaults.group.required = false; } else { $('#template-row-group, #template-row-size, #template-pass-store, #template-row-class').show(); that._def.defaults.group.required = true; } var rows = $("#dialog-form>div:not(.node-text-editor-row)"); var height = $("#dialog-form").height(); for (var i=0; i<rows.size(); i++) { height = height - $(rows[i]).outerHeight(true); } if ($('#node-input-templateScope').val() === "global") { height += 240; } var editorRow = $("#dialog-form>div.node-text-editor-row"); height -= (parseInt(editorRow.css("marginTop")) + parseInt(editorRow.css("marginBottom"))); $(".node-text-editor").css("height",height+"px"); if (this.editor) { this.editor.resize(); } }) this.editor = RED.editor.createEditor({ id: 'node-input-format-editor', mode: 'ace/mode/html', value: $("#node-input-format").val() }); RED.library.create({ url:"uitemplates", // where to get the data from type:"ui_template", // the type of object the library is for editor:this.editor, // the field name the main text body goes to mode:"ace/mode/html", fields:['name'] }); this.editor.focus(); RED.popover.tooltip($("#node-template-expand-editor"),c_("label.expand")); $("#node-template-expand-editor").on("click", function(e) { e.preventDefault(); var value = that.editor.getValue(); RED.editor.editText({ mode: 'html', value: value, width: "Infinity", cursor: that.editor.getCursorPosition(), complete: function(v,cursor) { that.editor.setValue(v, -1); that.editor.gotoLine(cursor.row+1,cursor.column,false); setTimeout(function() { that.editor.focus(); },300); } }) }) }, oneditsave: function() { var annot = this.editor.getSession().getAnnotations(); this.noerr = 0; $("#node-input-noerr").val(0); for (var k=0; k < annot.length; k++) { if (annot[k].type === "error") { $("#node-input-noerr").val(annot.length); this.noerr = annot.length; } } $("#node-input-format").val(this.editor.getValue()); this.editor.destroy(); delete this.editor; }, oneditcancel: function() { this.editor.destroy(); delete this.editor; }, oneditresize: function(size) { var rows = $("#dialog-form>div:not(.node-text-editor-row)"); var height = $("#dialog-form").height(); for (var i=0; i<rows.size(); i++) { height = height - $(rows[i]).outerHeight(true); } if ($('#node-input-templateScope').val() === "global") { height += 232; } var editorRow = $("#dialog-form>div.node-text-editor-row"); height -= (parseInt(editorRow.css("marginTop")) + parseInt(editorRow.css("marginBottom"))); $(".node-text-editor").css("height",height+"px"); this.editor.resize(); } }); </script> <script type="text/html" data-template-name="ui_templatePopupInfosDE"> <!-- <div class="form-row"> <label for="node-input-format"><span data-i18n="ui_templatePopupInfosDE.label.type"></span></label> <select style="width:76%" id="node-input-templateScope"> <option value="local" data-i18n="ui_templatePopupInfosDE.label.local"></option> <option value="global" data-i18n="ui_templatePopupInfosDE.label.global"></option> </select> </div> --> <div class="form-row" id="template-row-group"> <label for="node-input-group"><i class="fa fa-table"></i> <span data-i18n="ui_templatePopupInfosDE.label.group"></span></label> <input type="text" id="node-input-group"> </div> <div class="form-row" id="template-row-size"> <label><i class="fa fa-object-group"></i> <span data-i18n="ui_templatePopupInfosDE.label.size"></span></label> <input type="hidden" id="node-input-width"> <input type="hidden" id="node-input-height"> <button class="editor-button" id="node-input-size"></button> </div> <!-- <div class="form-row" id="template-row-class"> <label for="node-input-className"><i class="fa fa-code"></i> <span data-i18n="ui_templatePopupInfosDE.label.className"></label> <input type="text" id="node-input-className" data-i18n="[placeholder]ui_templatePopupInfosDE.label.classNamePlaceholder"/> </div> --> <div class="form-row"> <label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label> <div style="display:inline-block; width:calc(100% - 105px)"> <input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name"> </div> </div> <div class="form-row" style="display:none;margin-bottom:0px; "> <label for="node-input-format"><i class="fa fa-copy"></i> <span data-i18n="ui_templatePopupInfosDE.label.template"></span></label> <input type="hidden" id="node-input-format"> <button id="node-template-expand-editor" class="red-ui-button red-ui-button-small" style="float:right"><i class="fa fa-expand"></i></button> </div> <!-- <div class="form-row node-text-editor-row"> <div style="height:250px; min-height:100px" class="node-text-editor" id="node-input-format-editor" ></div> </div> --> <!-- <div id="template-pass-store"> <div class="form-row" style="margin-bottom:0px;"> <input type="checkbox" id="node-input-fwdInMessages" style="display:inline-block; margin-left:8px; width:auto; vertical-align:top;"> <label for="node-input-fwdInMessages" style="width:70%;"> <span data-i18n="ui_templatePopupInfosDE.label.pass-through"></span></label> </div> <div class="form-row" style="margin-bottom:0px;"> <input type="checkbox" id="node-input-storeOutMessages" style="display:inline-block; margin-left:8px; width:auto; vertical-align:top;"> <label for="node-input-storeOutMessages" style="width:70%;"> <span data-i18n="ui_templatePopupInfosDE.label.store-state"></span></label> </div> <div class="form-row" style="margin-bottom:0px;"> <input type="checkbox" id="node-input-resendOnRefresh" style="display:inline-block; margin-left:8px; width:auto; vertical-align:top;"> <label for="node-input-resendOnRefresh" style="width:70%;"> <span data-i18n="ui_templatePopupInfosDE.label.resend"></span></label> </div> </div> --> </script>