2c8595098c
git-svn-id: http://google-refine.googlecode.com/svn/trunk@883 7d457c2a-affb-35e4-300a-418c747d4874
125 lines
5.2 KiB
JavaScript
125 lines
5.2 KiB
JavaScript
function TemplatingExporterDialog() {
|
|
this._timerID = null;
|
|
this._createDialog();
|
|
this._updatePreview();
|
|
}
|
|
|
|
TemplatingExporterDialog.prototype._createDialog = function() {
|
|
var self = this;
|
|
var frame = DialogSystem.createDialog();
|
|
frame.width("900px");
|
|
|
|
var header = $('<div></div>').addClass("dialog-header").text('Templating Export').appendTo(frame);
|
|
var body = $('<div></div>').addClass("dialog-body").appendTo(frame);
|
|
var footer = $('<div>').addClass("dialog-footer").appendTo(frame);
|
|
|
|
body.html(
|
|
'<div class="grid-layout layout-normal layout-full"><table>' +
|
|
'<tr>' +
|
|
'<td style="vertical-align: top"><div class="grid-layout layout-tighter layout-full" bind="controls"><table>' +
|
|
'<tr><td>Prefix</td></tr>' +
|
|
'<tr><td><div class="input-container"><textarea bind="prefixTextarea" class="code" wrap="off" style="height:5em;"></textarea></div></td></tr>' +
|
|
'<tr><td>Row Template</td></tr>' +
|
|
'<tr><td><div class="input-container"><textarea bind="templateTextarea" class="code" wrap="off" style="height:20em;"></textarea></div></td></tr>' +
|
|
'<tr><td>Row Separator</td></tr>' +
|
|
'<tr><td><div class="input-container"><textarea bind="separatorTextarea" class="code" wrap="off" style="height:3em;"></textarea></div></td></tr>' +
|
|
'<tr><td>Suffix</td></tr>' +
|
|
'<tr><td><div class="input-container"><textarea bind="suffixTextarea" class="code" wrap="off" style="height:5em;"></textarea></div></td></tr>' +
|
|
'</table></div></td>' +
|
|
'<td width="50%" style="vertical-align: top">' +
|
|
'<div class="input-container"><textarea bind="previewTextarea" class="code" wrap="off" style="height: 40em;"></textarea></div>' +
|
|
'</td>' +
|
|
'</tr>' +
|
|
'</table></div>'
|
|
);
|
|
|
|
this._elmts = DOM.bind(body);
|
|
this._elmts.controls.find("textarea").keyup(function() { self._scheduleUpdate(); });
|
|
|
|
this._elmts.prefixTextarea[0].value = '{\n "rows" : [\n';
|
|
this._elmts.suffixTextarea[0].value = '\n ]\n}';
|
|
this._elmts.separatorTextarea[0].value = ',\n';
|
|
this._elmts.templateTextarea[0].value = ' {' +
|
|
$.map(theProject.columnModel.columns, function(column, i) {
|
|
return '\n "' + column.name + '" : {{jsonize(cells["' + column.name + '"].value)}}';
|
|
}).join(',') + '\n }';
|
|
|
|
$('<button></button>').text("Export").click(function() { self._export(); self._dismiss(); }).appendTo(footer);
|
|
$('<button></button>').text("Close").click(function() { self._dismiss(); }).appendTo(footer);
|
|
|
|
this._level = DialogSystem.showDialog(frame);
|
|
};
|
|
|
|
TemplatingExporterDialog.prototype._scheduleUpdate = function() {
|
|
var self = this;
|
|
|
|
if (this._timerID) {
|
|
window.clearTimeout(this._timerID);
|
|
}
|
|
|
|
this._elmts.previewTextarea[0].value = "Idling...";
|
|
this._timerID = window.setTimeout(function() {
|
|
self._timerID = null;
|
|
self._elmts.previewTextarea[0].value = "Updating...";
|
|
self._updatePreview();
|
|
}, 1000);
|
|
};
|
|
|
|
TemplatingExporterDialog.prototype._dismiss = function() {
|
|
DialogSystem.dismissUntil(this._level - 1);
|
|
};
|
|
|
|
TemplatingExporterDialog.prototype._updatePreview = function() {
|
|
var self = this;
|
|
$.post(
|
|
"/command/export-rows/preview.txt",
|
|
{
|
|
"project" : theProject.id,
|
|
"format" : "template",
|
|
"engine" : JSON.stringify(ui.browsingEngine.getJSON()),
|
|
"sorting" : JSON.stringify(ui.dataTableView.getSorting()),
|
|
"prefix" : this._elmts.prefixTextarea[0].value,
|
|
"suffix" : this._elmts.suffixTextarea[0].value,
|
|
"separator" : this._elmts.separatorTextarea[0].value,
|
|
"template" : this._elmts.templateTextarea[0].value,
|
|
"limit" : "20"
|
|
},
|
|
function (data) {
|
|
self._elmts.previewTextarea[0].value = data;
|
|
},
|
|
"text"
|
|
);
|
|
};
|
|
|
|
TemplatingExporterDialog.prototype._export = function() {
|
|
var name = $.trim(theProject.metadata.name.replace(/\W/g, ' ')).replace(/\s+/g, '-');
|
|
var form = document.createElement("form");
|
|
$(form)
|
|
.css("display", "none")
|
|
.attr("method", "post")
|
|
.attr("action", "/command/export-rows/" + name + ".txt")
|
|
.attr("target", "gridworks-export");
|
|
|
|
var appendField = function(name, value) {
|
|
$('<textarea />')
|
|
.attr("name", name)
|
|
.attr("value", value)
|
|
.appendTo(form);
|
|
}
|
|
|
|
appendField("engine", JSON.stringify(ui.browsingEngine.getJSON()));
|
|
appendField("project", theProject.id);
|
|
appendField("format", "template");
|
|
appendField("sorting", JSON.stringify(ui.dataTableView.getSorting()));
|
|
appendField("prefix", this._elmts.prefixTextarea[0].value);
|
|
appendField("suffix", this._elmts.suffixTextarea[0].value);
|
|
appendField("separator", this._elmts.separatorTextarea[0].value);
|
|
appendField("template", this._elmts.templateTextarea[0].value);
|
|
|
|
document.body.appendChild(form);
|
|
|
|
window.open("about:blank", "gridworks-export");
|
|
form.submit();
|
|
|
|
document.body.removeChild(form);
|
|
}; |