-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathMemberList.vue
More file actions
291 lines (253 loc) Β· 7.25 KB
/
MemberList.vue
File metadata and controls
291 lines (253 loc) Β· 7.25 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!--
- SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<section class="member-list">
<NcEmptyContent v-if="loading" class="empty-content" :name="t('contacts', 'Loading members listΒ β¦')">
<template #icon>
<IconLoading :size="20" />
</template>
</NcEmptyContent>
<NcEmptyContent
v-else-if="!circle.isMember"
class="empty-content"
:name="t('contacts', 'The list of members is only visible to members of this team')">
<template #icon>
<IconContact :size="20" />
</template>
</NcEmptyContent>
<NcEmptyContent
v-else-if="!hasMembers"
class="empty-content"
:name="t('contacts', 'You currently have no access to the member list')">
<template #icon>
<IconContact :size="20" />
</template>
</NcEmptyContent>
<div v-else class="member-grid">
<MemberGridItem
v-for="member in flatList"
:key="`member-grid-item-${member.id}`"
:member="member"
:is-team="!member.isUser" />
</div>
<!-- member picker -->
<EntityPicker
v-if="showPicker"
ref="entityPicker"
v-model:selection="pickerSelection"
:confirm-label="t('contacts', 'Add to {team}', { team: decodedTeamName })"
:title-label="t('contacts', 'Invite members to {team}', { team: decodedTeamName })"
:data-types="pickerTypes"
:data-set="filteredPickerData"
:internal-search="false"
:loading="pickerLoading"
@close="resetPicker"
@search="onSearch"
@submit="onPickerPick" />
</section>
</template>
<script lang="ts">
import { showError, showWarning } from '@nextcloud/dialogs'
import { subscribe } from '@nextcloud/event-bus'
import { t } from '@nextcloud/l10n'
import { NcEmptyContent } from '@nextcloud/vue'
import { defineComponent } from 'vue'
import IconContact from 'vue-material-design-icons/AccountMultipleOutline.vue'
import EntityPicker from '../EntityPicker/EntityPicker.vue'
import MemberGridItem from './MemberGridItem.vue'
import IsMobileMixin from '../../mixins/IsMobileMixin.ts'
import RouterMixin from '../../mixins/RouterMixin.js'
import { CIRCLES_MEMBER_GROUPING, SHARES_TYPES_MEMBER_MAP } from '../../models/constants.ts'
import { getRecommendations, getSuggestions } from '../../services/collaborationAutocompletion.js'
export default defineComponent({
name: 'MemberList',
components: {
EntityPicker,
IconContact,
MemberGridItem,
NcEmptyContent,
},
mixins: [IsMobileMixin, RouterMixin],
props: {
list: {
type: Array,
required: true,
},
loading: {
type: Boolean,
default: false,
},
},
data() {
return {
pickerLoading: false,
showPicker: false,
showPickerIntro: true,
recommendations: [],
pickerCircle: null,
pickerData: [],
pickerSelection: {},
pickerTypes: CIRCLES_MEMBER_GROUPING,
}
},
computed: {
/**
* Return the current circle
*
* @return {object}
*/
circle() {
return this.$store.getters.getCircle(this.selectedCircle)
},
// Decode HTML entities in the circle display name so apostrophes (') and other
// HTML-encoded chars (e.g. ') are shown correctly in the picker labels.
decodedTeamName(): string {
const raw = this.circle && this.circle.displayName ? this.circle.displayName : ''
// Use a DOM textarea element to decode HTML entities safely.
// This works for common entities such as &, <, >, ', etc.
const ta = document.createElement('textarea')
ta.innerHTML = raw
return ta.value
},
filteredPickerData() {
return this.pickerData.filter((entity) => {
const type = SHARES_TYPES_MEMBER_MAP[entity.shareType]
const list = this.list.filter(({ userType }) => userType === type)
if (list) {
return list.find((member) => member.userId === entity.shareWith) === undefined
}
// If the type doesn't exists, there is no member of this type
return true
})
},
flatList() {
const teams = this.list.filter((member) => !member.isUser)
const users = this.list.filter((member) => member.isUser)
return [...teams, ...users]
},
hasMembers() {
return this.flatList.length > 0
},
},
mounted() {
subscribe('contacts:circles:append', this.onShowPicker)
subscribe('guests:user:created', this.onGuestCreated)
},
methods: {
/**
* Show picker and fetch for recommendations
* Cache the circleId in case the url change or something
* and make sure we add them to the desired circle.
*
* @param {string} circleId the circle id to add members to
*/
async onShowPicker(circleId) {
this.showPicker = true
this.pickerLoading = true
this.pickerCircle = circleId
try {
const results = await getRecommendations()
// cache recommendations
this.recommendations = results
this.pickerData = results
} catch (error) {
console.error('Unable to get the recommendations list', error)
// Do not show the error, let the user search
// showError(t('contacts', 'Unable to get the recommendations list'))
} finally {
this.pickerLoading = false
}
},
/**
* On EntityPicker search.
* Returns recommendations if empty
*
* @param {string} term the searched term
*/
async onSearch(term) {
if (term.trim() === '') {
this.pickerData = this.recommendations
return
}
this.pickerLoading = true
try {
const results = await getSuggestions(term)
this.pickerData = results
} catch (error) {
console.error('Unable to get the results', error)
showError(t('contacts', 'Unable to get the results'))
} finally {
this.pickerLoading = false
}
},
/**
* On picker submit
*
* @param {Array} selection the selection to add to the circle
*/
async onPickerPick(selection) {
this.logger.info('Adding selection to circle', { selection, pickerCircle: this.pickerCircle })
this.pickerLoading = true
selection = selection.map((entry) => ({
id: entry.shareWith,
type: SHARES_TYPES_MEMBER_MAP[entry.shareType],
}))
try {
const members = await this.$store.dispatch('addMembersToCircle', { circleId: this.pickerCircle, selection })
if (members.length < selection.length) {
showWarning(t('contacts', 'Some members could not be added'))
// TODO filter successful members and edit selection
this.pickerSelection = {}
return
}
this.resetPicker()
} catch (error) {
showError(t('contacts', 'There was an issue adding members to the team'))
console.error('There was an issue adding members to the circle', this.pickerCircle, error)
} finally {
this.pickerLoading = false
}
},
/**
* Reset picker related variables
*/
resetPicker() {
this.showPicker = false
this.pickerCircle = null
this.pickerData = []
this.pickerSelection = {}
},
async onGuestCreated(guest) {
const results = await getSuggestions(guest.username)
this.$refs.entityPicker.onClick(results[0])
},
},
})
</script>
<style lang="scss" scoped>
.member-list {
// Make virtual scroller scrollable
max-height: 100%;
max-width: 900px;
overflow: auto;
:deep(.empty-content) {
margin: auto;
}
}
.member-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
@media (max-width: 768px) {
grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
grid-template-columns: repeat(3, 1fr);
}
}
.empty-content {
height: 100%;
}
</style>