UNPKG

iobroker.emby

Version:
120 lines (114 loc) 4.67 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]).on('change', function() { onChange(); }); } else { // do not call onChange direct, because onChange could expect some arguments $key.val(settings[id]).on('change', function() { onChange(); }).on('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="emby.png" class="logo"> </div> </div> <div class="row"> <div class="input-field col s3"> <input class="value" id="ip" type="text" /> <label for="ip" class="translate">IP</label> </div> </div> <div class="row"> <div class="input-field col s3"> <input class="value" id="isSSL" type="checkbox" /> <label for="isSSL" class="translate">isSSL</label> </div> </div> <div class="row"> <div class="input-field col s3"> <input class="value" id="apikey" type="text" /> <label for="apikey" class="translate">ApiKey</label> </div> </div> <div class="row"> <div class="input-field col s3"> <input class="value" id="deviceIds" type="text" /> <label for="deviceIds" class="translate">DeviceIds</label> </div> </div> <div class="row"> <div class="input-field col s3"> <input class="value" id="timeout" type="text" /> <label for="timeout" class="translate">Timeout</label> <div class="translate">TimeoutDesc</div> </div> </div> <div class="row"> <div class="col s12"> <p class="translate">on save</p> </div> </div> </div> </div> </body> </html>