216 lines
5.4 KiB
Vue
216 lines
5.4 KiB
Vue
<script setup>
|
|
import HistoryDisplay from "~/components/HistoryDisplay.vue";
|
|
import DocumentList from "~/components/DocumentList.vue";
|
|
import DocumentUpload from "~/components/DocumentUpload.vue";
|
|
import Toolbar from "~/components/Toolbar.vue";
|
|
|
|
definePageMeta({
|
|
middleware: "auth"
|
|
})
|
|
|
|
const dataStore = useDataStore()
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const toast = useToast()
|
|
const id = ref(route.params.id ? route.params.id : null )
|
|
|
|
const editor = useEditor({
|
|
content: "<p>Hier kann deine Projektdokumentation stehen</p>",
|
|
extensions: [TiptapStarterKit],
|
|
});
|
|
|
|
let currentItem = ref(null)
|
|
|
|
//Working
|
|
const mode = ref(route.params.mode || "show")
|
|
const itemInfo = ref({})
|
|
|
|
const tabItems = [
|
|
{
|
|
label: "Informationen"
|
|
},{
|
|
label: "Logbuch"
|
|
},{
|
|
label: "Projekte"
|
|
},{
|
|
label: "Aufgaben"
|
|
},{
|
|
label: "Dokumente"
|
|
},{
|
|
label: "Dokumentation"
|
|
}
|
|
]
|
|
|
|
//Functions
|
|
const setupPage = () => {
|
|
if(mode.value === "show" || mode.value === "edit"){
|
|
currentItem.value = dataStore.getPlantById(Number(useRoute().params.id))
|
|
}
|
|
|
|
if(mode.value === "edit") itemInfo.value = currentItem.value
|
|
|
|
if(mode.value === "create") {
|
|
let query = route.query
|
|
if(query.customer) itemInfo.value.customer = Number(query.customer)
|
|
}
|
|
}
|
|
|
|
const cancelEditorCreate = () => {
|
|
if(currentItem.value) {
|
|
router.push(`/plants/show/${currentItem.value.id}`)
|
|
} else {
|
|
router.push(`/plants`)
|
|
}
|
|
|
|
}
|
|
|
|
setupPage()
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardNavbar :title="currentItem ? currentItem.name : (mode === 'create' ? 'Objekt erstellen' : 'Objekt bearbeiten')">
|
|
<template #right>
|
|
<UButton
|
|
v-if="mode === 'edit'"
|
|
@click="dataStore.updateItem('plants',itemInfo)"
|
|
>
|
|
Speichern
|
|
</UButton>
|
|
<UButton
|
|
v-else-if="mode === 'create'"
|
|
@click="dataStore.createNewItem('plants',itemInfo)"
|
|
>
|
|
Erstellen
|
|
</UButton>
|
|
<UButton
|
|
@click="cancelEditorCreate"
|
|
color="red"
|
|
class="ml-2"
|
|
v-if="mode === 'edit' || mode === 'create'"
|
|
>
|
|
Abbrechen
|
|
</UButton>
|
|
<UButton
|
|
v-if="mode === 'show'"
|
|
@click="router.push(`/plants/edit/${currentItem.id}`)"
|
|
>
|
|
Bearbeiten
|
|
</UButton>
|
|
</template>
|
|
</UDashboardNavbar>
|
|
|
|
<UTabs
|
|
:items="tabItems"
|
|
v-if="mode === 'show'"
|
|
class="p-5"
|
|
>
|
|
<template #item="{item}">
|
|
<UCard class="mt-5">
|
|
<div v-if="item.label === 'Informationen'">
|
|
<div class="text-wrap">
|
|
<p>Kunde: <nuxt-link :to="`/customers/show/${currentItem.customer}`">{{dataStore.getCustomerById(currentItem.customer).name}}</nuxt-link></p>
|
|
</div>
|
|
|
|
</div>
|
|
<div v-else-if="item.label === 'Logbuch'">
|
|
<HistoryDisplay
|
|
type="plant"
|
|
v-if="currentItem"
|
|
:element-id="currentItem.id"
|
|
/>
|
|
</div>
|
|
<div v-else-if="item.label === 'Projekte'">
|
|
<Toolbar>
|
|
<UButton
|
|
@click="router.push(`/projects/create?plant=${currentItem.id}`)"
|
|
>
|
|
+ Projekt
|
|
</UButton>
|
|
</Toolbar>
|
|
|
|
<UTable
|
|
:rows="dataStore.getProjectsByPlantId(currentItem.id)"
|
|
:columns="[{key: 'name', label: 'Name'}]"
|
|
@select="(row) => router.push(`/projects/show/${row.id}`)"
|
|
:empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine zugehörigen Projekte' }"
|
|
>
|
|
|
|
</UTable>
|
|
|
|
</div>
|
|
<div v-else-if="item.label === 'Aufgaben'">
|
|
<Toolbar>
|
|
<UButton
|
|
@click="router.push(`/tasks/create?plant=${currentItem.id}`)"
|
|
>
|
|
+ Aufgabe
|
|
</UButton>
|
|
</Toolbar>
|
|
<UTable
|
|
:rows="dataStore.getTasksByPlantId(currentItem.id)"
|
|
:empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine zugehörigen Aufgaben' }"
|
|
:columns="[{key: 'name', label: 'Name'},{key: 'categore', label: 'Kategorie'}]"
|
|
@select="(row) => router.push(`/tasks/show/${row.id}`)"
|
|
>
|
|
|
|
</UTable>
|
|
</div>
|
|
<div v-else-if="item.label === 'Dokumente'" class="space-y-3">
|
|
<Toolbar>
|
|
<DocumentUpload
|
|
type="plant"
|
|
:element-id="currentItem.id"
|
|
/>
|
|
</Toolbar>
|
|
|
|
<DocumentList :documents="dataStore.getDocumentsByPlantId(currentItem.id)"/>
|
|
|
|
</div>
|
|
<div v-if="item.label === 'Dokumentation'">
|
|
|
|
<Editor/>
|
|
|
|
</div>
|
|
</UCard>
|
|
|
|
</template>
|
|
</UTabs>
|
|
|
|
<div v-if="currentItem && mode == 'show'">
|
|
|
|
</div>
|
|
|
|
<UForm
|
|
v-else-if="mode === 'edit' || mode === 'create'"
|
|
class="p-5"
|
|
>
|
|
<UFormGroup
|
|
label="Name:"
|
|
>
|
|
<UInput
|
|
v-model="itemInfo.name"
|
|
/>
|
|
</UFormGroup>
|
|
|
|
<UFormGroup
|
|
label="Kundennummer:"
|
|
>
|
|
<USelectMenu
|
|
v-model="itemInfo.customer"
|
|
:options="dataStore.customers"
|
|
option-attribute="name"
|
|
value-attribute="id"
|
|
searchable
|
|
:search-attributes="['name']"
|
|
>
|
|
<template #label>
|
|
{{dataStore.customers.find(customer => customer.id === itemInfo.customer) ? dataStore.customers.find(customer => customer.id === itemInfo.customer).name : "Kunde auswählen"}}
|
|
</template>
|
|
</USelectMenu>
|
|
</UFormGroup>
|
|
</UForm>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |