Skip to content
Snippets Groups Projects
Commit dd67b53b authored by Neuber, Eugen Ramon's avatar Neuber, Eugen Ramon :speech_balloon: Committed by Reiter, Christoph
Browse files

Get Entity by name instead of identifier

because there coud be more than one API serving an Entity
parent ab6e8eb8
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,11 @@ class DataTableView extends LitElement { ...@@ -64,7 +64,11 @@ class DataTableView extends LitElement {
JSONLD.initialize(this.entryPointUrl, function (jsonld) { JSONLD.initialize(this.entryPointUrl, function (jsonld) {
that.jsonld = jsonld; that.jsonld = jsonld;
try { try {
that.apiUrl = that.jsonld.getApiUrlForIdentifier("http://schema.org/" + that.value); that.apiUrl = that.jsonld.getApiUrlForEntityName(that.value);
if (that.jsonld.entities[that.value] === undefined) {
console.dir(that.jsonld);
throw "Error: Could not get information about " + that.value;
}
that.table_columns = that.jsonld.entities[that.value]['hydra:supportedProperty'].map(obj => obj['hydra:title']); that.table_columns = that.jsonld.entities[that.value]['hydra:supportedProperty'].map(obj => obj['hydra:title']);
// display empty table // display empty table
...@@ -252,7 +256,7 @@ class DataTableView extends LitElement { ...@@ -252,7 +256,7 @@ class DataTableView extends LitElement {
const that = this; const that = this;
JSONLD.initialize(this.entryPointUrl, function (jsonld) { JSONLD.initialize(this.entryPointUrl, function (jsonld) {
that.jsonld = jsonld; that.jsonld = jsonld;
that.apiUrl = that.jsonld.getApiUrlForIdentifier("http://schema.org/" + that.value); that.apiUrl = that.jsonld.getApiUrlForEntityName(that.value);
}); });
this.loadWebPageElement().catch(e => { console.log(e)}); this.loadWebPageElement().catch(e => { console.log(e)});
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment