All checks were successful
Gitea Actions Demo / build-and-push (push) Successful in 46s
146 lines
3.8 KiB
Vue
146 lines
3.8 KiB
Vue
<template>
|
|
<div class="view">
|
|
<EntityEditForm
|
|
entityLabel="Child"
|
|
:fields="fields"
|
|
:initialData="initialData"
|
|
:isEdit="isEdit"
|
|
:loading="loading"
|
|
:error="error"
|
|
@submit="handleSubmit"
|
|
@cancel="handleCancel"
|
|
@add-image="handleAddImage"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, onMounted, computed, nextTick } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import EntityEditForm from '../shared/EntityEditForm.vue'
|
|
import '@/assets/styles.css'
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const props = defineProps<{ id?: string }>()
|
|
const isEdit = computed(() => !!props.id)
|
|
|
|
const fields = [
|
|
{ name: 'name', label: 'Name', type: 'text', required: true, maxlength: 64 },
|
|
{ name: 'age', label: 'Age', type: 'number', required: true, min: 0, max: 120 },
|
|
{ name: 'image_id', label: 'Image', type: 'image', imageType: 1 },
|
|
]
|
|
|
|
const initialData = ref({ name: '', age: null, image_id: null })
|
|
const localImageFile = ref<File | null>(null)
|
|
const loading = ref(false)
|
|
const error = ref<string | null>(null)
|
|
|
|
onMounted(async () => {
|
|
if (isEdit.value && props.id) {
|
|
loading.value = true
|
|
try {
|
|
const resp = await fetch(`/api/child/${props.id}`)
|
|
if (!resp.ok) throw new Error('Failed to load child')
|
|
const data = await resp.json()
|
|
initialData.value = {
|
|
name: data.name ?? '',
|
|
age: Number(data.age) ?? null,
|
|
image_id: data.image_id ?? null,
|
|
}
|
|
} catch (e) {
|
|
error.value = 'Could not load child.'
|
|
} finally {
|
|
loading.value = false
|
|
await nextTick()
|
|
}
|
|
}
|
|
})
|
|
|
|
function handleAddImage({ id, file }: { id: string; file: File }) {
|
|
if (id === 'local-upload') {
|
|
localImageFile.value = file
|
|
}
|
|
}
|
|
|
|
async function handleSubmit(form: any) {
|
|
let imageId = form.image_id
|
|
error.value = null
|
|
if (!form.name.trim()) {
|
|
error.value = 'Child name is required.'
|
|
return
|
|
}
|
|
if (form.age === null || form.age < 0) {
|
|
error.value = 'Age must be a non-negative number.'
|
|
return
|
|
}
|
|
loading.value = true
|
|
|
|
// If the selected image is a local upload, upload it first
|
|
if (imageId === 'local-upload' && localImageFile.value) {
|
|
const formData = new FormData()
|
|
formData.append('file', localImageFile.value)
|
|
formData.append('type', '1')
|
|
formData.append('permanent', 'false')
|
|
try {
|
|
const resp = await fetch('/api/image/upload', {
|
|
method: 'POST',
|
|
body: formData,
|
|
})
|
|
if (!resp.ok) throw new Error('Image upload failed')
|
|
const data = await resp.json()
|
|
imageId = data.id
|
|
} catch (err) {
|
|
error.value = 'Failed to upload image.'
|
|
loading.value = false
|
|
return
|
|
}
|
|
}
|
|
|
|
// Now update or create the child
|
|
try {
|
|
let resp
|
|
if (isEdit.value && props.id) {
|
|
resp = await fetch(`/api/child/${props.id}/edit`, {
|
|
method: 'PUT',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({
|
|
name: form.name,
|
|
age: form.age,
|
|
image_id: imageId,
|
|
}),
|
|
})
|
|
} else {
|
|
resp = await fetch('/api/child/add', {
|
|
method: 'PUT',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({
|
|
name: form.name,
|
|
age: form.age,
|
|
image_id: imageId,
|
|
}),
|
|
})
|
|
}
|
|
if (!resp.ok) throw new Error('Failed to save child')
|
|
await router.push({ name: 'ParentChildrenListView' })
|
|
} catch (err) {
|
|
error.value = 'Failed to save child.'
|
|
}
|
|
loading.value = false
|
|
}
|
|
|
|
function handleCancel() {
|
|
router.back()
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.view {
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
background: var(--form-bg);
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 24px var(--form-shadow);
|
|
padding: 2rem 2.2rem 1.5rem 2.2rem;
|
|
}
|
|
</style>
|