2013-09-27 18:00:40 -04:00
|
|
|
var configs = [];
|
|
|
|
|
|
|
|
function makeConfigDiv(key, value) {
|
|
|
|
var retVal = "<div class='config'>";
|
|
|
|
|
|
|
|
retVal += "<span class='config_label'>" + key + "</span>";
|
|
|
|
retVal += "<input type='text' class='value' name='value' value='" + value + "'/>";
|
|
|
|
|
|
|
|
retVal += "</div>";
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
function domToConfig(configDiv) {
|
|
|
|
var retVal = {};
|
|
|
|
|
|
|
|
retVal.key = $($(configDiv).find(".config_label")).text();
|
|
|
|
retVal.value = $($(configDiv).find(".value")).val();
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getConfigs() {
|
2014-01-31 15:37:37 -05:00
|
|
|
$.getJSON("/druid/coordinator/v1/config", function(data) {
|
2013-09-27 18:00:40 -04:00
|
|
|
$('#config_list').empty();
|
|
|
|
|
|
|
|
$.each(data, function (key, value) {
|
|
|
|
$('#config_list').append(makeConfigDiv(key, value));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("button").button();
|
|
|
|
|
|
|
|
$("#error_dialog").dialog({
|
|
|
|
autoOpen: false,
|
|
|
|
modal:true,
|
|
|
|
resizeable: false,
|
|
|
|
buttons: {
|
|
|
|
Ok : function() {
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#cancel_dialog").dialog({
|
|
|
|
autoOpen: false,
|
|
|
|
modal:true,
|
|
|
|
resizeable: false,
|
|
|
|
buttons: {
|
|
|
|
Yes : function() {
|
|
|
|
getConfigs();
|
|
|
|
$(this).dialog("close");
|
|
|
|
},
|
|
|
|
No: function() {
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#update_dialog").dialog({
|
|
|
|
autoOpen: false,
|
|
|
|
modal:true,
|
|
|
|
resizeable: false,
|
|
|
|
buttons: {
|
|
|
|
Yes : function() {
|
|
|
|
var configs = {};
|
|
|
|
$.each($("#config_list").children(), function(index, configDiv) {
|
|
|
|
var config = domToConfig(configDiv);
|
|
|
|
configs[config.key] = config.value;
|
|
|
|
});
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
2014-01-31 15:37:37 -05:00
|
|
|
url:'/druid/coordinator/v1/config',
|
2013-09-27 18:00:40 -04:00
|
|
|
data: JSON.stringify(configs),
|
|
|
|
contentType:"application/json; charset=utf-8",
|
2014-01-31 15:37:37 -05:00
|
|
|
dataType:"text",
|
2013-09-27 18:00:40 -04:00
|
|
|
error: function(xhr, status, error) {
|
|
|
|
$("#update_dialog").dialog("close");
|
|
|
|
$("#error_dialog").html(xhr.responseText);
|
|
|
|
$("#error_dialog").dialog("open");
|
|
|
|
},
|
|
|
|
success: function(data, status, xhr) {
|
|
|
|
getConfigs();
|
|
|
|
$("#update_dialog").dialog("close");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
Cancel: function() {
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
getConfigs();
|
|
|
|
|
|
|
|
$("#cancel").click(function() {
|
|
|
|
$("#cancel_dialog").dialog("open");
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#update').click(function (){
|
|
|
|
$("#update_dialog").dialog("open")
|
|
|
|
});
|
|
|
|
});
|