Prefer view.url pattern for data extension preview links

See https://github.com/OpenRefine/OpenRefine/issues/2177
This commit is contained in:
Fabian Steeg 2019-10-04 14:55:34 +02:00
parent 1f0c409cb2
commit 84af07506d

View File

@ -283,9 +283,11 @@ ExtendReconciledDataPreviewDialog.prototype._renderPreview = function(data) {
var cell = row[c];
if (cell !== null) {
if ($.isPlainObject(cell)) {
$('<a>').attr("href",
this._serviceMetadata.identifierSpace + cell.id
).attr("target", "_blank").text(cell.name).appendTo(td);
var service = self._serviceMetadata;
var href = (service.view && service.view.url) ?
encodeURI(service.view.url.replace("{{id}}", cell.id)) :
service.identifierSpace + cell.id;
$('<a>').attr("href", href).attr("target", "_blank").text(cell.name).appendTo(td);
} else {
$('<span>').text(cell).appendTo(td);
}