All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 40s
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.
123 lines
4.5 KiB
TypeScript
123 lines
4.5 KiB
TypeScript
import { defineConfig } from '@adonisjs/core/app';
|
|
|
|
export default defineConfig({
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Commands
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| List of ace commands to register from packages. The application commands
|
|
| will be scanned automatically from the "./commands" directory.
|
|
|
|
*/
|
|
commands: [
|
|
() => import('@adonisjs/core/commands'),
|
|
() => import('@adonisjs/lucid/commands'),
|
|
() => import('@adonisjs/mail/commands')
|
|
],
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Preloads
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| List of modules to import before starting the application.
|
|
|
|
|
*/
|
|
preloads: [
|
|
() => import('./start/routes.js'),
|
|
() => import('./start/kernel.js'),
|
|
() => import('#start/validator'),
|
|
// () => import('#start/rules/unique'),
|
|
// () => import('#start/rules/translated_language'),
|
|
// () => import('#start/rules/unique_person'),
|
|
// // () => import('#start/rules/file_length'),
|
|
// // () => import('#start/rules/file_scan'),
|
|
// // () => import('#start/rules/allowed_extensions_mimetypes'),
|
|
// () => import('#start/rules/dependent_array_min_length'),
|
|
// () => import('#start/rules/referenceValidation'),
|
|
// () => import('#start/rules/valid_mimetype'),
|
|
// () => import('#start/rules/array_contains_types'),
|
|
// () => import('#start/rules/orcid'),
|
|
],
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Service providers
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| List of service providers to import and register when booting the
|
|
| application
|
|
|
|
|
*/
|
|
providers: [
|
|
// () => import('./providers/AppProvider.js'),
|
|
() => import('@adonisjs/core/providers/app_provider'),
|
|
() => import('@adonisjs/core/providers/hash_provider'),
|
|
{
|
|
file: () => import('@adonisjs/core/providers/repl_provider'),
|
|
environment: ['repl', 'test'],
|
|
},
|
|
() => import('@adonisjs/session/session_provider'),
|
|
() => import('@adonisjs/core/providers/edge_provider'),
|
|
() => import('@adonisjs/shield/shield_provider'),
|
|
// () => import('@eidellev/inertia-adonisjs'),
|
|
// () => import('@adonisjs/inertia/inertia_provider'),
|
|
() => import('#providers/app_provider'),
|
|
// () => import('#providers/inertia_provider'),
|
|
() => import('@adonisjs/inertia/inertia_provider'),
|
|
() => import('@adonisjs/lucid/database_provider'),
|
|
() => import('@adonisjs/auth/auth_provider'),
|
|
// () => import('@eidellev/adonis-stardust'),
|
|
() => import('@adonisjs/redis/redis_provider'),
|
|
// () => import('@adonisjs/encore/encore_provider'),
|
|
() => import('@adonisjs/static/static_provider'),
|
|
() => import('#providers/stardust_provider'),
|
|
() => import('#providers/query_builder_provider'),
|
|
() => import('#providers/token_worker_provider'),
|
|
() => import('#providers/rule_provider'),
|
|
// () => import('#providers/drive/provider/drive_provider'),
|
|
() => import('@adonisjs/drive/drive_provider'),
|
|
// () => import('@adonisjs/core/providers/vinejs_provider'),
|
|
() => import('#providers/vinejs_provider'),
|
|
() => import('@adonisjs/mail/mail_provider'),
|
|
() => import('@adonisjs/vite/vite_provider'),
|
|
],
|
|
metaFiles: [
|
|
{
|
|
pattern: 'public/**',
|
|
reloadServer: false,
|
|
},
|
|
{
|
|
pattern: 'resources/views/**/*.edge',
|
|
reloadServer: false,
|
|
},
|
|
],
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Tests
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| List of test suites to organize tests by their type. Feel free to remove
|
|
| and add additional suites.
|
|
|
|
|
*/
|
|
tests: {
|
|
suites: [
|
|
{
|
|
files: ['tests/unit/**/*.spec(.ts|.js)'],
|
|
name: 'unit',
|
|
timeout: 2000,
|
|
},
|
|
{
|
|
files: ['tests/functional/**/*.spec(.ts|.js)'],
|
|
name: 'functional',
|
|
timeout: 30000,
|
|
},
|
|
],
|
|
forceExit: false,
|
|
},
|
|
assetsBundler: false,
|
|
hooks: {
|
|
onBuildStarting: [() => import('@adonisjs/vite/build_hook')],
|
|
},
|
|
// assetsBundler: false
|
|
});
|