Files
Kevin c4cad4f875
Build & Deploy / build (push) Successful in 32s
Build & Deploy / docker (push) Successful in 1m42s
fix: TS errors, serialize calls, unused imports, pre-commit hook
2026-07-07 20:49:52 +02:00

99 lines
3.0 KiB
Vue

<script setup lang="ts">
import { reactive } from 'vue'
import { Link } from '@adonisjs/inertia/vue'
import { useForm } from '@inertiajs/vue3'
import CustomSelect from '~/pages/widgets/CustomSelect.vue'
defineProps<{ types: any[]; errors?: Record<string, string> }>()
const form = reactive({
name: '',
price: 0,
typeId: null,
purchaseDate: new Date().toISOString().split('T')[0],
quantity: 1,
})
function submitForm() {
const inertiaForm = useForm(form)
inertiaForm.post('/components')
}
</script>
<template>
<div class="max-w-2xl mx-auto p-8 bg-white shadow-lg rounded-lg">
<h1 class="text-2xl font-semibold mb-8 text-gray-800">Create New Component</h1>
<form @submit.prevent="submitForm" class="space-y-6">
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="name">Name</label>
<input
name="name"
v-model="form.name"
class="w-full mt-2 border-gray-200 focus:border-indigo-600 focus:ring focus:ring-indigo-500/40 px-3 py-2 border rounded text-gray-700"
type="text"
/>
</div>
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="price">Price</label>
<input
name="price"
v-model.number="form.price"
class="w-full mt-2 border-gray-200 focus:border-indigo-600 focus:ring focus:ring-indigo-500/40 px-3 py-2 border rounded text-gray-700"
type="number"
step="0.01"
min="0"
/>
</div>
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="type">Type</label>
<CustomSelect
v-model="form.typeId"
:options="types"
placeholder="Choose a type"
/>
</div>
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="purchaseDate"
>Purchase Date</label
>
<input
name="purchaseDate"
v-model="form.purchaseDate"
class="w-full mt-2 border-gray-200 focus:border-indigo-600 focus:ring focus:ring-indigo-500/40 border rounded text-gray-700 px-3 py-2"
type="date"
/>
</div>
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="quantity">Quantity</label>
<input
name="quantity"
v-model.number="form.quantity"
class="w-full mt-2 border-gray-200 focus:border-indigo-600 focus:ring focus:ring-indigo-500/40 px-3 py-2 border rounded text-gray-700"
type="number"
min="1"
/>
</div>
<div class="flex gap-4">
<button
type="submit"
class="px-4 py-2 bg-indigo-600 text-white rounded hover:bg-indigo-700 transition"
>
Create
</button>
<Link
href="/components"
class="px-4 py-2 bg-gray-300 text-gray-800 rounded hover:bg-gray-400 transition"
>
Cancel
</Link>
</div>
</form>
</div>
</template>
<style scoped></style>