[management] Improved eventtypes management

This commit is contained in:
Ferdinand Thiessen 2021-11-13 14:51:56 +01:00
parent e0176c57e1
commit 3db6e0d2d1
1 changed files with 61 additions and 28 deletions

View File

@ -1,16 +1,16 @@
<template> <template>
<div> <div>
<q-dialog v-model="edittype"> <q-dialog v-model="dialogOpen">
<q-card> <q-card>
<q-card-section> <q-card-section>
<div class="text-h6">Editere Diensttyp {{ actualEvent.name }}</div> <div class="text-h6">Editere Diensttyp {{ actualEvent.name }}</div>
</q-card-section> </q-card-section>
<q-card-section> <q-card-section>
<q-input v-model="newEventName" dense label="name" filled /> <q-input v-model="newEventName" :rules="rules" ref="dialogInput" dense label="name" filled />
</q-card-section> </q-card-section>
<q-card-actions> <q-card-actions>
<q-btn flat color="danger" label="Abbrechen" @click="discardChanges()" /> <q-btn flat color="danger" label="Abbrechen" @click="discardChanges()" />
<q-btn flat color="primary" label="Speichern" @click="saveChanges()" /> <q-btn flat color="primary" label="Speichern" :disable="!!dialogInput && !dialogInput.validate()" @click="saveChanges()" />
</q-card-actions> </q-card-actions>
</q-card> </q-card>
</q-dialog> </q-dialog>
@ -19,10 +19,17 @@
<q-card-section> <q-card-section>
<q-table title="Veranstaltungstypen" :rows="rows" row-key="jobid" :columns="columns"> <q-table title="Veranstaltungstypen" :rows="rows" row-key="jobid" :columns="columns">
<template #top-right> <template #top-right>
<q-input v-model="newEventType" dense placeholder="Neuer Typ" /> <q-input
v-model="newEventType"
<div></div> ref="input"
<q-btn color="primary" icon="mdi-plus" label="Hinzufügen" @click="addType" /> :rules="rules"
dense
placeholder="Neuer Typ"
>
<slot name="after"
><q-btn color="primary" icon="mdi-plus" title="Hinzufügen" @click="addType"
/></slot>
</q-input>
</template> </template>
<template #body-cell-actions="props"> <template #body-cell-actions="props">
<!-- <q-btn :label="item"> --> <!-- <q-btn :label="item"> -->
@ -43,8 +50,10 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { isAxiosError } from '@flaschengeist/api';
import { defineComponent, ref, computed, onBeforeMount } from 'vue'; import { defineComponent, ref, computed, onBeforeMount } from 'vue';
import { useScheduleStore } from '../../store'; import { useScheduleStore } from '../../store';
import { Notify, QInput } from 'quasar';
export default defineComponent({ export default defineComponent({
name: 'EventTypes', name: 'EventTypes',
@ -52,15 +61,24 @@ export default defineComponent({
setup() { setup() {
const store = useScheduleStore(); const store = useScheduleStore();
const newEventType = ref(''); const newEventType = ref('');
const edittype = ref(false); const dialogOpen = ref(false);
const emptyEvent: FG.EventType = { id: -1, name: '' }; const emptyEvent: FG.EventType = { id: -1, name: '' };
const actualEvent = ref(emptyEvent); const actualEvent = ref(emptyEvent);
const newEventName = ref(''); const newEventName = ref('');
const input = ref<QInput>(null);
const dialogInput = ref<QInput>(null);
onBeforeMount(async () => await store.getEventTypes()); onBeforeMount(async () => await store.getEventTypes());
const rows = computed(() => store.eventTypes); const rows = computed(() => store.eventTypes);
const rules = [
(s: any) => !!s || 'Darf nicht leer sein!',
(s: string) =>
store.eventTypes.find((e) => e.name === s) === undefined ||
'Der Name wird bereits verwendet',
];
const columns = [ const columns = [
{ {
name: 'name', name: 'name',
@ -77,29 +95,41 @@ export default defineComponent({
}, },
]; ];
async function addType() { function addType() {
await store.addEventType(newEventType.value); if (input.value === null || input.value.validate())
// if null then conflict with name store
.addEventType(newEventType.value)
.then(() => {
newEventType.value = ''; newEventType.value = '';
})
.catch((e) => {
if (isAxiosError(e, 409))
Notify.create({
type: 'negative',
message: 'Der Name wird bereits verwendet',
});
else
Notify.create({
type: 'negative',
message: 'Unbekannter Fehler beim speichern.',
});
});
} }
function editType(event: FG.EventType) { function editType(event: FG.EventType) {
edittype.value = true; dialogOpen.value = true;
actualEvent.value = event; actualEvent.value = event;
} }
async function saveChanges() { function saveChanges() {
try { if (dialogInput.value === null || dialogInput.value.validate())
await store.renameEventType(actualEvent.value.id, newEventName.value); store.renameEventType(actualEvent.value.id, newEventName.value).then(() => discardChanges());
} finally {
discardChanges();
}
} }
function discardChanges() { function discardChanges() {
actualEvent.value = emptyEvent; actualEvent.value = emptyEvent;
newEventName.value = ''; newEventName.value = '';
edittype.value = false; dialogOpen.value = false;
} }
async function deleteType(id: number) { async function deleteType(id: number) {
@ -107,16 +137,19 @@ export default defineComponent({
} }
return { return {
columns,
rows,
addType,
newEventType,
deleteType,
edittype,
editType,
actualEvent, actualEvent,
newEventName, addType,
columns,
deleteType,
dialogInput,
dialogOpen,
discardChanges, discardChanges,
editType,
input,
rows,
rules,
newEventType,
newEventName,
saveChanges, saveChanges,
}; };
}, },