101 lines
3.6 KiB
Vue
101 lines
3.6 KiB
Vue
<template>
|
|
<div
|
|
class="cursor-pointer rounded-lg border border-neutral-200 bg-white p-3 shadow-sm transition hover:shadow-md"
|
|
draggable="true"
|
|
@dragstart="onDragStart"
|
|
@dragend="onDragEnd"
|
|
@click="emit('click')"
|
|
>
|
|
<div class="flex items-start justify-between gap-2">
|
|
<div class="min-w-0">
|
|
<div class="flex items-center gap-1">
|
|
<span v-if="task.project && task.number" class="text-xs font-medium text-neutral-400">{{ task.project.code }}{{ task.number }}</span>
|
|
<Icon
|
|
v-if="task.clientTicket"
|
|
name="heroicons:user-circle"
|
|
class="h-4 w-4 text-blue-400"
|
|
:title="$t('clientTicket.linkedTooltip', { number: 'CT-' + String(task.clientTicket.number).padStart(3, '0') })"
|
|
/>
|
|
</div>
|
|
<h4 class="text-sm font-semibold text-neutral-900">{{ task.title }}</h4>
|
|
</div>
|
|
<button
|
|
class="shrink-0 transition-colors"
|
|
:class="isTimerOnTask ? 'text-[#F18619] hover:text-[#d97314]' : 'text-neutral-400 hover:text-primary-500'"
|
|
@click.stop="isTimerOnTask ? timerStore.stop() : onPlay()"
|
|
>
|
|
<Icon :name="isTimerOnTask ? 'mdi:stop-circle-outline' : 'mdi:play-circle-outline'" size="20" />
|
|
</button>
|
|
</div>
|
|
|
|
<div class="mt-2 flex items-center gap-1.5">
|
|
<span
|
|
v-if="task.priority"
|
|
class="rounded-full px-2 py-0.5 text-xs font-semibold text-white"
|
|
:style="{ backgroundColor: task.priority.color }"
|
|
>
|
|
{{ task.priority.label }}
|
|
</span>
|
|
<span
|
|
v-for="tag in task.tags"
|
|
:key="tag.id"
|
|
class="rounded-full px-2 py-0.5 text-xs font-semibold text-white"
|
|
:style="{ backgroundColor: tag.color }"
|
|
>
|
|
{{ tag.label }}
|
|
</span>
|
|
<span
|
|
v-if="task.assignee"
|
|
class="ml-auto flex h-5 w-5 items-center justify-center rounded-full bg-primary-500 text-[10px] font-bold text-white"
|
|
:title="task.assignee.username"
|
|
>
|
|
{{ task.assignee.username.substring(0, 2).toUpperCase() }}
|
|
</span>
|
|
<span
|
|
v-else
|
|
class="ml-auto flex h-5 w-5 items-center justify-center rounded-full bg-neutral-200 text-neutral-400"
|
|
>
|
|
<Icon name="mdi:account-outline" size="14" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { Task } from '~/services/dto/task'
|
|
|
|
const props = defineProps<{
|
|
task: Task
|
|
}>()
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'click'): void
|
|
}>()
|
|
|
|
const timerStore = useTimerStore()
|
|
|
|
const isTimerOnTask = computed(() => {
|
|
const entry = timerStore.activeEntry
|
|
if (!entry?.task) return false
|
|
const entryTaskId = typeof entry.task === 'string'
|
|
? entry.task
|
|
: (entry.task['@id'] ?? entry.task.id)
|
|
const taskId = props.task['@id'] ?? props.task.id
|
|
return entryTaskId === taskId || entryTaskId === `/api/tasks/${props.task.id}`
|
|
})
|
|
|
|
function onPlay() {
|
|
timerStore.startFromTask(props.task)
|
|
}
|
|
|
|
function onDragStart(event: DragEvent) {
|
|
event.dataTransfer!.effectAllowed = 'move'
|
|
event.dataTransfer!.setData('text/plain', String(props.task.id))
|
|
;(event.target as HTMLElement).classList.add('opacity-50')
|
|
}
|
|
|
|
function onDragEnd(event: DragEvent) {
|
|
;(event.target as HTMLElement).classList.remove('opacity-50')
|
|
}
|
|
</script>
|