add edit modal for tasks and clients, fixes ST-233

This commit is contained in:
Gregor Vostrak
2024-06-04 19:27:29 +02:00
parent 81e3ffd921
commit ded58f8bd6
14 changed files with 270 additions and 46 deletions

View File

@@ -49,3 +49,5 @@ test('test that creating and deleting a new client via the modal works', async (
newClientName newClientName
); );
}); });
// TODO: Add Name Update Test

View File

@@ -71,3 +71,5 @@ test('test that creating and deleting a new project via the modal works', async
// Edit Project with billable rate // Edit Project with billable rate
// Edit Project Member Billable Rate // Edit Project Member Billable Rate
// Edit Task Name

View File

@@ -107,3 +107,5 @@ test('test that creating and deleting a new tag in a new project works', async (
// Test that project task count is displayed correctly // Test that project task count is displayed correctly
// Test that active / archive / all filter works (once implemented) // Test that active / archive / all filter works (once implemented)
// Test update task name

View File

@@ -0,0 +1,70 @@
<script setup lang="ts">
import TextInput from '@/Components/TextInput.vue';
import SecondaryButton from '@/Components/SecondaryButton.vue';
import DialogModal from '@/Components/DialogModal.vue';
import { ref } from 'vue';
import type { Client, UpdateClientBody } from '@/utils/api';
import PrimaryButton from '@/Components/PrimaryButton.vue';
import { useFocus } from '@vueuse/core';
import { useClientsStore } from '@/utils/useClients';
const { updateClient } = useClientsStore();
const show = defineModel('show', { default: false });
const saving = ref(false);
const props = defineProps<{
client: Client;
}>();
const clientBody = ref<UpdateClientBody>({
name: props.client.name,
});
async function submit() {
await updateClient(props.client.id, clientBody.value);
show.value = false;
}
const clientNameInput = ref<HTMLInputElement | null>(null);
useFocus(clientNameInput, { initialValue: true });
</script>
<template>
<DialogModal closeable :show="show" @close="show = false">
<template #title>
<div class="flex space-x-2">
<span> Update Client </span>
</div>
</template>
<template #content>
<div class="flex items-center space-x-4">
<div class="col-span-6 sm:col-span-4 flex-1">
<TextInput
id="clientName"
ref="clientNameInput"
v-model="clientBody.name"
type="text"
placeholder="Client Name"
@keydown.enter="submit"
class="mt-1 block w-full"
required
autocomplete="clientName" />
</div>
</div>
</template>
<template #footer>
<SecondaryButton @click="show = false"> Cancel </SecondaryButton>
<PrimaryButton
class="ms-3"
:class="{ 'opacity-25': saving }"
:disabled="saving"
@click="submit">
Update Client
</PrimaryButton>
</template>
</DialogModal>
</template>
<style scoped></style>

View File

@@ -1,11 +1,12 @@
<script setup lang="ts"> <script setup lang="ts">
import Dropdown from '@/Components/Dropdown.vue'; import Dropdown from '@/Components/Dropdown.vue';
import { TrashIcon } from '@heroicons/vue/20/solid'; import { PencilSquareIcon, TrashIcon } from '@heroicons/vue/20/solid';
import type { Client } from '@/utils/api'; import type { Client } from '@/utils/api';
import { canDeleteClients } from '@/utils/permissions'; import { canDeleteClients, canUpdateClients } from '@/utils/permissions';
const emit = defineEmits<{ const emit = defineEmits<{
delete: []; delete: [];
edit: [];
}>(); }>();
const props = defineProps<{ const props = defineProps<{
client: Client; client: Client;
@@ -31,15 +32,27 @@ const props = defineProps<{
</svg> </svg>
</template> </template>
<template #content> <template #content>
<button <div class="min-w-[150px]">
v-if="canDeleteClients()" <button
@click="emit('delete')" v-if="canUpdateClients()"
:aria-label="'Delete Client ' + props.client.name" @click="emit('edit')"
data-testid="client_delete" :aria-label="'Edit Client ' + props.client.name"
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"> data-testid="client_edit"
<TrashIcon class="w-5 text-icon-active"></TrashIcon> 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">
<span>Delete</span> <PencilSquareIcon
</button> class="w-5 text-icon-active"></PencilSquareIcon>
<span>Edit</span>
</button>
<button
v-if="canDeleteClients()"
@click="emit('delete')"
:aria-label="'Delete Client ' + props.client.name"
data-testid="client_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">
<TrashIcon class="w-5 text-icon-active"></TrashIcon>
<span>Delete</span>
</button>
</div>
</template> </template>
</Dropdown> </Dropdown>
</template> </template>

View File

@@ -1,12 +1,13 @@
<script setup lang="ts"> <script setup lang="ts">
import type { Client } from '@/utils/api'; import type { Client } from '@/utils/api';
import { computed } from 'vue'; import { computed, ref } from 'vue';
import { CheckCircleIcon } from '@heroicons/vue/20/solid'; import { CheckCircleIcon } from '@heroicons/vue/20/solid';
import { useClientsStore } from '@/utils/useClients'; import { useClientsStore } from '@/utils/useClients';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import ClientMoreOptionsDropdown from '@/Components/Common/Client/ClientMoreOptionsDropdown.vue'; import ClientMoreOptionsDropdown from '@/Components/Common/Client/ClientMoreOptionsDropdown.vue';
import { useProjectsStore } from '@/utils/useProjects'; import { useProjectsStore } from '@/utils/useProjects';
import TableRow from '@/Components/TableRow.vue'; import TableRow from '@/Components/TableRow.vue';
import ClientEditModal from '@/Components/Common/Client/ClientEditModal.vue';
const { projects } = storeToRefs(useProjectsStore()); const { projects } = storeToRefs(useProjectsStore());
@@ -23,10 +24,15 @@ const projectCount = computed(() => {
(projects) => projects.client_id === props.client.id (projects) => projects.client_id === props.client.id
).length; ).length;
}); });
const showEditModal = ref(false);
</script> </script>
<template> <template>
<TableRow> <TableRow>
<ClientEditModal
:client="client"
v-model:show="showEditModal"></ClientEditModal>
<div <div
class="whitespace-nowrap flex items-center space-x-5 3xl:pl-12 py-4 pr-3 text-sm font-medium text-white pl-4 sm:pl-6 lg:pl-8 3xl:pl-12"> class="whitespace-nowrap flex items-center space-x-5 3xl:pl-12 py-4 pr-3 text-sm font-medium text-white pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
<span> <span>
@@ -43,6 +49,7 @@ const projectCount = computed(() => {
class="relative whitespace-nowrap flex items-center pl-3 text-right text-sm font-medium sm:pr-0 pr-4 sm:pr-6 lg:pr-8 3xl:pr-12"> class="relative whitespace-nowrap flex items-center pl-3 text-right text-sm font-medium sm:pr-0 pr-4 sm:pr-6 lg:pr-8 3xl:pr-12">
<ClientMoreOptionsDropdown <ClientMoreOptionsDropdown
:client="client" :client="client"
@edit="showEditModal = true"
@delete="deleteClient"></ClientMoreOptionsDropdown> @delete="deleteClient"></ClientMoreOptionsDropdown>
</div> </div>
</TableRow> </TableRow>

View File

@@ -31,25 +31,27 @@ const props = defineProps<{
</svg> </svg>
</template> </template>
<template #content> <template #content>
<button <div class="min-w-[150px]">
@click.prevent="emit('delete')" <button
:aria-label="'Delete Project ' + props.project.name" @click.prevent="emit('edit')"
data-testid="project_delete" v-if="canUpdateProjects()"
v-if="canDeleteProjects()" :aria-label="'Edit Project ' + props.project.name"
class="border-b border-card-background-separator 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"> data-testid="project_edit"
<TrashIcon class="w-5 text-icon-active"></TrashIcon> 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">
<span>Delete</span> <PencilSquareIcon
</button> class="w-5 text-icon-active"></PencilSquareIcon>
<button <span>Edit</span>
@click.prevent="emit('edit')" </button>
v-if="canUpdateProjects()" <button
:aria-label="'Edit Project ' + props.project.name" @click.prevent="emit('delete')"
data-testid="project_edit" :aria-label="'Delete Project ' + props.project.name"
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"> data-testid="project_delete"
<PencilSquareIcon v-if="canDeleteProjects()"
class="w-5 text-icon-active"></PencilSquareIcon> class="border-b border-card-background-separator 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">
<span>Edit</span> <TrashIcon class="w-5 text-icon-active"></TrashIcon>
</button> <span>Delete</span>
</button>
</div>
</template> </template>
</Dropdown> </Dropdown>
</template> </template>

View File

@@ -0,0 +1,70 @@
<script setup lang="ts">
import TextInput from '@/Components/TextInput.vue';
import SecondaryButton from '@/Components/SecondaryButton.vue';
import DialogModal from '@/Components/DialogModal.vue';
import { ref } from 'vue';
import PrimaryButton from '@/Components/PrimaryButton.vue';
import { useFocus } from '@vueuse/core';
import { useTasksStore } from '@/utils/useTasks';
import type { Task, UpdateTaskBody } from '@/utils/api';
const { updateTask } = useTasksStore();
const show = defineModel('show', { default: false });
const saving = ref(false);
const props = defineProps<{
task: Task;
}>();
const taskBody = ref<UpdateTaskBody>({
name: props.task.name,
});
async function submit() {
await updateTask(props.task.id, taskBody.value);
show.value = false;
}
const taskNameInput = ref<HTMLInputElement | null>(null);
useFocus(taskNameInput, { initialValue: true });
</script>
<template>
<DialogModal closeable :show="show" @close="show = false">
<template #title>
<div class="flex space-x-2">
<span> Create Task </span>
</div>
</template>
<template #content>
<div class="flex items-center space-x-4">
<div class="col-span-6 sm:col-span-4 flex-1">
<TextInput
id="taskName"
ref="taskNameInput"
v-model="taskBody.name"
type="text"
placeholder="Task Name"
@keydown.enter="submit()"
class="mt-1 block w-full"
required
autocomplete="taskName" />
</div>
</div>
</template>
<template #footer>
<SecondaryButton @click="show = false"> Cancel </SecondaryButton>
<PrimaryButton
class="ms-3"
:class="{ 'opacity-25': saving }"
:disabled="saving"
@click="submit">
Update Task
</PrimaryButton>
</template>
</DialogModal>
</template>
<style scoped></style>

View File

@@ -1,9 +1,11 @@
<script setup lang="ts"> <script setup lang="ts">
import Dropdown from '@/Components/Dropdown.vue'; import Dropdown from '@/Components/Dropdown.vue';
import { TrashIcon } from '@heroicons/vue/20/solid'; import { TrashIcon, PencilSquareIcon } from '@heroicons/vue/20/solid';
import type { Task } from '@/utils/api'; import type { Task } from '@/utils/api';
import { canDeleteTasks, canUpdateTasks } from '@/utils/permissions';
const emit = defineEmits<{ const emit = defineEmits<{
delete: []; delete: [];
edit: [];
}>(); }>();
const props = defineProps<{ const props = defineProps<{
task: Task; task: Task;
@@ -11,7 +13,7 @@ const props = defineProps<{
</script> </script>
<template> <template>
<Dropdown> <Dropdown align="bottom-end">
<template #trigger> <template #trigger>
<svg <svg
data-testid="task_actions" data-testid="task_actions"
@@ -29,14 +31,27 @@ const props = defineProps<{
</svg> </svg>
</template> </template>
<template #content> <template #content>
<button <div class="min-w-[150px]">
@click="emit('delete')" <button
:aria-label="'Delete Task ' + props.task.name" @click="emit('edit')"
data-testid="task_delete" v-if="canUpdateTasks()"
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"> :aria-label="'Edit Task ' + props.task.name"
<TrashIcon class="w-5 text-icon-active"></TrashIcon> data-testid="task_edit"
<span>Delete</span> 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">
</button> <PencilSquareIcon
class="w-5 text-icon-active"></PencilSquareIcon>
<span>Edit</span>
</button>
<button
@click="emit('delete')"
:aria-label="'Delete Task ' + props.task.name"
v-if="canDeleteTasks()"
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">
<TrashIcon class="w-5 text-icon-active"></TrashIcon>
<span>Delete</span>
</button>
</div>
</template> </template>
</Dropdown> </Dropdown>
</template> </template>

View File

@@ -5,6 +5,8 @@ import { useTasksStore } from '@/utils/useTasks';
import TaskMoreOptionsDropdown from '@/Components/Common/Task/TaskMoreOptionsDropdown.vue'; import TaskMoreOptionsDropdown from '@/Components/Common/Task/TaskMoreOptionsDropdown.vue';
import TableRow from '@/Components/TableRow.vue'; import TableRow from '@/Components/TableRow.vue';
import { canDeleteTasks } from '@/utils/permissions'; import { canDeleteTasks } from '@/utils/permissions';
import TaskEditModal from '@/Components/Common/Task/TaskEditModal.vue';
import { ref } from 'vue';
const props = defineProps<{ const props = defineProps<{
task: Task; task: Task;
@@ -13,6 +15,7 @@ const props = defineProps<{
function deleteTask() { function deleteTask() {
useTasksStore().deleteTask(props.task.id); useTasksStore().deleteTask(props.task.id);
} }
const showTaskEditModal = ref(false);
</script> </script>
<template> <template>
@@ -33,8 +36,12 @@ function deleteTask() {
<TaskMoreOptionsDropdown <TaskMoreOptionsDropdown
v-if="canDeleteTasks()" v-if="canDeleteTasks()"
:task="task" :task="task"
@edit="showTaskEditModal = true"
@delete="deleteTask"></TaskMoreOptionsDropdown> @delete="deleteTask"></TaskMoreOptionsDropdown>
</div> </div>
<TaskEditModal
:task="task"
v-model:show="showTaskEditModal"></TaskEditModal>
</TableRow> </TableRow>
</template> </template>

View File

@@ -64,6 +64,7 @@ export type ProjectMember = ProjectMemberResponse['data'][0];
export type CreateTaskBody = ZodiosBodyByAlias<SolidTimeApi, 'createTask'>; export type CreateTaskBody = ZodiosBodyByAlias<SolidTimeApi, 'createTask'>;
export type CreateClientBody = ZodiosBodyByAlias<SolidTimeApi, 'createClient'>; export type CreateClientBody = ZodiosBodyByAlias<SolidTimeApi, 'createClient'>;
export type UpdateClientBody = ZodiosBodyByAlias<SolidTimeApi, 'updateClient'>;
export type TagIndexResponse = ZodiosResponseByAlias<SolidTimeApi, 'getTags'>; export type TagIndexResponse = ZodiosResponseByAlias<SolidTimeApi, 'getTags'>;
export type Tag = TagIndexResponse['data'][0]; export type Tag = TagIndexResponse['data'][0];
@@ -71,6 +72,8 @@ export type Tag = TagIndexResponse['data'][0];
export type TaskIndexResponse = ZodiosResponseByAlias<SolidTimeApi, 'getTasks'>; export type TaskIndexResponse = ZodiosResponseByAlias<SolidTimeApi, 'getTasks'>;
export type Task = TaskIndexResponse['data'][0]; export type Task = TaskIndexResponse['data'][0];
export type UpdateTaskBody = ZodiosBodyByAlias<SolidTimeApi, 'updateTask'>;
export type ClientIndexResponse = ZodiosResponseByAlias< export type ClientIndexResponse = ZodiosResponseByAlias<
SolidTimeApi, SolidTimeApi,
'getClients' 'getClients'

View File

@@ -41,6 +41,10 @@ export function canCreateTasks() {
return currentUserHasPermission('tasks:create'); return currentUserHasPermission('tasks:create');
} }
export function canUpdateTasks() {
return currentUserHasPermission('tasks:update');
}
export function canDeleteTasks() { export function canDeleteTasks() {
return currentUserHasPermission('tasks:delete'); return currentUserHasPermission('tasks:delete');
} }
@@ -49,6 +53,10 @@ export function canCreateClients() {
return currentUserHasPermission('clients:create'); return currentUserHasPermission('clients:create');
} }
export function canUpdateClients() {
return currentUserHasPermission('clients:update');
}
export function canDeleteClients() { export function canDeleteClients() {
return currentUserHasPermission('clients:delete'); return currentUserHasPermission('clients:delete');
} }

View File

@@ -5,6 +5,7 @@ import type {
CreateClientBody, CreateClientBody,
ClientIndexResponse, ClientIndexResponse,
Client, Client,
UpdateClientBody,
} from '@/utils/api'; } from '@/utils/api';
import { getCurrentOrganizationId } from '@/utils/useUser'; import { getCurrentOrganizationId } from '@/utils/useUser';
import { useNotificationsStore } from '@/utils/notification'; import { useNotificationsStore } from '@/utils/notification';
@@ -49,6 +50,27 @@ export const useClientsStore = defineStore('clients', () => {
} }
} }
async function updateClient(
clientId: string,
clientBody: UpdateClientBody
) {
const organization = getCurrentOrganizationId();
if (organization) {
await handleApiRequestNotifications(
() =>
api.updateClient(clientBody, {
params: {
organization: organization,
client: clientId,
},
}),
'Client updated successfully',
'Failed to update client'
);
await fetchClients();
}
}
async function deleteClient(clientId: string) { async function deleteClient(clientId: string) {
const organization = getCurrentOrganizationId(); const organization = getCurrentOrganizationId();
if (organization) { if (organization) {
@@ -74,5 +96,5 @@ export const useClientsStore = defineStore('clients', () => {
return clientResponse.value?.data || []; return clientResponse.value?.data || [];
}); });
return { clients, fetchClients, createClient, deleteClient }; return { clients, fetchClients, createClient, deleteClient, updateClient };
}); });

View File

@@ -2,7 +2,7 @@ import { defineStore } from 'pinia';
import { getCurrentOrganizationId } from '@/utils/useUser'; import { getCurrentOrganizationId } from '@/utils/useUser';
import { api } from '../../../openapi.json.client'; import { api } from '../../../openapi.json.client';
import { reactive, ref } from 'vue'; import { reactive, ref } from 'vue';
import type { CreateTaskBody, Task } from '@/utils/api'; import type { CreateTaskBody, Task, UpdateTaskBody } from '@/utils/api';
import { useNotificationsStore } from '@/utils/notification'; import { useNotificationsStore } from '@/utils/notification';
export const useTasksStore = defineStore('tasks', () => { export const useTasksStore = defineStore('tasks', () => {
@@ -25,20 +25,21 @@ export const useTasksStore = defineStore('tasks', () => {
} }
} }
async function updateTask(task: Task) { async function updateTask(taskId: string, taskBody: UpdateTaskBody) {
const organizationId = getCurrentOrganizationId(); const organizationId = getCurrentOrganizationId();
if (organizationId) { if (organizationId) {
await handleApiRequestNotifications( await handleApiRequestNotifications(
() => () =>
api.updateTask(task, { api.updateTask(taskBody, {
params: { params: {
task: taskId,
organization: organizationId, organization: organizationId,
task: task.id,
}, },
}), }),
'Task updated successfully', 'Task updated successfully',
'Failed to update task' 'Failed to update task'
); );
await fetchTasks();
} }
} }