171 lines
3.7 KiB
Vue
171 lines
3.7 KiB
Vue
<template>
|
|
<Multiselect
|
|
v-model="labels"
|
|
:loading="loading"
|
|
:placeholder="$t('task.label.placeholder')"
|
|
:multiple="true"
|
|
:search-results="foundLabels"
|
|
label="title"
|
|
:creatable="creatable"
|
|
:create-placeholder="$t('task.label.createPlaceholder')"
|
|
:search-delay="10"
|
|
:close-after-select="false"
|
|
@search="findLabel"
|
|
@select="addLabel"
|
|
@create="createAndAddLabel"
|
|
>
|
|
<template #tag="{item: label}">
|
|
<span
|
|
:style="{'background': label.hexColor, 'color': label.textColor}"
|
|
class="tag"
|
|
>
|
|
<span>{{ label.title }}</span>
|
|
<BaseButton
|
|
v-cy="'taskDetail.removeLabel'"
|
|
class="delete is-small"
|
|
@click="removeLabel(label)"
|
|
/>
|
|
</span>
|
|
</template>
|
|
<template #searchResult="{option}">
|
|
<span
|
|
v-if="typeof option === 'string'"
|
|
class="tag search-result"
|
|
>
|
|
<span>{{ option }}</span>
|
|
</span>
|
|
<span
|
|
v-else
|
|
:style="{'background': option.hexColor, 'color': option.textColor}"
|
|
class="tag search-result"
|
|
>
|
|
<span>{{ option.title }}</span>
|
|
</span>
|
|
</template>
|
|
</Multiselect>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {type PropType, ref, computed, shallowReactive, watch} from 'vue'
|
|
import {useI18n} from 'vue-i18n'
|
|
|
|
import LabelModel from '@/models/label'
|
|
import LabelTaskService from '@/services/labelTask'
|
|
import {success} from '@/message'
|
|
|
|
import BaseButton from '@/components/base/BaseButton.vue'
|
|
import Multiselect from '@/components/input/Multiselect.vue'
|
|
import type {ILabel} from '@/modelTypes/ILabel'
|
|
import {useLabelStore} from '@/stores/labels'
|
|
import {useTaskStore} from '@/stores/tasks'
|
|
import {getRandomColorHex} from '@/helpers/color/randomColor'
|
|
|
|
const props = defineProps({
|
|
modelValue: {
|
|
type: Array as PropType<ILabel[]>,
|
|
default: () => [],
|
|
},
|
|
taskId: {
|
|
type: Number,
|
|
required: false,
|
|
default: 0,
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
creatable: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
})
|
|
|
|
const emit = defineEmits(['update:modelValue'])
|
|
|
|
const {t} = useI18n({useScope: 'global'})
|
|
|
|
const labelTaskService = shallowReactive(new LabelTaskService())
|
|
const labels = ref<ILabel[]>([])
|
|
const query = ref('')
|
|
|
|
watch(
|
|
() => props.modelValue,
|
|
(value) => {
|
|
labels.value = value
|
|
},
|
|
{
|
|
immediate: true,
|
|
deep: true,
|
|
},
|
|
)
|
|
|
|
const taskStore = useTaskStore()
|
|
const labelStore = useLabelStore()
|
|
|
|
const foundLabels = computed(() => labelStore.filterLabelsByQuery(labels.value, query.value))
|
|
const loading = computed(() => labelTaskService.loading || labelStore.isLoading)
|
|
|
|
function findLabel(newQuery: string) {
|
|
query.value = newQuery
|
|
}
|
|
|
|
async function addLabel(label: ILabel, showNotification = true) {
|
|
if (props.taskId === 0) {
|
|
emit('update:modelValue', labels.value)
|
|
return
|
|
}
|
|
|
|
await taskStore.addLabel({label, taskId: props.taskId})
|
|
emit('update:modelValue', labels.value)
|
|
if (showNotification) {
|
|
success({message: t('task.label.addSuccess')})
|
|
}
|
|
}
|
|
|
|
async function removeLabel(label: ILabel) {
|
|
if (props.taskId !== 0) {
|
|
await taskStore.removeLabel({label, taskId: props.taskId})
|
|
}
|
|
|
|
for (const l in labels.value) {
|
|
if (labels.value[l].id === label.id) {
|
|
labels.value.splice(l, 1) // FIXME: l should be index
|
|
}
|
|
}
|
|
emit('update:modelValue', labels.value)
|
|
success({message: t('task.label.removeSuccess')})
|
|
}
|
|
|
|
async function createAndAddLabel(title: string) {
|
|
if (props.taskId === 0) {
|
|
return
|
|
}
|
|
|
|
const newLabel = await labelStore.createLabel(new LabelModel({
|
|
title,
|
|
hexColor: getRandomColorHex(),
|
|
}))
|
|
addLabel(newLabel, false)
|
|
labels.value.push(newLabel)
|
|
success({message: t('task.label.addCreateSuccess')})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.tag {
|
|
margin: .25rem !important;
|
|
}
|
|
|
|
.tag.search-result {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
:deep(.input-wrapper) {
|
|
padding: .25rem !important;
|
|
}
|
|
|
|
:deep(input.input) {
|
|
padding: 0 .5rem;
|
|
}
|
|
</style>
|