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
|
<!--
- SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<NcSelect v-model="selected"
:input-id="setting.id"
class="group-select"
:placeholder="t('settings', 'None')"
label="displayName"
:options="availableGroups"
:multiple="true"
:close-on-select="false" />
</template>
<script>
import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js'
import { generateUrl } from '@nextcloud/router'
import axios from '@nextcloud/axios'
import { showError } from '@nextcloud/dialogs'
import logger from '../../logger.ts'
export default {
name: 'GroupSelect',
components: {
NcSelect,
},
props: {
availableGroups: {
type: Array,
default: () => [],
},
setting: {
type: Object,
required: true,
},
authorizedGroups: {
type: Array,
required: true,
},
},
data() {
return {
selected: this.authorizedGroups
.filter((group) => group.class === this.setting.class)
.map((groupToMap) => this.availableGroups.find((group) => group.gid === groupToMap.group_id))
.filter((group) => group !== undefined),
}
},
watch: {
selected() {
this.saveGroups()
},
},
methods: {
async saveGroups() {
const data = {
newGroups: this.selected,
class: this.setting.class,
}
try {
await axios.post(generateUrl('/apps/settings/') + '/settings/authorizedgroups/saveSettings', data)
} catch (e) {
showError(t('settings', 'Unable to modify setting'))
logger.error('Unable to modify setting', e)
}
},
},
}
</script>
<style lang="scss">
.group-select {
width: 100%;
}
</style>
|