tethys.backend/resources/js/Pages/Admin/Project/Create.vue
Arno Kaimbacher 9368a0dd8d
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 40s
Squashed commit of the following:
commit 579f0878e5240dc17db69be1e0b0c0f5af7ef9fe
Author: Arno Kaimbacher <arno.kaimbacher@geosphere.at>
Date:   Tue Jun 9 09:25:44 2026 +0200

    feat: Refactor error handling in Dataset Edit form and improve validation messages

    - Updated error handling in the Dataset Edit form to use a centralized formatError function for displaying validation messages.
    - Enhanced user feedback by ensuring that error messages are displayed consistently across various fields.
    - Modified the validation rule for arrayContainsTypes to provide clearer error messages for missing main and translated titles/abstracts.
    - Introduced a new ValidationService to manage manual construction of validation errors.
    - Updated Vite configuration to streamline asset loading and improve performance.
    - Adjusted Inertia setup to utilize dynamic imports for page-specific assets.
    - Cleaned up unnecessary comments and code in various files for better readability.

commit 5efddc2a58c0e164fef585cc7344c06155dbc2c1
Author: Arno Kaimbacher <arno.kaimbacher@geosphere.at>
Date:   Mon Jan 12 17:02:47 2026 +0100

    feat: add dataset change detection and form submission composables

    - Implemented `useDatasetChangeDetection` for tracking unsaved changes in dataset forms, including comparisons for licenses, basic properties, files, coverage, and more.
    - Added `useDatasetFormSubmission` for handling dataset form submissions with validation, success/error handling, and auto-save functionality.
2026-06-09 09:35:15 +02:00

146 lines
No EOL
6.2 KiB
Vue

<script lang="ts" setup>
import { Head, useForm } from '@inertiajs/vue3';
import {
mdiFolderPlus,
mdiArrowLeftBoldOutline,
mdiFormTextarea,
mdiContentSave,
mdiTagOutline,
mdiText,
} from '@mdi/js';
import LayoutAuthenticated from '@/Layouts/LayoutAuthenticated.vue';
import SectionMain from '@/Components/SectionMain.vue';
import SectionTitleLineWithButton from '@/Components/SectionTitleLineWithButton.vue';
import CardBox from '@/Components/CardBox.vue';
import FormField from '@/Components/FormField.vue';
import FormControl from '@/Components/FormControl.vue';
import BaseButton from '@/Components/BaseButton.vue';
import BaseButtons from '@/Components/BaseButtons.vue';
import { stardust } from '@eidellev/adonis-stardust/client';
const form = useForm({
label: '',
name: '',
description: '',
});
const submit = async () => {
await form.post(stardust.route('settings.project.store'));
};
</script>
<template>
<LayoutAuthenticated>
<Head title="Create New Project" />
<SectionMain>
<SectionTitleLineWithButton :icon="mdiFolderPlus" title="Create New Project" main>
<BaseButton
:route-name="stardust.route('settings.project.index')"
:icon="mdiArrowLeftBoldOutline"
label="Back"
color="white"
rounded-full
small
/>
</SectionTitleLineWithButton>
<CardBox form @submit.prevent="submit()" class="relative overflow-hidden shadow-lg">
<!-- Subtle accent bar -->
<div class="absolute inset-x-0 top-0 h-1 bg-gradient-to-r from-blue-500 via-indigo-500 to-blue-500"></div>
<div class="grid grid-cols-1 gap-7 pt-2">
<!-- Label -->
<FormField
label="Label"
help="Lowercase letters, numbers, and hyphens only"
:errors="form.errors.label"
>
<FormControl
v-model="form.label"
:icon="mdiTagOutline"
type="text"
placeholder="e.g., my-awesome-project"
required
class="font-mono transition-all duration-200 focus-within:ring-2 focus-within:ring-blue-500/40"
/>
</FormField>
<!-- Name -->
<FormField
label="Name"
help="Required. Project title shown to users"
:errors="form.errors.name"
>
<FormControl
v-model="form.name"
:icon="mdiText"
type="text"
placeholder="Enter a descriptive title..."
required
class="transition-all duration-200 focus-within:ring-2 focus-within:ring-blue-500/40"
/>
</FormField>
<!-- Description -->
<FormField
label="Description"
help="Optional. Detailed description of the project"
:errors="form.errors.description"
>
<FormControl
v-model="form.description"
:icon="mdiFormTextarea"
name="description"
type="textarea"
placeholder="Describe what this project is about..."
class="transition-all duration-200 focus-within:ring-2 focus-within:ring-blue-500/40"
/>
</FormField>
</div>
<template #footer>
<BaseButtons class="justify-between">
<BaseButton
:route-name="stardust.route('settings.project.index')"
label="Cancel"
color="white"
outline
/>
<BaseButton
type="submit"
color="info"
:icon="mdiContentSave"
label="Create Project"
:class="{ 'opacity-25': form.processing }"
:disabled="form.processing"
class="transition-all hover:shadow-lg hover:-translate-y-0.5"
/>
</BaseButtons>
</template>
</CardBox>
<!-- Helper Card -->
<CardBox
class="mt-6 bg-gradient-to-br from-blue-50 to-indigo-50 dark:from-slate-800 dark:to-slate-900 border-l-4 border-blue-500"
>
<div class="flex items-start gap-4">
<div class="flex-shrink-0">
<div
class="w-10 h-10 rounded-full bg-blue-500 dark:bg-blue-600 flex items-center justify-center shadow-md shadow-blue-500/30"
>
<span class="text-white text-lg">💡</span>
</div>
</div>
<div class="flex-1">
<h3 class="text-sm font-semibold text-gray-900 dark:text-white mb-2">Quick Tips</h3>
<ul class="text-sm text-gray-700 dark:text-gray-300 space-y-1">
<li> <strong>Label</strong> is a technical identifier (use lowercase and hyphens)</li>
<li> <strong>Name</strong> is what users will see in the interface short title</li>
<li> <strong>Description</strong> helps team members understand the project's purpose</li>
</ul>
</div>
</div>
</CardBox>
</SectionMain>
</LayoutAuthenticated>
</template>