Dev branch

This commit is contained in:
Simon Pocrnjič
2025-11-02 12:31:01 +01:00
parent 5f879c9436
commit 63e0958b66
241 changed files with 17686 additions and 7327 deletions
@@ -1,10 +1,11 @@
<script setup>
import DialogModal from '@/Components/DialogModal.vue'
import InputLabel from '@/Components/InputLabel.vue'
import TextInput from '@/Components/TextInput.vue'
import CreateDialog from '@/Components/Dialogs/CreateDialog.vue'
import PrimaryButton from '@/Components/PrimaryButton.vue'
import SectionTitle from '@/Components/SectionTitle.vue'
import { useForm } from '@inertiajs/vue3'
import { Label } from "@/Components/ui/label";
import { Input } from "@/Components/ui/input";
import { Textarea } from "@/Components/ui/textarea";
const props = defineProps({
show: { type: Boolean, default: false },
@@ -36,35 +37,75 @@ const submit = () => {
</script>
<template>
<DialogModal :show="show" @close="close">
<template #title>Dodaj premet</template>
<template #content>
<form @submit.prevent="submit">
<CreateDialog
:show="show"
title="Dodaj premet"
confirm-text="Shrani"
:processing="form.processing"
@close="close"
@confirm="submit"
>
<form @submit.prevent="submit">
<SectionTitle class="mt-2 border-b mb-4">
<template #title>Premet</template>
</SectionTitle>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div>
<InputLabel for="objRef" value="Referenca" />
<TextInput id="objRef" v-model="form.reference" type="text" class="mt-1 block w-full" />
<div class="space-y-4">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div class="space-y-2">
<Label for="objRef">Referenca</Label>
<Input
id="objRef"
v-model="form.reference"
type="text"
placeholder="Referenca"
/>
<p v-if="form.errors.reference" class="text-sm text-red-600">
{{ form.errors.reference }}
</p>
</div>
<div class="space-y-2">
<Label for="objType">Tip</Label>
<Input
id="objType"
v-model="form.type"
type="text"
placeholder="Tip"
/>
<p v-if="form.errors.type" class="text-sm text-red-600">
{{ form.errors.type }}
</p>
</div>
</div>
<div>
<InputLabel for="objType" value="Tip" />
<TextInput id="objType" v-model="form.type" type="text" class="mt-1 block w-full" />
<div class="space-y-2">
<Label for="objName">Naziv</Label>
<Input
id="objName"
v-model="form.name"
type="text"
placeholder="Naziv"
required
/>
<p v-if="form.errors.name" class="text-sm text-red-600">
{{ form.errors.name }}
</p>
</div>
</div>
<div class="mt-4">
<InputLabel for="objName" value="Naziv" />
<TextInput id="objName" v-model="form.name" type="text" class="mt-1 block w-full" required />
</div>
<div class="mt-4">
<InputLabel for="objDesc" value="Opis" />
<textarea id="objDesc" v-model="form.description" class="mt-1 block w-full border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm" rows="3" />
</div>
<div class="flex justify-end mt-6">
<PrimaryButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing">Shrani</PrimaryButton>
<div class="space-y-2">
<Label for="objDesc">Opis</Label>
<Textarea
id="objDesc"
v-model="form.description"
rows="3"
placeholder="Opis"
/>
<p v-if="form.errors.description" class="text-sm text-red-600">
{{ form.errors.description }}
</p>
</div>
</div>
</form>
</template>
</DialogModal>
</CreateDialog>
</template>