-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathSettingsSelectGroup.vue
123 lines (119 loc) · 2.66 KB
/
SettingsSelectGroup.vue
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
<!--
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<NcSelect v-model="inputValObjects"
:options="groupsArray"
:input-id="uuid"
:placeholder="label"
label="displayname"
:input-label="label"
:multiple="true"
:close-on-select="false"
:disabled="disabled"
@input="update"
@search="asyncFindGroup">
<span slot="noResult">{{ t('settings', 'No results') }}</span>
</NcSelect>
</template>
<script>
import axios from '@nextcloud/axios'
import { NcSelect } from '@nextcloud/vue'
import { generateOcsUrl } from '@nextcloud/router'
let uuid = 0
export default {
name: 'SettingsSelectGroup',
components: {
NcSelect,
},
props: {
label: {
type: String,
required: true,
},
hint: {
type: String,
default: '',
},
value: {
type: Array,
default: () => [],
},
disabled: {
type: Boolean,
default: false,
},
},
data() {
return {
uuid: '',
inputValObjects: [],
groups: {},
}
},
computed: {
id() {
return 'settings-select-group-' + this.uuid
},
groupsArray() {
return Object.values(this.groups).sort((a, b) => {
return this.inputValObjects.indexOf(b) - this.inputValObjects.indexOf(a)
})
},
},
watch: {
value(newVal) {
this.inputValObjects = this.getValueObject()
},
},
created() {
this.uuid = uuid.toString()
uuid += 1
// Preseed with placeholder entries for groups
this.getValueObject().forEach((element) => {
this.$set(this.groups, element.id, element)
})
this.inputValObjects = this.getValueObject()
// Fetch actual group metadata
this.asyncFindGroup('').then((result) => {
this.inputValObjects = this.getValueObject()
})
},
methods: {
getValueObject() {
return this.value.filter((group) => group !== '' && typeof group !== 'undefined').map(
(id) => {
if (typeof this.groups[id] === 'undefined') {
return {
id,
displayname: id,
}
}
return this.groups[id]
},
)
},
update() {
this.$emit('input', this.inputValObjects.map((element) => element.id))
},
asyncFindGroup(query) {
query = typeof query === 'string' ? encodeURI(query) : ''
return axios.get(generateOcsUrl(`cloud/groups/details?search=${query}&limit=100`, 2))
.then((response) => {
if (Object.keys(response.data.ocs.data.groups).length > 0) {
response.data.ocs.data.groups.forEach((element) => {
if (typeof this.groups[element.id] === 'undefined') {
this.$set(this.groups, element.id, element)
}
})
return true
}
return false
}).catch((error) => {
this.$emit('error', error)
})
},
},
}
</script>