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
|
<template>
<div v-if="canEdit" class="cw-container-actions">
<studip-action-menu
:items="menuItems"
:context="container.attributes.title"
:collapseAt="1"
@editContainer="editContainer"
@changeContainer="changeContainer"
@deleteContainer="deleteContainer"
@removeLock="removeLock"
@copyToClipboard="copyToClipboard"
/>
</div>
</template>
<script>
import { mapGetters } from 'vuex';
export default {
name: 'courseware-container-actions',
props: {
canEdit: Boolean,
container: Object,
},
computed: {
...mapGetters({
userId: 'userId',
userIsTeacher: 'userIsTeacher',
}),
blocked() {
return this.container?.relationships?.['edit-blocker']?.data !== null;
},
blockerId() {
return this.blocked ? this.container?.relationships?.['edit-blocker']?.data?.id : null;
},
blockedByThisUser() {
return this.blocked && this.userId === this.blockerId;
},
blockedByAnotherUser() {
return this.blocked && this.userId !== this.blockerId;
},
menuItems() {
let menuItems = [];
if (!this.blockedByAnotherUser) {
if (this.container.attributes["container-type"] !== 'list') {
menuItems.push({ id: 1, label: this.$gettext('Abschnitt bearbeiten'), icon: 'edit', emit: 'editContainer' });
}
menuItems.push({ id: 2, label: this.$gettext('Abschnitt verändern'), icon: 'settings', emit: 'changeContainer' });
menuItems.push({ id: 3, label: this.$gettext('Abschnitt merken'), icon: 'clipboard', emit: 'copyToClipboard' });
menuItems.push({ id: 5, label: this.$gettext('Abschnitt löschen'), icon: 'trash', emit: 'deleteContainer' });
}
if (this.blocked && this.blockedByAnotherUser && this.userIsTeacher) {
menuItems.push({
id: 4,
label: this.$gettext('Sperre aufheben'),
icon: 'lock-unlocked',
emit: 'removeLock',
});
}
menuItems.sort((a, b) => {
return a.id > b.id ? 1 : b.id > a.id ? -1 : 0;
});
return menuItems;
},
},
methods: {
menuAction(action) {
this[action]();
},
editContainer() {
this.$emit('editContainer');
},
changeContainer() {
this.$emit('changeContainer');
},
deleteContainer() {
this.$emit('deleteContainer');
},
removeLock() {
this.$emit('removeLock');
},
copyToClipboard() {
this.$emit('copyToClipboard');
}
},
};
</script>
|