- Add duplicate button in time entry drawer - Make time entry blocks and list responsive (tags wrap, hide on narrow) - Replace date filter input with calendar icon next to month title - Fix scroll to current hour in calendar (use gridBodyEl) - Show project color on ticket code in task cards and my-tasks - Add red flag icon for high priority tasks in kanban and my-tasks Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
105 lines
3.7 KiB
Vue
105 lines
3.7 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-semibold" :style="{ color: task.project.color }">{{ task.project.code }}{{ task.number }}</span>
|
|
<Icon
|
|
v-if="task.priority?.label === 'Haute'"
|
|
name="mdi:flag-variant"
|
|
class="h-3.5 w-3.5 text-red-600"
|
|
/>
|
|
<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>
|
|
<UserAvatar
|
|
v-if="task.assignee"
|
|
:user="task.assignee"
|
|
size="xs"
|
|
class="ml-auto"
|
|
/>
|
|
<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>
|