Skip to content
Snippets Groups Projects
Commit 9c9efe1f authored by Marcus Eibrink-Lunzenauer's avatar Marcus Eibrink-Lunzenauer Committed by Jan-Hendrik Willms
Browse files

Use `modelValue` in StudipFileChooser when using vue3.

Closes #5053

Merge request studip/studip!3781
parent 659202bf
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ export default {
components: {
FileChooserDialog,
},
emits: ['select'],
emits: ['update:modelValue'],
props: {
selectable: {
type: String,
......@@ -23,7 +23,7 @@ export default {
return ['file', 'folder'].includes(value);
},
},
selectedId: {
modelValue: {
type: String,
required: false,
},
......@@ -48,10 +48,6 @@ export default {
excludedCourseFolderTypes: { type: Array, default: () => [] },
excludedUserFolderTypes: { type: Array, default: () => [] },
},
model: {
prop: 'selectedId',
event: 'select',
},
data() {
return {
showDialog: false,
......@@ -73,22 +69,22 @@ export default {
},
selectedName() {
if (this.selectable === 'folder') {
if (this.selectedId === '') {
if (this.modelValue === '') {
return this.$gettext('Kein Ordner ausgewählt');
}
return this.$gettext(
'Ordner "%{folderName}" ausgewählt'
,
{ folderName: this.folderById({ id: this.selectedId })?.attributes?.name ?? '-' }
{ folderName: this.folderById({ id: this.modelValue })?.attributes?.name ?? '-' }
);
}
if (this.selectedId === '') {
if (this.modelValue === '') {
return this.$gettext('Keine Datei ausgewählt');
}
return this.$gettext(
'Datei "%{fileName}" ausgewählt',
{ fileName: this.fileById({ id: this.selectedId })?.attributes?.name ?? '-' }
{ fileName: this.fileById({ id: this.modelValue })?.attributes?.name ?? '-' }
);
},
},
......@@ -105,16 +101,16 @@ export default {
},
select(id) {
this.closeDialog();
this.$emit('select', id);
this.$emit('update:modelValue', id);
},
loadSelection() {
if (this.selectable === 'folder') {
if (this.selectedId !== '') {
this.loadFolder({ id: this.selectedId });
if (this.modelValue !== '') {
this.loadFolder({ id: this.modelValue });
}
} else {
if (this.selectedId !== '') {
this.loadFile({ id: this.selectedId });
if (this.modelValue !== '') {
this.loadFile({ id: this.modelValue });
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment