mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
3c9159f2d4
Field cleanup; improve estimated time UX
80 lines
2.6 KiB
Vue
80 lines
2.6 KiB
Vue
<script setup lang="ts">
|
|
import TextInput from '@/packages/ui/src/Input/TextInput.vue';
|
|
import SecondaryButton from '@/packages/ui/src/Buttons/SecondaryButton.vue';
|
|
import DialogModal from '@/packages/ui/src/DialogModal.vue';
|
|
import { ref } from 'vue';
|
|
import PrimaryButton from '@/packages/ui/src/Buttons/PrimaryButton.vue';
|
|
import { useFocus } from '@vueuse/core';
|
|
import { useTasksStore } from '@/utils/useTasks';
|
|
import type { Task, UpdateTaskBody } from '@/packages/api/src';
|
|
import EstimatedTimeSection from '@/packages/ui/src/EstimatedTimeSection.vue';
|
|
import { isAllowedToPerformPremiumAction } from '@/utils/billing';
|
|
import { Field, FieldGroup, FieldLabel } from '@/packages/ui/src/field';
|
|
|
|
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,
|
|
estimated_time: props.task.estimated_time,
|
|
});
|
|
|
|
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> Update Task </span>
|
|
</div>
|
|
</template>
|
|
|
|
<template #content>
|
|
<FieldGroup>
|
|
<Field>
|
|
<FieldLabel for="taskName">Task name</FieldLabel>
|
|
<TextInput
|
|
id="taskName"
|
|
ref="taskNameInput"
|
|
v-model="taskBody.name"
|
|
type="text"
|
|
placeholder="Task Name"
|
|
class="block w-full"
|
|
required
|
|
autocomplete="taskName"
|
|
@keydown.enter="submit()" />
|
|
</Field>
|
|
<EstimatedTimeSection
|
|
v-if="isAllowedToPerformPremiumAction()"
|
|
v-model="taskBody.estimated_time"
|
|
@submit="submit()"></EstimatedTimeSection>
|
|
</FieldGroup>
|
|
</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>
|