mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
56 lines
2.4 KiB
Vue
56 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
import {
|
|
TrashIcon,
|
|
PencilSquareIcon,
|
|
CheckCircleIcon,
|
|
} from '@heroicons/vue/20/solid';
|
|
import type { Task } from '@/packages/api/src';
|
|
import { canDeleteTasks, canUpdateTasks } from '@/utils/permissions';
|
|
import MoreOptionsDropdown from '@/packages/ui/src/MoreOptionsDropdown.vue';
|
|
const emit = defineEmits<{
|
|
delete: [];
|
|
edit: [];
|
|
done: [];
|
|
}>();
|
|
const props = defineProps<{
|
|
task: Task;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<MoreOptionsDropdown :label="'Actions for Task ' + props.task.name">
|
|
<div class="min-w-[150px]">
|
|
<button
|
|
v-if="canUpdateTasks()"
|
|
:aria-label="'Edit Task ' + props.task.name"
|
|
data-testid="task_edit"
|
|
class="flex items-center space-x-3 w-full px-3 py-2.5 text-start text-sm font-medium leading-5 text-white hover:bg-card-background-active focus:outline-none focus:bg-card-background-active transition duration-150 ease-in-out"
|
|
@click="emit('edit')">
|
|
<PencilSquareIcon
|
|
class="w-5 text-icon-active"></PencilSquareIcon>
|
|
<span>Edit</span>
|
|
</button>
|
|
<button
|
|
v-if="canUpdateTasks()"
|
|
:aria-label="'Mark Task ' + props.task.name + ' as done'"
|
|
class="flex items-center space-x-3 w-full px-3 py-2.5 text-start text-sm font-medium leading-5 text-white hover:bg-card-background-active focus:outline-none focus:bg-card-background-active transition duration-150 ease-in-out"
|
|
@click="emit('done')">
|
|
<CheckCircleIcon class="w-5 text-icon-active"></CheckCircleIcon>
|
|
<span v-if="props.task.is_done">Mark as active</span>
|
|
<span v-else>Mark as done</span>
|
|
</button>
|
|
<button
|
|
v-if="canDeleteTasks()"
|
|
:aria-label="'Delete Task ' + props.task.name"
|
|
data-testid="task_delete"
|
|
class="flex items-center space-x-3 w-full px-3 py-2.5 text-start text-sm font-medium leading-5 text-white hover:bg-card-background-active focus:outline-none focus:bg-card-background-active transition duration-150 ease-in-out"
|
|
@click="emit('delete')">
|
|
<TrashIcon class="w-5 text-icon-active"></TrashIcon>
|
|
<span>Delete</span>
|
|
</button>
|
|
</div>
|
|
</MoreOptionsDropdown>
|
|
</template>
|
|
|
|
<style scoped></style>
|