mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
76 lines
2.4 KiB
Vue
76 lines
2.4 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 ProjectDropdown from '@/Components/Common/Project/ProjectDropdown.vue';
|
|
|
|
const { createTask } = useTasksStore();
|
|
const show = defineModel('show', { default: false });
|
|
const saving = ref(false);
|
|
|
|
const taskName = ref('');
|
|
|
|
const props = defineProps<{
|
|
projectId: string;
|
|
}>();
|
|
|
|
async function submit() {
|
|
await createTask({
|
|
name: taskName.value,
|
|
project_id: props.projectId,
|
|
});
|
|
show.value = false;
|
|
taskName.value = '';
|
|
}
|
|
|
|
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="taskName"
|
|
type="text"
|
|
placeholder="Task Name"
|
|
@keydown.enter="submit()"
|
|
class="mt-1 block w-full"
|
|
required
|
|
autocomplete="taskName" />
|
|
</div>
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<ProjectDropdown :modelValue="projectId"></ProjectDropdown>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<SecondaryButton @click="show = false"> Cancel </SecondaryButton>
|
|
<PrimaryButton
|
|
class="ms-3"
|
|
:class="{ 'opacity-25': saving }"
|
|
:disabled="saving"
|
|
@click="submit">
|
|
Create Task
|
|
</PrimaryButton>
|
|
</template>
|
|
</DialogModal>
|
|
</template>
|
|
|
|
<style scoped></style>
|