feat: editAssignees script setup (#1931)
continuous-integration/drone/push Build is passing Details

Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1931
Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
This commit is contained in:
Dominik Pschenitschni 2022-05-14 14:52:29 +00:00 committed by konrad
parent 6538a3591e
commit 72e43b7bbf
1 changed files with 71 additions and 73 deletions

View File

@ -3,7 +3,7 @@
tabindex="-1" tabindex="-1"
@focus="focus" @focus="focus"
> >
<multiselect <Multiselect
:loading="listUserService.loading" :loading="listUserService.loading"
:placeholder="$t('task.assignee.placeholder')" :placeholder="$t('task.assignee.placeholder')"
:multiple="true" :multiple="true"
@ -15,34 +15,32 @@
v-model="assignees" v-model="assignees"
ref="multiselect" ref="multiselect"
> >
<template #tag="props"> <template #tag="{item: user}">
<span class="assignee"> <span class="assignee">
<user :avatar-size="32" :show-username="false" :user="props.item"/> <user :avatar-size="32" :show-username="false" :user="user"/>
<a @click="removeAssignee(props.item)" class="remove-assignee" v-if="!disabled"> <a @click="removeAssignee(user)" class="remove-assignee" v-if="!disabled">
<icon icon="times"/> <icon icon="times"/>
</a> </a>
</span> </span>
</template> </template>
</multiselect> </Multiselect>
</div> </div>
</template> </template>
<script lang="ts"> <script setup lang="ts">
import {defineComponent} from 'vue' import {ref, shallowReactive, watch, PropType} from 'vue'
import {includesById} from '@/helpers/utils' import {useStore} from 'vuex'
import UserModel from '../../../models/user' import {useI18n} from 'vue-i18n'
import ListUserService from '../../../services/listUsers'
import TaskAssigneeService from '../../../services/taskAssignee' import User from '@/components/misc/user.vue'
import User from '../../misc/user'
import Multiselect from '@/components/input/multiselect.vue' import Multiselect from '@/components/input/multiselect.vue'
export default defineComponent({ import {includesById} from '@/helpers/utils'
name: 'editAssignees', import UserModel from '@/models/user'
components: { import ListUserService from '@/services/listUsers'
User, import {success} from '@/message'
Multiselect,
}, const props = defineProps({
props: {
taskId: { taskId: {
type: Number, type: Number,
required: true, required: true,
@ -55,68 +53,68 @@ export default defineComponent({
default: false, default: false,
}, },
modelValue: { modelValue: {
type: Array, type: Array as PropType<UserModel[]>,
default: () => [],
}, },
})
const emit = defineEmits(['update:modelValue'])
const store = useStore()
const {t} = useI18n()
const listUserService = shallowReactive(new ListUserService())
const foundUsers = ref([])
const assignees = ref<UserModel[]>([])
watch(
() => props.modelValue,
(value) => {
assignees.value = value
}, },
emits: ['update:modelValue'], {
data() { immediate: true,
return { deep: true,
newAssignee: new UserModel(), },
listUserService: new ListUserService(), )
foundUsers: [],
assignees: [], async function addAssignee(user: UserModel) {
taskAssigneeService: new TaskAssigneeService(), await store.dispatch('tasks/addAssignee', {user: user, taskId: props.taskId})
emit('update:modelValue', assignees.value)
success({message: t('task.assignee.assignSuccess')})
}
async function removeAssignee(user: UserModel) {
await store.dispatch('tasks/removeAssignee', {user: user, taskId: props.taskId})
// Remove the assignee from the list
for (const a in assignees.value) {
if (assignees.value[a].id === user.id) {
assignees.value.splice(a, 1)
} }
}, }
watch: { success({message: t('task.assignee.unassignSuccess')})
modelValue: { }
handler(value) {
this.assignees = value
},
immediate: true,
deep: true,
},
},
methods: {
async addAssignee(user) {
await this.$store.dispatch('tasks/addAssignee', {user: user, taskId: this.taskId})
this.$emit('update:modelValue', this.assignees)
this.$message.success({message: this.$t('task.assignee.assignSuccess')})
},
async removeAssignee(user) { async function findUser(query) {
await this.$store.dispatch('tasks/removeAssignee', {user: user, taskId: this.taskId}) if (query === '') {
clearAllFoundUsers()
return
}
// Remove the assignee from the list const response = await listUserService.getAll({listId: props.listId}, {s: query})
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.unassignSuccess')})
},
async findUser(query) { // Filter the results to not include users who are already assigned
if (query === '') { foundUsers.value = response.filter(({id}) => !includesById(assignees.value, id))
this.clearAllFoundUsers() }
return
}
const response = await this.listUserService.getAll({listId: this.listId}, {s: query}) function clearAllFoundUsers() {
foundUsers.value = []
}
// Filter the results to not include users who are already assigned const multiselect = ref()
this.foundUsers = response.filter(({id}) => !includesById(this.assignees, id)) function focus() {
}, multiselect.value.focus()
}
clearAllFoundUsers() {
this.foundUsers = []
},
focus() {
this.$refs.multiselect.focus()
},
},
})
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>