High record loading times -> bad UX #334
Labels
No labels
bug
config
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
orinoco/shacl-vue#334
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
We need to figure out a way to improve the loading times of records when they render/mount, i.e. work on the
NodeShapeViewerOne way is to minimise the requests for any given record viewer. This record, for example, takes ages to load: https://pool.v0.trr379.de/ui/?sh%3ANodeShape=trr379ri%3ATRR379Project&pid=trr379root%3A.
The main culprit is the fact that many related records of related records (of related records) need to be fetched in order to have the pretty display rendering of e.g.
If we don't fetch related records, something like this would show up with a weird PID inside the brackets.
One way to minimise the requests would be to not show some of this on the record, and only display it if the user wants to see extra info. Like the
More detailsfunctionality. So the question is, what should be shown on a record (of any type) by default? This could become part of configuration.Then, another way to approach this could be to space out and time requests based on user interaction. E.g. maybe only start the 2nd level recursive fetches of related quads after the direct quads of the record have been retrieved and is already displayed, so that the user can see the main parts of the record while the rest is being fetched in the background. Currently the process waits for everything.