Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Improve handling of Node API properties
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Jan 18, 2024
commit 76648e6c481c846ab2cd776b6c6bb748274ff961
4 changes: 2 additions & 2 deletions js/viewer-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer-main.js.map

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions src/views/Viewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1110,12 +1110,19 @@ export default {
},

// Update etag of updated file to break cache.
/**
*
* @param {Node} node
*/
async handleFileUpdated(node) {
const index = this.fileList.findIndex(({ fileid: currentFileId }) => currentFileId === node.fileid)

this.fileList.splice(index, 1, { ...node, etag: node.etag })
// Ensure compatibility with the legacy data model that the Viewer is using. (see "model.ts").
// This can be removed once Viewer is migrated to the new Node API.
node.etag = node.attributes.etag
this.fileList.splice(index, 1, node)
if (node.fileid === this.currentFile.fileid) {
this.currentFile.etag = node.etag
this.currentFile.etag = node.attributes.etag
}
},

Expand Down