2017-02-08 14:36:28 +01:00
|
|
|
$(document).ready( function() {
|
|
|
|
performTranslation();
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2017-02-08 14:36:28 +01:00
|
|
|
var conf_editor_json = null;
|
|
|
|
var conf_editor_proto = null;
|
2018-12-28 18:12:45 +01:00
|
|
|
var conf_editor_fbs = null;
|
2017-02-08 14:36:28 +01:00
|
|
|
var conf_editor_bobl = null;
|
|
|
|
var conf_editor_udpl = null;
|
|
|
|
var conf_editor_forw = null;
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2019-06-05 18:19:08 +02:00
|
|
|
if(window.showOptHelp)
|
2017-01-17 21:53:35 +01:00
|
|
|
{
|
|
|
|
//jsonserver
|
|
|
|
$('#conf_cont').append(createRow('conf_cont_json'))
|
|
|
|
$('#conf_cont_json').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_js_heading_title"), 'editor_container_jsonserver', 'btn_submit_jsonserver'));
|
2019-06-05 18:19:08 +02:00
|
|
|
$('#conf_cont_json').append(createHelpTable(window.schema.jsonServer.properties, $.i18n("edt_conf_js_heading_title")));
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2018-12-28 18:12:45 +01:00
|
|
|
//flatbufserver
|
|
|
|
$('#conf_cont').append(createRow('conf_cont_flatbuf'))
|
|
|
|
$('#conf_cont_flatbuf').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fbs_heading_title"), 'editor_container_fbserver', 'btn_submit_fbserver'));
|
2019-06-05 18:19:08 +02:00
|
|
|
$('#conf_cont_flatbuf').append(createHelpTable(window.schema.flatbufServer.properties, $.i18n("edt_conf_fbs_heading_title")));
|
2018-12-28 18:12:45 +01:00
|
|
|
|
2019-02-17 15:26:11 +01:00
|
|
|
//protoserver
|
|
|
|
$('#conf_cont').append(createRow('conf_cont_proto'))
|
|
|
|
$('#conf_cont_proto').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_pbs_heading_title"), 'editor_container_protoserver', 'btn_submit_protoserver'));
|
2019-06-05 18:19:08 +02:00
|
|
|
$('#conf_cont_proto').append(createHelpTable(window.schema.protoServer.properties, $.i18n("edt_conf_pbs_heading_title")));
|
2019-02-17 15:26:11 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
//boblight
|
|
|
|
$('#conf_cont').append(createRow('conf_cont_bobl'))
|
|
|
|
$('#conf_cont_bobl').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_bobls_heading_title"), 'editor_container_boblightserver', 'btn_submit_boblightserver'));
|
2019-06-05 18:19:08 +02:00
|
|
|
$('#conf_cont_bobl').append(createHelpTable(window.schema.boblightServer.properties, $.i18n("edt_conf_bobls_heading_title")));
|
2017-01-17 21:53:35 +01:00
|
|
|
|
|
|
|
//udplistener
|
|
|
|
$('#conf_cont').append(createRow('conf_cont_udpl'))
|
|
|
|
$('#conf_cont_udpl').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_udpl_heading_title"), 'editor_container_udplistener', 'btn_submit_udplistener'));
|
2019-06-05 18:19:08 +02:00
|
|
|
$('#conf_cont_udpl').append(createHelpTable(window.schema.udpListener.properties, $.i18n("edt_conf_udpl_heading_title")));
|
2017-01-17 21:53:35 +01:00
|
|
|
|
|
|
|
//forwarder
|
|
|
|
if(storedAccess != 'default')
|
|
|
|
{
|
|
|
|
$('#conf_cont').append(createRow('conf_cont_fw'))
|
|
|
|
$('#conf_cont_fw').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fw_heading_title"), 'editor_container_forwarder', 'btn_submit_forwarder'));
|
2019-06-05 18:19:08 +02:00
|
|
|
$('#conf_cont_fw').append(createHelpTable(window.schema.forwarder.properties, $.i18n("edt_conf_fw_heading_title")));
|
2017-01-17 21:53:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$('#conf_cont').addClass('row');
|
|
|
|
$('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_js_heading_title"), 'editor_container_jsonserver', 'btn_submit_jsonserver'));
|
2018-12-28 18:12:45 +01:00
|
|
|
$('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fbs_heading_title"), 'editor_container_fbserver', 'btn_submit_fbserver'));
|
2019-02-17 15:26:11 +01:00
|
|
|
$('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_pbs_heading_title"), 'editor_container_protoserver', 'btn_submit_protoserver'));
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_bobls_heading_title"), 'editor_container_boblightserver', 'btn_submit_boblightserver'));
|
|
|
|
$('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_udpl_heading_title"), 'editor_container_udplistener', 'btn_submit_udplistener'));
|
2018-12-27 23:11:32 +01:00
|
|
|
if(storedAccess != 'default')
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fw_heading_title"), 'editor_container_forwarder', 'btn_submit_forwarder'));
|
|
|
|
}
|
|
|
|
|
|
|
|
//json
|
2016-12-21 18:24:03 +01:00
|
|
|
conf_editor_json = createJsonEditor('editor_container_jsonserver', {
|
2019-06-05 18:19:08 +02:00
|
|
|
jsonServer : window.schema.jsonServer
|
2016-12-21 18:24:03 +01:00
|
|
|
}, true, true);
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
conf_editor_json.on('change',function() {
|
|
|
|
conf_editor_json.validate().length ? $('#btn_submit_jsonserver').attr('disabled', true) : $('#btn_submit_jsonserver').attr('disabled', false);
|
|
|
|
});
|
|
|
|
|
2016-12-21 18:24:03 +01:00
|
|
|
$('#btn_submit_jsonserver').off().on('click',function() {
|
|
|
|
requestWriteConfig(conf_editor_json.getValue());
|
|
|
|
});
|
2017-01-17 21:53:35 +01:00
|
|
|
|
2018-12-28 18:12:45 +01:00
|
|
|
//flatbuffer
|
|
|
|
conf_editor_fbs = createJsonEditor('editor_container_fbserver', {
|
2019-06-05 18:19:08 +02:00
|
|
|
flatbufServer : window.schema.flatbufServer
|
2018-12-28 18:12:45 +01:00
|
|
|
}, true, true);
|
|
|
|
|
|
|
|
conf_editor_fbs.on('change',function() {
|
|
|
|
conf_editor_fbs.validate().length ? $('#btn_submit_fbserver').attr('disabled', true) : $('#btn_submit_fbserver').attr('disabled', false);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#btn_submit_fbserver').off().on('click',function() {
|
|
|
|
requestWriteConfig(conf_editor_fbs.getValue());
|
|
|
|
});
|
|
|
|
|
2019-02-17 15:26:11 +01:00
|
|
|
//protobuffer
|
|
|
|
conf_editor_proto = createJsonEditor('editor_container_protoserver', {
|
2019-06-05 18:19:08 +02:00
|
|
|
protoServer : window.schema.protoServer
|
2019-02-17 15:26:11 +01:00
|
|
|
}, true, true);
|
|
|
|
|
|
|
|
conf_editor_proto.on('change',function() {
|
|
|
|
conf_editor_proto.validate().length ? $('#btn_submit_protoserver').attr('disabled', true) : $('#btn_submit_protoserver').attr('disabled', false);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#btn_submit_protoserver').off().on('click',function() {
|
|
|
|
requestWriteConfig(conf_editor_proto.getValue());
|
|
|
|
});
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
//boblight
|
2016-12-21 18:24:03 +01:00
|
|
|
conf_editor_bobl = createJsonEditor('editor_container_boblightserver', {
|
2019-06-05 18:19:08 +02:00
|
|
|
boblightServer : window.schema.boblightServer
|
2016-12-21 18:24:03 +01:00
|
|
|
}, true, true);
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
conf_editor_bobl.on('change',function() {
|
|
|
|
conf_editor_bobl.validate().length ? $('#btn_submit_boblightserver').attr('disabled', true) : $('#btn_submit_boblightserver').attr('disabled', false);
|
|
|
|
});
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2016-12-21 18:24:03 +01:00
|
|
|
$('#btn_submit_boblightserver').off().on('click',function() {
|
|
|
|
requestWriteConfig(conf_editor_bobl.getValue());
|
|
|
|
});
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
//udplistener
|
2016-12-21 18:24:03 +01:00
|
|
|
conf_editor_udpl = createJsonEditor('editor_container_udplistener', {
|
2019-06-05 18:19:08 +02:00
|
|
|
udpListener : window.schema.udpListener
|
2016-12-21 18:24:03 +01:00
|
|
|
}, true, true);
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
conf_editor_udpl.on('change',function() {
|
|
|
|
conf_editor_udpl.validate().length ? $('#btn_submit_udplistener').attr('disabled', true) : $('#btn_submit_udplistener').attr('disabled', false);
|
2016-12-21 18:24:03 +01:00
|
|
|
});
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#btn_submit_udplistener').off().on('click',function() {
|
|
|
|
requestWriteConfig(conf_editor_udpl.getValue());
|
2016-10-10 23:15:50 +02:00
|
|
|
});
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
if(storedAccess != 'default')
|
2017-01-04 10:55:10 +01:00
|
|
|
{
|
2017-01-17 21:53:35 +01:00
|
|
|
//forwarder
|
|
|
|
conf_editor_forw = createJsonEditor('editor_container_forwarder', {
|
2019-06-05 18:19:08 +02:00
|
|
|
forwarder : window.schema.forwarder
|
2017-01-17 21:53:35 +01:00
|
|
|
}, true, true);
|
|
|
|
|
|
|
|
conf_editor_forw.on('change',function() {
|
|
|
|
conf_editor_forw.validate().length ? $('#btn_submit_forwarder').attr('disabled', true) : $('#btn_submit_forwarder').attr('disabled', false);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#btn_submit_forwarder').off().on('click',function() {
|
|
|
|
requestWriteConfig(conf_editor_forw.getValue());
|
|
|
|
});
|
2017-01-04 10:55:10 +01:00
|
|
|
}
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2017-02-08 14:36:28 +01:00
|
|
|
//create introduction
|
2019-06-05 18:19:08 +02:00
|
|
|
if(window.showOptHelp)
|
2017-02-08 14:36:28 +01:00
|
|
|
{
|
|
|
|
createHint("intro", $.i18n('conf_network_json_intro'), "editor_container_jsonserver");
|
2018-12-28 18:12:45 +01:00
|
|
|
createHint("intro", $.i18n('conf_network_fbs_intro'), "editor_container_fbserver");
|
2019-02-17 15:26:11 +01:00
|
|
|
createHint("intro", $.i18n('conf_network_proto_intro'), "editor_container_protoserver");
|
2017-02-08 14:36:28 +01:00
|
|
|
createHint("intro", $.i18n('conf_network_bobl_intro'), "editor_container_boblightserver");
|
|
|
|
createHint("intro", $.i18n('conf_network_udpl_intro'), "editor_container_udplistener");
|
|
|
|
createHint("intro", $.i18n('conf_network_forw_intro'), "editor_container_forwarder");
|
|
|
|
}
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2017-02-08 14:36:28 +01:00
|
|
|
removeOverlay();
|
2016-10-09 10:23:04 +02:00
|
|
|
});
|