1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<template>
<studip-dialog
:title="$gettext('Feedback zur Aufgabe ändern')"
:confirmText="$gettext('Speichern')"
confirmClass="accept"
:closeText="$gettext('Schließen')"
closeClass="cancel"
height="420"
@close="$emit('close')"
@confirm="update"
>
<template #dialogContent>
<CompanionBox
v-if="localContent === ''"
mood="pointing"
:msgCompanion="
$gettext('Sie haben kein Feedback geschrieben, beim Speichern wird dieses Feedback gelöscht!')
"
/>
<form class="default" @submit.prevent="">
<label>
{{ $gettext('Feedback') }}
<textarea v-model="localContent" />
</label>
</form>
</template>
</studip-dialog>
</template>
<script>
import CompanionBox from '../layouts/CoursewareCompanionBox.vue';
export default {
props: ['content'],
emits: ['close', 'update'],
components: {
CompanionBox,
},
data: () => ({
localContent: '',
}),
methods: {
resetLocalVars() {
this.localContent = this.content;
},
update() {
this.$emit('update', { content: this.localContent });
},
},
mounted() {
this.resetLocalVars();
},
watch: {
content(newValue) {
if (newValue !== this.localContent) {
this.resetLocalVars();
}
},
},
};
</script>
|