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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<template>
<div class="cw-block cw-block-text">
<courseware-default-block
:block="block"
:canEdit="canEdit"
:isTeacher="isTeacher"
:preview="false"
ref="defaultBlock"
@storeEdit="storeText"
@closeEdit="closeEdit"
>
<template #content>
<section class="cw-block-content formatted-content" v-html="currentText" ref="content"></section>
</template>
<template v-if="canEdit" #edit>
<studip-wysiwyg v-model="currentText"></studip-wysiwyg>
</template>
<template #info><translate>Informationen zum Text-Block</translate></template>
</courseware-default-block>
</div>
</template>
<script>
import CoursewareDefaultBlock from './CoursewareDefaultBlock.vue';
import StudipWysiwyg from '../StudipWysiwyg.vue';
import { mapActions } from 'vuex';
export default {
name: 'courseware-text-block',
components: {
CoursewareDefaultBlock,
StudipWysiwyg,
},
props: {
block: Object,
canEdit: Boolean,
isTeacher: Boolean,
},
data() {
return {
currentText: '',
};
},
computed: {
text() {
return this.block?.attributes?.payload?.text;
},
},
mounted() {
this.currentText = this.text;
this.loadMathjax();
},
methods: {
...mapActions({
updateBlock: 'updateBlockInContainer',
}),
closeEdit() {
this.currentText = this.text;
this.loadMathjax();
},
async storeText() {
let attributes = this.block.attributes;
attributes.payload.text = this.currentText;
await this.updateBlock({
attributes: attributes,
blockId: this.block.id,
containerId: this.block.relationships.container.data.id,
});
this.$refs.defaultBlock.displayFeature(false);
this.loadMathjax();
},
loadMathjax() {
let mathjaxP;
let view = this;
if (window.MathJax && window.MathJax.Hub) {
mathjaxP = Promise.resolve(window.MathJax);
} else if (window.STUDIP && window.STUDIP.loadChunk) {
mathjaxP = window.STUDIP.loadChunk('mathjax');
}
mathjaxP && mathjaxP
.then(({ Hub }) => {
Hub.Queue(['Typeset', Hub, view.$refs.content]);
})
.catch(() => {
console.log('Warning: Could not load MathJax.');
});
}
},
};
</script>
|