-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- introduce 'show_all_fields' flag to config, which can be set to true or false (default) - adds 'active' state highlighting to the selected item in a an instancesSelectEditor dropdown - switch instanceItems back to a computed property, instead of calling a function to get items on certain lifecycle hooks and other actions - fix issue where RecordViewer did not show updated information upon form save; this was done by adding a reactivity trigger flag that is updated whenever a graphData watcher sees a difference, and it triggers the computed property recomputation and also updates the key of a RecordViewer component - temporary fix of duplicate blank node creation when making GET requests to service. shacl-vue is in fact fetching the same record twice, the first time via the records endpoint (multiple) when a specific class is selected, and the second time via the record endpoint (singular) when the user clicks the edit button on a specific record. When the GET request interaction with the service was first introduced into shacl-vue, I implemented a layman's request caching approach where a set is maintained of all previous request URLs, and a second request won't be made to a URL already in a set. This was actually to prevent unnecessary requests, but the prevention of the current issue actually seems like an even more valid reason. The temporary fix is to disable the singular record GET request, because given the current workflow of the application it can safely be assumed that the 'multiple records by class' request would already have been made before a singular record request is attempted.
- Loading branch information
Showing
11 changed files
with
65 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.