2019-11-24 14:16:24 +01:00
|
|
|
<template>
|
|
|
|
<multiselect
|
2020-09-05 22:35:52 +02:00
|
|
|
:loading="listUserService.loading"
|
2021-01-06 23:36:31 +01:00
|
|
|
placeholder="Type to assign a user..."
|
|
|
|
:disabled="disabled"
|
2020-09-05 22:35:52 +02:00
|
|
|
:multiple="true"
|
2021-01-06 23:36:31 +01:00
|
|
|
@search="findUser"
|
|
|
|
:search-results="foundUsers"
|
2020-09-05 22:35:52 +02:00
|
|
|
@select="addAssignee"
|
|
|
|
label="username"
|
2021-01-06 23:36:31 +01:00
|
|
|
select-placeholder="Assign this user"
|
2020-09-05 22:35:52 +02:00
|
|
|
v-model="assignees"
|
|
|
|
>
|
2021-01-06 23:36:31 +01:00
|
|
|
<template v-slot: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>
|
2019-11-24 14:16:24 +01:00
|
|
|
</template>
|
|
|
|
</multiselect>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-11-02 21:47:31 +01:00
|
|
|
import differenceWith from 'lodash/differenceWith'
|
2019-11-24 14:16:24 +01:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
import UserModel from '../../../models/user'
|
|
|
|
import ListUserService from '../../../services/listUsers'
|
|
|
|
import TaskAssigneeService from '../../../services/taskAssignee'
|
|
|
|
import User from '../../misc/user'
|
2021-01-06 23:36:31 +01:00
|
|
|
import Multiselect from '@/components/input/multiselect'
|
2019-11-24 14:16:24 +01:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
export default {
|
|
|
|
name: 'editAssignees',
|
|
|
|
components: {
|
|
|
|
User,
|
2021-01-06 23:36:31 +01:00
|
|
|
Multiselect,
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
taskId: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
2019-11-24 14:16:24 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
listId: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
2019-11-24 14:16:24 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
disabled: {
|
|
|
|
default: false,
|
2019-11-24 14:16:24 +01:00
|
|
|
},
|
2020-10-02 18:40:04 +02:00
|
|
|
value: {
|
|
|
|
type: Array,
|
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
newAssignee: UserModel,
|
|
|
|
listUserService: ListUserService,
|
|
|
|
foundUsers: [],
|
|
|
|
assignees: [],
|
|
|
|
taskAssigneeService: TaskAssigneeService,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
2020-10-02 18:40:04 +02:00
|
|
|
this.assignees = this.value
|
2020-09-05 22:35:52 +02:00
|
|
|
this.listUserService = new ListUserService()
|
|
|
|
this.newAssignee = new UserModel()
|
|
|
|
this.taskAssigneeService = new TaskAssigneeService()
|
|
|
|
},
|
|
|
|
watch: {
|
2020-10-02 18:40:04 +02:00
|
|
|
value(newVal) {
|
2020-09-05 22:35:52 +02:00
|
|
|
this.assignees = newVal
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
addAssignee(user) {
|
|
|
|
this.$store.dispatch('tasks/addAssignee', {user: user, taskId: this.taskId})
|
2020-10-02 18:40:04 +02:00
|
|
|
.then(() => {
|
|
|
|
this.$emit('input', this.assignees)
|
2020-11-22 17:32:35 +01:00
|
|
|
this.success({message: 'The user has been assigned successfully.'}, this)
|
2020-10-02 18:40:04 +02:00
|
|
|
})
|
2020-09-05 22:35:52 +02:00
|
|
|
.catch(e => {
|
|
|
|
this.error(e, this)
|
|
|
|
})
|
2019-11-24 14:16:24 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
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)
|
2019-11-24 14:16:24 +01:00
|
|
|
}
|
2020-09-05 22:35:52 +02:00
|
|
|
}
|
2020-11-22 17:32:35 +01:00
|
|
|
this.success({message: 'The user has been unassinged successfully.'}, this)
|
2020-09-05 22:35:52 +02:00
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
this.error(e, this)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
findUser(query) {
|
|
|
|
if (query === '') {
|
|
|
|
this.clearAllFoundUsers()
|
|
|
|
return
|
|
|
|
}
|
2019-11-24 14:16:24 +01:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
this.listUserService.getAll({listId: this.listId}, {s: query})
|
|
|
|
.then(response => {
|
|
|
|
// Filter the results to not include users who are already assigned
|
|
|
|
this.$set(this, 'foundUsers', differenceWith(response, this.assignees, (first, second) => {
|
|
|
|
return first.id === second.id
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
this.error(e, this)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
clearAllFoundUsers() {
|
|
|
|
this.$set(this, 'foundUsers', [])
|
2019-11-24 14:16:24 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
}
|
2019-11-24 14:16:24 +01:00
|
|
|
</script>
|