
# Conflicts: # src/components/input/editor.vue # src/components/list/partials/filters.vue # src/components/tasks/partials/editAssignees.vue # src/helpers/find.ts # src/helpers/time/formatDate.js # src/main.ts # src/store/modules/attachments.js # src/store/modules/kanban.js # src/views/list/views/List.vue # yarn.lock
129 lines
2.9 KiB
Vue
129 lines
2.9 KiB
Vue
<template>
|
|
<div
|
|
tabindex="-1"
|
|
@focus="focus"
|
|
>
|
|
<multiselect
|
|
:loading="listUserService.loading"
|
|
:placeholder="$t('task.assignee.placeholder')"
|
|
:disabled="disabled"
|
|
:multiple="true"
|
|
@search="findUser"
|
|
:search-results="foundUsers"
|
|
@select="addAssignee"
|
|
label="username"
|
|
:select-placeholder="$t('task.assignee.selectPlaceholder')"
|
|
v-model="assignees"
|
|
ref="multiselect"
|
|
>
|
|
<template #tag="props">
|
|
<span class="assignee">
|
|
<user :avatar-size="32" :show-username="false" :user="props.item"/>
|
|
<a @click="removeAssignee(props.item)" class="remove-assignee" v-if="!disabled">
|
|
<icon icon="times"/>
|
|
</a>
|
|
</span>
|
|
</template>
|
|
</multiselect>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {includesById} from '@/helpers/utils'
|
|
import UserModel from '../../../models/user'
|
|
import ListUserService from '../../../services/listUsers'
|
|
import TaskAssigneeService from '../../../services/taskAssignee'
|
|
import User from '../../misc/user'
|
|
import Multiselect from '@/components/input/multiselect.vue'
|
|
|
|
export default {
|
|
name: 'editAssignees',
|
|
components: {
|
|
User,
|
|
Multiselect,
|
|
},
|
|
props: {
|
|
taskId: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
listId: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
disabled: {
|
|
default: false,
|
|
},
|
|
modelValue: {
|
|
type: Array,
|
|
},
|
|
},
|
|
emits: ['update:modelValue'],
|
|
data() {
|
|
return {
|
|
newAssignee: new UserModel(),
|
|
listUserService: new ListUserService(),
|
|
foundUsers: [],
|
|
assignees: [],
|
|
taskAssigneeService: new TaskAssigneeService(),
|
|
}
|
|
},
|
|
watch: {
|
|
modelValue: {
|
|
handler(value) {
|
|
this.assignees = value
|
|
},
|
|
immediate: true,
|
|
},
|
|
},
|
|
methods: {
|
|
addAssignee(user) {
|
|
this.$store.dispatch('tasks/addAssignee', {user: user, taskId: this.taskId})
|
|
.then(() => {
|
|
this.$emit('update:modelValue', this.assignees)
|
|
this.$message.success({message: this.$t('task.assignee.assignSuccess')})
|
|
})
|
|
.catch(e => {
|
|
this.$message.error(e)
|
|
})
|
|
},
|
|
removeAssignee(user) {
|
|
this.$store.dispatch('tasks/removeAssignee', {user: user, taskId: this.taskId})
|
|
.then(() => {
|
|
// Remove the assignee from the list
|
|
for (const a in this.assignees) {
|
|
if (this.assignees[a].id === user.id) {
|
|
this.assignees.splice(a, 1)
|
|
}
|
|
}
|
|
this.$message.success({message: this.$t('task.assignee.assignSuccess')})
|
|
})
|
|
.catch(e => {
|
|
this.$message.error(e)
|
|
})
|
|
},
|
|
findUser(query) {
|
|
if (query === '') {
|
|
this.clearAllFoundUsers()
|
|
return
|
|
}
|
|
|
|
this.listUserService.getAll({listId: this.listId}, {s: query})
|
|
.then(response => {
|
|
// Filter the results to not include users who are already assigned
|
|
this.foundUsers = response.filter(({id}) => !includesById(this.assignees, id))
|
|
})
|
|
.catch(e => {
|
|
this.$message.error(e)
|
|
})
|
|
},
|
|
clearAllFoundUsers() {
|
|
this.foundUsers = []
|
|
},
|
|
focus() {
|
|
this.$refs.multiselect.focus()
|
|
},
|
|
},
|
|
}
|
|
</script>
|