UNPKG

iobroker.poolcontroller

Version:
101 lines (94 loc) 3.91 kB
<html> <head> <!-- these 4 files always have to be included --> <link rel="stylesheet" type="text/css" href="../../lib/css/materialize.css"> <link rel="stylesheet" type="text/css" href="../../css/adapter.css"/> <script type="text/javascript" src="../../lib/js/jquery-3.2.1.min.js"></script> <script type="text/javascript" src="../../socket.io/socket.io.js"></script> <!-- these files always have to be included --> <script type="text/javascript" src="../../js/translate.js"></script> <script type="text/javascript" src="../../lib/js/materialize.js"></script> <script type="text/javascript" src="../../js/adapter-settings.js"></script> <script type="text/javascript" src="words.js"></script> <style> .m .col .select-wrapper+label { top: -26px; } .m span{ font-size: 0.9em; } </style> <!-- you have to define 2 functions in the global scope: --> <script type="text/javascript"> // the function loadSettings has to exist ... function load(settings, onChange) { // example: select elements with id=key and class=value and insert value if (!settings) return; $('.value').each(function () { var $key = $(this); var id = $key.attr('id'); if ($key.attr('type') === 'checkbox') { // do not call onChange direct, because onChange could expect some arguments $key.prop('checked', settings[id]).change(function() { onChange(); }); } else { // do not call onChange direct, because onChange could expect some arguments $key.val(settings[id]).change(function() { onChange(); }).keyup(function() { onChange(); }); } }); onChange(false); M.updateTextFields(); // function Materialize.updateTextFields(); to reinitialize all the Materialize labels on the page if you are dynamically adding inputs. } // ... and the function save has to exist. // you have to make sure the callback is called with the settings object as first param! function save(callback) { // example: select elements with class=value and build settings object var obj = {}; $('.value').each(function () { var $this = $(this); if ($this.attr('type') === 'checkbox') { obj[$this.attr('id')] = $this.prop('checked'); } else { obj[$this.attr('id')] = $this.val(); } }); callback(obj); } </script> </head> <body> <!-- you have to put your config page in a div with id adapter-container --> <div class="m adapter-container"> <div class="row"> <!-- Forms are the standard way to receive user inputted data. Learn more http://materializecss.com/forms.html--> <div class="row"> <div class="input-field col s6"> <img src="poolcontroller.png" class="logo"> </div> </div> <div class="row"> <div class="input-field col s12 m6 l4"> <input class="value" id="host" type="text"> <label for="host">IP-Adresse</label> <span class="translate">IP-Adresse des Controllers</span> </div> <div class="input-field col s12 m6 l4"> <input class="value" id="port" type="text"> <label for="port">Port</label> <span class="translate">Port des Controllers</span> </div> <div class="row"> <div class="col s12"> <p class="translate">on save adapter restarts with new config immediately</p> </div> </div> </div> </div> </body> </html>