Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Toolkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
digital blueprint
Web Component Framework
Toolkit
Commits
dd67b53b
Commit
dd67b53b
authored
5 years ago
by
Neuber, Eugen Ramon
Committed by
Reiter, Christoph
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Get Entity by name instead of identifier
because there coud be more than one API serving an Entity
parent
ab6e8eb8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/data-table-view/src/data-table-view.js
+6
-2
6 additions, 2 deletions
packages/data-table-view/src/data-table-view.js
with
6 additions
and
2 deletions
packages/data-table-view/src/data-table-view.js
+
6
−
2
View file @
dd67b53b
...
@@ -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
.
getApiUrlFor
Identifier
(
"
http://schema.org/
"
+
that
.
value
);
that
.
apiUrl
=
that
.
jsonld
.
getApiUrlFor
EntityName
(
that
.
value
);
});
});
this
.
loadWebPageElement
().
catch
(
e
=>
{
console
.
log
(
e
)});
this
.
loadWebPageElement
().
catch
(
e
=>
{
console
.
log
(
e
)});
break
;
break
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment