Some checks failed
build.yaml / feat: Implement project management functionality with CRUD operations and UI integration (push) Failing after 0s
feat: Implement project management functionality with CRUD operations and UI integration - added projects_controller.ts for crud operations- added views Edit-vue , Index.vue and Create.vue - small adaptions in menu.ts additional routes is start/routes.ts for projects
154 lines
No EOL
6.6 KiB
Vue
154 lines
No EOL
6.6 KiB
Vue
<script lang="ts" setup>
|
|
import { Head, useForm } from '@inertiajs/vue3';
|
|
import { mdiFolderEdit, mdiArrowLeftBoldOutline, mdiFormTextarea, mdiContentSave } 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 props = defineProps({
|
|
project: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
const form = useForm({
|
|
label: props.project.label,
|
|
name: props.project.name,
|
|
description: props.project.description,
|
|
});
|
|
|
|
const submit = async () => {
|
|
await form.put(stardust.route('settings.project.update', [props.project.id]));
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<LayoutAuthenticated>
|
|
<Head :title="`Edit ${project.label}`" />
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton :icon="mdiFolderEdit" :title="`Edit: ${project.label}`" 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="shadow-lg">
|
|
<div class="grid grid-cols-1 gap-6">
|
|
<FormField
|
|
label="Label"
|
|
help="Project label (read-only)"
|
|
>
|
|
<FormControl
|
|
v-model="form.label"
|
|
type="text"
|
|
:is-read-only=true
|
|
class="bg-gray-100 dark:bg-slate-800 cursor-not-allowed opacity-75"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Name"
|
|
help="Required. Project identifier (slug)"
|
|
:class="{ 'text-red-400': form.errors.name }"
|
|
>
|
|
<FormControl
|
|
v-model="form.name"
|
|
type="text"
|
|
placeholder="Enter Name"
|
|
required
|
|
:error="form.errors.name"
|
|
class="font-mono transition-all focus:ring-2 focus:ring-blue-500"
|
|
>
|
|
<div class="text-red-400 text-sm mt-1" v-if="form.errors.name">
|
|
{{ form.errors.name }}
|
|
</div>
|
|
</FormControl>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Description"
|
|
help="Optional. Detailed description of the project"
|
|
:class="{ 'text-red-400': form.errors.description }"
|
|
>
|
|
<FormControl
|
|
v-model="form.description"
|
|
:icon="mdiFormTextarea"
|
|
name="description"
|
|
type="textarea"
|
|
placeholder="Enter project description..."
|
|
:error="form.errors.description"
|
|
class="transition-all focus:ring-2 focus:ring-blue-500"
|
|
>
|
|
<div class="text-red-400 text-sm mt-1" v-if="form.errors.description">
|
|
{{ form.errors.description }}
|
|
</div>
|
|
</FormControl>
|
|
</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="Save Changes"
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing"
|
|
class="transition-all hover:shadow-lg"
|
|
/>
|
|
</BaseButtons>
|
|
</template>
|
|
</CardBox>
|
|
|
|
<!-- Project Info Card -->
|
|
<CardBox class="mt-6 bg-gradient-to-br from-gray-50 to-gray-100 dark:from-slate-800 dark:to-slate-900">
|
|
<div class="flex items-start gap-4">
|
|
<div class="flex-shrink-0">
|
|
<div class="w-12 h-12 rounded-lg bg-blue-500 dark:bg-blue-600 flex items-center justify-center">
|
|
<span class="text-white text-xl font-bold">
|
|
{{ project.label.charAt(0).toUpperCase() }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="flex-1 min-w-0">
|
|
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-1">
|
|
{{ project.label }}
|
|
</h3>
|
|
<p class="text-sm font-mono text-gray-600 dark:text-gray-400 mb-2">
|
|
{{ project.name }}
|
|
</p>
|
|
<div class="flex items-center gap-4 text-xs text-gray-500 dark:text-gray-500">
|
|
<span>
|
|
<span class="font-medium">Created:</span>
|
|
{{ new Date(project.created_at).toLocaleDateString() }}
|
|
</span>
|
|
<span>
|
|
<span class="font-medium">Updated:</span>
|
|
{{ new Date(project.updated_at).toLocaleDateString() }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</LayoutAuthenticated>
|
|
</template> |