Skip to content

Commit

Permalink
feat: Migrate to files:node:updated
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Trovic <luka@nextcloud.com>
  • Loading branch information
luka-nextcloud committed Dec 6, 2024
1 parent 28a8b74 commit 3c9f2e8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ import { getCurrentUser } from '@nextcloud/auth'
import { loadState } from '@nextcloud/initial-state'
import { isPublicShare } from '@nextcloud/sharing/public'
import { emit, subscribe, unsubscribe } from '@nextcloud/event-bus'
import { File } from '@nextcloud/files'
import { Collaboration } from '@tiptap/extension-collaboration'
import Autofocus from '../extensions/Autofocus.js'
import { Doc } from 'yjs'
Expand Down Expand Up @@ -121,6 +122,7 @@ import Wrapper from './Editor/Wrapper.vue'
import SkeletonLoading from './SkeletonLoading.vue'
import Assistant from './Assistant.vue'
import Translate from './Modal/Translate.vue'
import { generateRemoteUrl } from '@nextcloud/router'

export default {
name: 'Editor',
Expand Down Expand Up @@ -675,7 +677,13 @@ export default {
},

onSave() {
emit('files:file:updated', { fileid: this.fileId })
const node = new File({
id: this.fileId,
source: generateRemoteUrl(`dav/files/${this.currentSession.userId}${this.relativePath}`),
mtime: new Date(),
mime: this.mime,
})
emit('files:node:updated', node)
this.$nextTick(() => {
this.emit('sync-service:save')
})
Expand Down

0 comments on commit 3c9f2e8

Please sign in to comment.