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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
<template>
<studip-wizard-dialog
:title="$gettext('Seiten verknüpfen')"
:confirmText="$gettext('Verknüpfen')"
:closeText="$gettext('Abbrechen')"
:lastRequiredSlotId="2"
:requirements="requirements"
:slots="wizardSlots"
@close="showElementLinkDialog(false)"
@confirm="linkElement"
>
<template v-slot:unit>
<form v-if="!loadingUnits" class="default" @submit.prevent="">
<fieldset v-if="hasUnits" class="radiobutton-set">
<template v-for="unit in units" :key="unit.id">
<input
:id="'cw-element-link-unit-' + unit.id"
type="radio"
:checked="unit.id === selectedUnitId"
:value="unit.id"
:aria-description="unit.element.attributes.title"
/>
<label @click="selectedUnit = unit" :for="'cw-element-link-unit-' + unit.id">
<div class="icon"><studip-icon shape="courseware" :size="32"/></div>
<div class="text">{{ unit.element.attributes.title }}</div>
<studip-icon shape="radiobutton-unchecked" :size="24" class="unchecked" />
<studip-icon shape="check-circle" :size="24" class="check" />
</label>
</template>
</fieldset>
<courseware-companion-box
v-else
mood="sad"
:msgCompanion="$gettext('Es konnte leider kein Lernmaterial gefunden werden. Bitte erstellen Sie unter Arbeitsplatz/Courseware ein Lernmaterial.')"
/>
</form>
<studip-progress-indicator
v-else
:description="$gettext('Lade Lernmaterialien…')"
/>
</template>
<template v-slot:element>
<form v-if="selectedUnit" class="default" @submit.prevent="">
<courseware-structural-element-selector
v-model="selectedElement"
:rootId="selectedUnitRootId"
/>
</form>
<courseware-companion-box
v-else
mood="pointing"
:msgCompanion="$gettext('Bitte wählen Sie zuerst das Lernmaterial aus.')"
/>
</template>
</studip-wizard-dialog>
</template>
<script>
import CoursewareCompanionBox from '../layouts/CoursewareCompanionBox.vue';
import CoursewareStructuralElementSelector from './CoursewareStructuralElementSelector.vue';
import StudipWizardDialog from '../../StudipWizardDialog.vue';
import StudipProgressIndicator from '../../StudipProgressIndicator.vue';
import { mapActions, mapGetters } from 'vuex'
export default {
name: 'courseware-structural-element-dialog-link',
components: {
CoursewareCompanionBox,
CoursewareStructuralElementSelector,
StudipWizardDialog,
StudipProgressIndicator
},
data() {
return {
wizardSlots: [
{id: 1, valid: false, name: 'unit', title: this.$gettext('Lernmaterial'), icon: 'courseware',
description: this.$gettext('Wählen Sie das Lernmaterial aus, in dem sich der zu verknüpfende Lerninhalt befindet. Die Lerninhalte, die verknüpft werden können, müssen unter Arbeitsplatz/Courseware vorher erstellt werden.')},
{id: 2, valid: false, name: 'element', title: this.$gettext('Seite'), icon: 'content2',
description: this.$gettext('Wählen Sie die zu verknüpfende Seite aus. Um Unterseiten anzuzeigen, klicken Sie auf den Seitennamen. Mit einem weiteren Klick werden die Unterseiten wieder zugeklappt.')}, ],
loadingUnits: false,
selectedUnit: null,
selectedElement: null,
requirements: [],
text: {
}
}
},
computed: {
...mapGetters({
userId: 'userId',
coursewareUnits: 'courseware-units/all',
structuralElementById: 'courseware-structural-elements/byId',
context: 'context',
childrenById: 'courseware-structure/children',
currentElement: 'currentElement'
}),
units() {
let units = this.coursewareUnits.filter(unit => unit.relationships.range.data.id === this.userId);
units.forEach(unit => {
unit.element = this.getUnitElement(unit);
});
return units;
},
hasUnits() {
return this.units.length !== 0;
},
selectedUnitId() {
return this.selectedUnit?.id;
},
selectedUnitRootId() {
return this.selectedUnit?.relationships?.['structural-element']?.data?.id;
},
selectedElementTitle() {
return this.selectedElement?.attributes?.title;
},
selectedElementParent() {
let parentData = this.selectedElement?.relationships?.parent?.data;
if (parentData){
return this.structuralElementById({id: parentData.id});
}
return null;
},
selectedElementParentTitle() {
if (this.selectedElementParent) {
return this.selectedElementParent.attributes.title;
}
return '';
},
children() {
if (!this.selectedElement) {
return [];
}
return this.childrenById(this.selectedElement.id)
.map((id) => this.structuralElementById({ id }))
.filter(Boolean);
},
},
mounted() {
this.initWizardData();
this.updateUserUnits();
},
methods: {
...mapActions({
showElementLinkDialog: 'showElementLinkDialog',
loadUserUnits: 'loadUserUnits',
loadStructuralElement: 'courseware-structural-elements/loadById',
linkStructuralElement: 'linkStructuralElement',
companionError: 'companionError',
companionSuccess: 'companionSuccess',
}),
initWizardData() {
this.selectedRange = '';
this.selectedUnit = null;
this.validateSelection();
},
async updateUserUnits() {
this.loadingUnits = true;
await this.loadUserUnits(this.userId);
this.loadingUnits = false;
},
getUnitElement(unit) {
return this.structuralElementById({id: unit.relationships['structural-element'].data.id});
},
linkElement() {
this.linkStructuralElement({
parentId: this.currentElement,
elementId: this.selectedElement.id,
})
.then( () => {
this.companionSuccess({
info: this.$gettext(
'Die Seite %{ pageTitle } wurde erfolgreich verknüpft.',
{ pageTitle: this.selectedElementTitle }
)
});
})
.catch( () => {
this.companionError({
info: this.$gettext(
'Die Seite %{ pageTitle } konnte nicht verknüpft werden.',
{ pageTitle: this.selectedElementTitle }
)
});
})
.finally(() => {
this.showElementLinkDialog(false);
});
},
selectElement(id) {
this.selectedElement = this.structuralElementById({id: id});
this.loadStructuralElement({id: id, options: {include: 'children'}});
},
validateSelection() {
this.requirements = [];
if (this.selectedUnit === null) {
this.requirements.push({slot: this.wizardSlots[0], text: this.$gettext('Lernmaterial') });
}
if (this.selectedElement === null) {
this.requirements.push({slot: this.wizardSlots[1], text: this.$gettext('Seite') });
}
}
},
watch: {
selectedElement(newElement) {
this.validateSelection();
if (newElement !== null) {
this.wizardSlots[1].valid = true;
} else {
this.wizardSlots[1].valid = false;
}
},
async selectedUnit(newUnit) {
this.validateSelection();
if (newUnit !== null) {
this.wizardSlots[0].valid = true;
await this.loadStructuralElement({id: this.selectedUnitRootId, options: {include: 'children'}});
this.selectedElement = null;
} else {
this.wizardSlots[0].valid = false;
}
},
}
}
</script>
|