tethys.backend/resources/js/Pages/Admin/Role/Edit.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

112 lines
4.3 KiB
Vue

<script setup lang="ts">
import { Head, useForm } from '@inertiajs/vue3';
import { mdiAccountKey, mdiArrowLeftBoldOutline, mdiFormTextarea } 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 FormCheckRadioGroup from '@/Components/FormCheckRadioGroup.vue';
import BaseDivider from '@/Components/BaseDivider.vue';
import BaseButton from '@/Components/BaseButton.vue';
import BaseButtons from '@/Components/BaseButtons.vue';
import { stardust } from '@eidellev/adonis-stardust/client';
const props = defineProps({
role: { type: Object, default: () => ({}) },
permissions: { type: Object, default: () => ({}) },
roleHasPermissions: { type: Object, default: () => ({}) },
});
const form = useForm({
_method: 'put',
name: props.role.name,
display_name: props.role.display_name || '', // Neu hinzugefügt
description: props.role.description || '',
permissions: props.roleHasPermissions || [],
});
const submit = () => {
form.put(stardust.route('settings.role.update', [props.role.id]), {
preserveScroll: true,
});
};
/**
* Sicherer Helper für die Fehleranzeige
*/
// const formatError = (error: string | string[] | undefined) => {
// if (!error) return '';
// return Array.isArray(error) ? error.join(', ') : error;
// };
/**
* AUTOMATISCHER ERROR-CLEANER
* Löscht Fehlermeldungen sofort, wenn der User mit der Korrektur beginnt.
*/
// watch(() => ({ ...form.data() }), (newData, oldData) => {
// for (const key in newData) {
// // Vergleich via JSON.stringify für Arrays (permissions)
// if (JSON.stringify(newData[key]) !== JSON.stringify(oldData[key]) && form.errors[key]) {
// form.clearErrors(key as any);
// }
// }
// }, { deep: true });
</script>
<template>
<LayoutAuthenticated>
<Head title="Update role" />
<SectionMain>
<SectionTitleLineWithButton :icon="mdiAccountKey" title="Update role" main>
<BaseButton
:route-name="stardust.route('settings.role.index')"
:icon="mdiArrowLeftBoldOutline"
label="Back"
color="white"
rounded-full
small
/>
</SectionTitleLineWithButton>
<CardBox form @submit.prevent="submit">
<FormField label="System Name" help="Technical identifier, cannot be changed." :errors="form.errors.name">
<FormControl v-model="form.name" :error="form.errors.name" :is-read-only="true" />
</FormField>
<FormField label="Display Name" help="User-friendly name for this role." :errors="form.errors.display_name">
<FormControl v-model="form.display_name" placeholder="e.g. Administrator" :error="form.errors.display_name" />
</FormField>
<FormField label="Description" :errors="form.errors.description">
<FormControl
v-model="form.description"
:icon="mdiFormTextarea"
type="textarea"
placeholder="Role description..."
:error="form.errors.description"
/>
</FormField>
<BaseDivider />
<FormField label="Permissions" :errors="form.errors.permissions">
<FormCheckRadioGroup v-model="form.permissions" name="permissions" is-column :options="props.permissions" />
</FormField>
<template #footer>
<BaseButtons>
<BaseButton
type="submit"
color="info"
label="Update Role"
:class="{ 'opacity-25': form.processing }"
:disabled="form.processing"
/>
</BaseButtons>
</template>
</CardBox>
</SectionMain>
</LayoutAuthenticated>
</template>