function DataTableCellUI(dataTableView, cell, rowIndex, cellIndex, td) {
this._dataTableView = dataTableView;
this._cell = cell;
this._rowIndex = rowIndex;
this._cellIndex = cellIndex;
this._td = td;
this._render();
};
DataTableCellUI.prototype._render = function() {
var self = this;
var cell = this._cell;
$(this._td).empty();
var divContent = $('
').appendTo(divContent));
}
}
};
DataTableCellUI.prototype._doRematch = function() {
this._doJudgment("discard");
};
DataTableCellUI.prototype._doMarkAsNew = function() {
this._doJudgment("new");
};
DataTableCellUI.prototype._doSetAsMatch = function(candidateID) {
this._doJudgment("match", { candidate : candidateID });
};
DataTableCellUI.prototype._doJudgment = function(judgment, params) {
params = params || {};
params.row = this._rowIndex;
params.cell = this._cellIndex;
params.judgment = judgment;
this.doPostThenUpdate("recon-judge-one-cell", params);
};
DataTableCellUI.prototype._searchForMatch = function() {
var self = this;
var frame = DialogSystem.createDialog();
frame.width("200px");
var header = $('
').addClass("dialog-header").text("Search for Match").appendTo(frame);
var body = $('
').addClass("dialog-body").appendTo(frame);
var footer = $('
').addClass("dialog-footer").appendTo(frame);
$('
').text("Search Freebase for topic to match " + this._cell.v).appendTo(body);
var input = $('
').attr("value", this._cell.v).appendTo($('
').appendTo(body));
input.suggest({}).bind("fb-select", function(e, data) {
var params = {
row: self._rowIndex,
cell: self._cellIndex,
topicID: data.id,
topicGUID: data.guid,
topicName: data.name,
types: $.map(data.type, function(elmt) { return elmt.id; }).join(",")
};
self.doPostThenUpdate("recon-judge-one-cell", params);
DialogSystem.dismissUntil(level - 1);
});
$('
').text("Cancel").click(function() {
DialogSystem.dismissUntil(level - 1);
}).appendTo(footer);
var level = DialogSystem.showDialog(frame);
input[0].focus();
};
DataTableCellUI.prototype.createUpdateFunction = function(onBefore) {
var self = this;
return function(data) {
if (data.code == "ok") {
var onDone = function() {
self._cell = data.cell;
self._render();
ui.historyWidget.update();
};
} else {
var onDone = function() {
ui.processWidget.update();
}
}
if (onBefore) {
onBefore(onDone);
} else {
onDone();
}
};
};
DataTableCellUI.prototype.doPostThenUpdate = function(command, params) {
params.project = theProject.id;
$.post(
"/command/" + command + "?" + $.param(params),
null,
this.createUpdateFunction(),
"json"
);
};
DataTableCellUI.prototype._previewCandidateTopic = function(id, elmt) {
var url = "http://www.freebase.com/widget/topic" + id + '?mode=content&blocks=[{"block"%3A"image"}%2C{"block"%3A"full_info"}%2C{"block"%3A"article_props"}]';
var fakeMenu = MenuSystem.createMenu();
fakeMenu
.width(700)
.height(300)
.css("background", "none")
.css("border", "none");
var iframe = $('
')
.attr("width", "100%")
.attr("height", "100%")
.css("background", "none")
.css("border", "none")
.attr("src", url)
.appendTo(fakeMenu);
MenuSystem.showMenu(fakeMenu, function(){});
MenuSystem.positionMenuLeftRight(fakeMenu, $(elmt));
};