mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
137 lines
5.2 KiB
Vue
137 lines
5.2 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 { computed, ref } from 'vue';
|
|
import type { CreateClientBody, CreateProjectBody, Project } from '@/packages/api/src';
|
|
import { getRandomColor } from '@/packages/ui/src/utils/color';
|
|
import PrimaryButton from '@/packages/ui/src/Buttons/PrimaryButton.vue';
|
|
import { useFocus } from '@vueuse/core';
|
|
import ClientDropdown from '@/packages/ui/src/Client/ClientDropdown.vue';
|
|
import ProjectColorSelector from '@/packages/ui/src/Project/ProjectColorSelector.vue';
|
|
import { Button } from '@/packages/ui/src/Buttons';
|
|
import { ChevronDown } from 'lucide-vue-next';
|
|
import { UserCircleIcon } from '@heroicons/vue/20/solid';
|
|
import EstimatedTimeSection from '@/packages/ui/src/EstimatedTimeSection.vue';
|
|
import { Field, FieldGroup, FieldLabel } from '../field';
|
|
import ProjectEditBillableSection from '@/packages/ui/src/Project/ProjectEditBillableSection.vue';
|
|
import type { Client } from '@/packages/api/src';
|
|
|
|
const show = defineModel('show', { default: false });
|
|
const saving = ref(false);
|
|
|
|
const props = defineProps<{
|
|
clients: Client[];
|
|
createProject: (project: CreateProjectBody) => Promise<Project | undefined>;
|
|
createClient: (client: CreateClientBody) => Promise<Client | undefined>;
|
|
currency: string;
|
|
enableEstimatedTime: boolean;
|
|
}>();
|
|
|
|
const activeClients = computed(() => {
|
|
return props.clients.filter((client) => !client.is_archived);
|
|
});
|
|
|
|
const project = ref<CreateProjectBody>({
|
|
name: '',
|
|
color: getRandomColor(),
|
|
client_id: null,
|
|
billable_rate: null,
|
|
is_billable: false,
|
|
estimated_time: null,
|
|
});
|
|
|
|
async function submit() {
|
|
await props.createProject(project.value);
|
|
show.value = false;
|
|
project.value = {
|
|
name: '',
|
|
color: getRandomColor(),
|
|
client_id: null,
|
|
billable_rate: null,
|
|
is_billable: false,
|
|
estimated_time: null,
|
|
};
|
|
}
|
|
|
|
const projectNameInput = ref<HTMLInputElement | null>(null);
|
|
|
|
useFocus(projectNameInput, { initialValue: true });
|
|
|
|
const currentClientName = computed(() => {
|
|
if (project.value.client_id) {
|
|
return props.clients.find((client) => client.id === project.value.client_id)?.name;
|
|
}
|
|
return 'No Client';
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<DialogModal closeable :show="show" @close="show = false">
|
|
<template #title>
|
|
<div class="flex space-x-2">
|
|
<span> Create Project </span>
|
|
</div>
|
|
</template>
|
|
|
|
<template #content>
|
|
<FieldGroup>
|
|
<FieldGroup class="flex-row items-end">
|
|
<Field class="w-auto text-center">
|
|
<FieldLabel for="color">Color</FieldLabel>
|
|
<ProjectColorSelector v-model="project.color"></ProjectColorSelector>
|
|
</Field>
|
|
<Field class="w-full">
|
|
<FieldLabel for="projectName">Project name</FieldLabel>
|
|
<TextInput
|
|
id="projectName"
|
|
ref="projectNameInput"
|
|
v-model="project.name"
|
|
name="projectName"
|
|
type="text"
|
|
placeholder="The next big thing"
|
|
class="block w-full"
|
|
required
|
|
autocomplete="projectName"
|
|
@keydown.enter="submit()" />
|
|
</Field>
|
|
</FieldGroup>
|
|
<Field>
|
|
<FieldLabel for="client" :icon="UserCircleIcon">Client</FieldLabel>
|
|
<ClientDropdown
|
|
v-model="project.client_id"
|
|
:create-client="createClient"
|
|
:clients="activeClients">
|
|
<template #trigger>
|
|
<Button variant="input" class="w-full justify-between">
|
|
<span class="truncate">{{ currentClientName }}</span>
|
|
<ChevronDown class="w-4 h-4 text-icon-default" />
|
|
</Button>
|
|
</template>
|
|
</ClientDropdown>
|
|
</Field>
|
|
<ProjectEditBillableSection
|
|
v-model:is-billable="project.is_billable"
|
|
v-model:billable-rate="project.billable_rate"
|
|
:currency="currency"></ProjectEditBillableSection>
|
|
<EstimatedTimeSection
|
|
v-if="enableEstimatedTime"
|
|
v-model="project.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">
|
|
Create Project
|
|
</PrimaryButton>
|
|
</template>
|
|
</DialogModal>
|
|
</template>
|
|
|
|
<style scoped></style>
|