03d997be8e
http://code.google.com/p/google-refine/issues/detail?id=576 git-svn-id: http://google-refine.googlecode.com/svn/trunk@2584 7d457c2a-affb-35e4-300a-418c747d4874
150 lines
4.2 KiB
JavaScript
150 lines
4.2 KiB
JavaScript
/*
|
|
|
|
Copyright 2010, Google Inc.
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
in the documentation and/or other materials provided with the
|
|
distribution.
|
|
* Neither the name of Google Inc. nor the names of its
|
|
contributors may be used to endorse or promote products derived from
|
|
this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
var preferenceUIs = [];
|
|
|
|
function PreferenceUI(tr, key, value) {
|
|
var self = this;
|
|
|
|
var td0 = tr.insertCell(0);
|
|
$(td0).text(key);
|
|
|
|
var td1 = tr.insertCell(1);
|
|
$(td1).text((value !== null) ? value : "");
|
|
|
|
var td2 = tr.insertCell(2);
|
|
|
|
$('<button class="button">').text("Edit").appendTo(td2).click(function() {
|
|
var newValue = window.prompt("Change value of preference key " + key, value);
|
|
if (newValue !== null) {
|
|
$(td1).text(newValue);
|
|
$.post(
|
|
"command/core/set-preference",
|
|
{
|
|
name : key,
|
|
value : JSON.stringify(newValue)
|
|
},
|
|
function(o) {
|
|
if (o.code == "error") {
|
|
alert(o.message);
|
|
}
|
|
},
|
|
"json"
|
|
);
|
|
}
|
|
});
|
|
|
|
$('<button class="button">').text("Delete").appendTo(td2).click(function() {
|
|
if (window.confirm("Delete preference key " + key + "?")) {
|
|
$.post(
|
|
"command/core/set-preference",
|
|
{
|
|
name : key
|
|
},
|
|
function(o) {
|
|
if (o.code == "ok") {
|
|
$(tr).remove();
|
|
|
|
for (var i = 0; i < preferenceUIs.length; i++) {
|
|
if (preferenceUIs[i] === self) {
|
|
preferenceUIs.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
} else if (o.code == "error") {
|
|
alert(o.message);
|
|
}
|
|
},
|
|
"json"
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
function populatePreferences(prefs) {
|
|
var body = $("#body-info").empty();
|
|
|
|
$('<h1>').text("Preferences").appendTo(body);
|
|
|
|
var table = $('<table>')
|
|
.addClass("list-table")
|
|
.addClass("preferences")
|
|
.html('<tr><th>Key</th><th>Value</th><th></th></tr>')
|
|
.appendTo(body)[0];
|
|
|
|
for (var k in prefs) {
|
|
var tr = table.insertRow(table.rows.length);
|
|
preferenceUIs.push(new PreferenceUI(tr, k, prefs[k]));
|
|
}
|
|
|
|
var trLast = table.insertRow(table.rows.length);
|
|
var tdLast0 = trLast.insertCell(0);
|
|
trLast.insertCell(1);
|
|
trLast.insertCell(2);
|
|
$('<button class="button">').text("Add Preference").appendTo(tdLast0).click(function() {
|
|
var key = window.prompt("Preference key:");
|
|
if (key) {
|
|
var value = window.prompt("Preference key value:");
|
|
if (value !== null) {
|
|
var tr = table.insertRow(table.rows.length - 1);
|
|
preferenceUIs.push(new PreferenceUI(tr, key, value));
|
|
|
|
$.post(
|
|
"command/core/set-preference",
|
|
{
|
|
name : key,
|
|
value : JSON.stringify(value)
|
|
},
|
|
function(o) {
|
|
if (o.code == "error") {
|
|
alert(o.message);
|
|
}
|
|
},
|
|
"json"
|
|
);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function onLoad() {
|
|
$.post(
|
|
"command/core/get-all-preferences",
|
|
null,
|
|
populatePreferences,
|
|
"json"
|
|
);
|
|
}
|
|
|
|
$(onLoad);
|