Skip to content

Commit

Permalink
Merge pull request #2128 from nextcloud/artonge/backport/stable28/2103
Browse files Browse the repository at this point in the history
[stable28]  Improve handling of Node API properties
  • Loading branch information
artonge authored Jan 18, 2024
2 parents 7879be2 + 76648e6 commit f5c06ac
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
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

0 comments on commit f5c06ac

Please sign in to comment.