97 lines
2.8 KiB
Vue
97 lines
2.8 KiB
Vue
<script setup lang="ts">
|
|
import { computed, reactive } from 'vue'
|
|
import { Link, usePage } from '@inertiajs/vue3'
|
|
import CustomSelect from '~/pages/widgets/CustomSelect.vue'
|
|
|
|
const { props } = usePage<{
|
|
component: any
|
|
types: any[]
|
|
origin: string
|
|
errors?: Record<string, string>
|
|
}>()
|
|
const { component, types, origin } = props
|
|
const errors = computed(() => props.errors || {})
|
|
|
|
const form = reactive({
|
|
id: component.id,
|
|
name: component.name,
|
|
price: component.price,
|
|
typeId: component.type.id,
|
|
purchaseDate: component.purchaseDate,
|
|
origin: origin,
|
|
})
|
|
|
|
function getErrorMessage(field: string): string | null {
|
|
return errors.value[field] || null
|
|
}
|
|
|
|
function formatDateForMySQL(date: string) {
|
|
const d = new Date(date)
|
|
const year = d.getFullYear()
|
|
const month = String(d.getMonth() + 1).padStart(2, '0')
|
|
const day = String(d.getDate()).padStart(2, '0')
|
|
form.purchase_date = `${year}-${month}-${day}`
|
|
}
|
|
</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">Edit Component</h1>
|
|
<form 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="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"
|
|
/>
|
|
</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>
|
|
|
|
<Link
|
|
:href="`/components/${form.id}`"
|
|
method="put"
|
|
:data="form"
|
|
as="button"
|
|
class="w-full md:w-auto px-4 py-2 bg-indigo-600 text-white rounded hover:bg-blue-700 transition text-center"
|
|
>
|
|
Save
|
|
</Link>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|