2024-09-27 14:55:49 +02:00
|
|
|
<template>
|
|
|
|
<div class="w-full md:max-w-md">
|
|
|
|
<div class="flex flex-col items-center">
|
|
|
|
<p class="text-xl font-medium">Mitglied-Auzeichnung bearbeiten</p>
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<Spinner v-if="loading == 'loading'" class="mx-auto" />
|
|
|
|
<p v-else-if="loading == 'failed'" @click="fetchItem" class="cursor-pointer">↺ laden fehlgeschlagen</p>
|
|
|
|
<form v-else-if="memberAward != null" class="flex flex-col gap-4 py-2" @submit.prevent="triggerCreate">
|
|
|
|
<div>
|
|
|
|
<Listbox v-model="memberAward.awardId" name="award">
|
|
|
|
<ListboxLabel>Auszeichnung</ListboxLabel>
|
|
|
|
<div class="relative mt-1">
|
|
|
|
<ListboxButton
|
|
|
|
class="rounded-md shadow-sm relative block w-full px-3 py-2 border border-gray-300 focus:border-primary placeholder-gray-500 text-gray-900 rounded-b-md focus:outline-none focus:ring-0 focus:z-10 sm:text-sm resize-none"
|
|
|
|
>
|
|
|
|
<span class="block truncate w-full text-start">
|
|
|
|
{{ awards.length != 0 ? (selectedAward ?? "bitte auswählen") : "keine Auswahl vorhanden" }}</span
|
|
|
|
>
|
|
|
|
<span class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
|
|
|
<ChevronUpDownIcon class="h-5 w-5 text-gray-400" aria-hidden="true" />
|
|
|
|
</span>
|
|
|
|
</ListboxButton>
|
|
|
|
|
|
|
|
<transition
|
|
|
|
leave-active-class="transition duration-100 ease-in"
|
|
|
|
leave-from-class="opacity-100"
|
|
|
|
leave-to-class="opacity-0"
|
|
|
|
>
|
|
|
|
<ListboxOptions
|
|
|
|
class="absolute mt-1 max-h-60 z-20 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black/5 focus:outline-none sm:text-sm h-32 overflow-y-auto"
|
|
|
|
>
|
|
|
|
<ListboxOption v-if="awards.length == 0" disabled as="template">
|
|
|
|
<li :class="['relative cursor-default select-none py-2 pl-10 pr-4']">
|
|
|
|
<span :class="['font-normal', 'block truncate']">keine Auswahl vorhanden</span>
|
|
|
|
</li>
|
|
|
|
</ListboxOption>
|
|
|
|
<ListboxOption
|
|
|
|
v-slot="{ active, selected }"
|
|
|
|
v-for="award in awards"
|
|
|
|
:key="award.id"
|
|
|
|
:value="award.id"
|
|
|
|
as="template"
|
|
|
|
>
|
|
|
|
<li
|
|
|
|
:class="[
|
|
|
|
active ? 'bg-red-200 text-amber-900' : 'text-gray-900',
|
|
|
|
'relative cursor-default select-none py-2 pl-10 pr-4',
|
|
|
|
]"
|
|
|
|
>
|
|
|
|
<span :class="[selected ? 'font-medium' : 'font-normal', 'block truncate']">{{ award.award }}</span>
|
|
|
|
<span v-if="selected" class="absolute inset-y-0 left-0 flex items-center pl-3 text-primary">
|
|
|
|
<CheckIcon class="h-5 w-5" aria-hidden="true" />
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ListboxOption>
|
|
|
|
</ListboxOptions>
|
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
</Listbox>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="date">Vergeben am</label>
|
|
|
|
<input type="date" id="date" required v-model="memberAward.date" />
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center gap-2">
|
|
|
|
<input type="checkbox" id="given" v-model="memberAward.given" />
|
|
|
|
<label for="given">wurde übergeben / angenommen</label>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="note">Notiz (optional)</label>
|
|
|
|
<input type="text" id="note" v-model="memberAward.note" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-row gap-2">
|
|
|
|
<button primary-outline type="reset" :disabled="canSaveOrReset" @click="resetForm">verwerfen</button>
|
|
|
|
<button primary type="submit" :disabled="status == 'loading' || canSaveOrReset">speichern</button>
|
|
|
|
<Spinner v-if="status == 'loading'" class="my-auto" />
|
|
|
|
<SuccessCheckmark v-else-if="status?.status == 'success'" />
|
|
|
|
<FailureXMark v-else-if="status?.status == 'failed'" />
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<div class="flex flex-row justify-end">
|
|
|
|
<div class="flex flex-row gap-4 py-2">
|
2025-01-13 10:24:03 +01:00
|
|
|
<button primary-outline @click="closeModal" :disabled="status == 'loading' || status?.status == 'success'">
|
|
|
|
schließen
|
|
|
|
</button>
|
2024-09-27 14:55:49 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { defineComponent } from "vue";
|
|
|
|
import { mapState, mapActions } from "pinia";
|
|
|
|
import { useModalStore } from "@/stores/modal";
|
|
|
|
import Spinner from "@/components/Spinner.vue";
|
|
|
|
import SuccessCheckmark from "@/components/SuccessCheckmark.vue";
|
|
|
|
import FailureXMark from "@/components/FailureXMark.vue";
|
|
|
|
import { Listbox, ListboxButton, ListboxOptions, ListboxOption, ListboxLabel } from "@headlessui/vue";
|
|
|
|
import { CheckIcon, ChevronUpDownIcon } from "@heroicons/vue/20/solid";
|
2025-02-15 11:08:09 +01:00
|
|
|
import { useAwardStore } from "@/stores/admin/configuration/award";
|
2024-09-27 14:55:49 +02:00
|
|
|
import type {
|
|
|
|
CreateMemberAwardViewModel,
|
|
|
|
MemberAwardViewModel,
|
|
|
|
UpdateMemberAwardViewModel,
|
2025-01-02 18:28:13 +01:00
|
|
|
} from "@/viewmodels/admin/club/member/memberAward.models";
|
|
|
|
import { useMemberAwardStore } from "@/stores/admin/club/member/memberAward";
|
2024-11-27 17:06:39 +01:00
|
|
|
import isEqual from "lodash.isequal";
|
2024-09-27 14:55:49 +02:00
|
|
|
import cloneDeep from "lodash.clonedeep";
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
export default defineComponent({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
loading: "loading" as "loading" | "fetched" | "failed",
|
|
|
|
status: null as null | "loading" | { status: "success" | "failed"; reason?: string },
|
|
|
|
origin: null as null | MemberAwardViewModel,
|
|
|
|
memberAward: null as null | MemberAwardViewModel,
|
|
|
|
timeout: undefined as any,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState(useAwardStore, ["awards"]),
|
|
|
|
...mapState(useModalStore, ["data"]),
|
|
|
|
canSaveOrReset(): boolean {
|
|
|
|
return isEqual(this.origin, this.memberAward);
|
|
|
|
},
|
|
|
|
selectedAward() {
|
|
|
|
return this.awards.find((ms) => ms.id == this.memberAward?.awardId)?.award;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.fetchAwards();
|
|
|
|
this.fetchItem();
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
try {
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
} catch (error) {}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions(useModalStore, ["closeModal"]),
|
|
|
|
...mapActions(useMemberAwardStore, ["updateMemberAward", "fetchMemberAwardById"]),
|
|
|
|
...mapActions(useAwardStore, ["fetchAwards"]),
|
|
|
|
resetForm() {
|
|
|
|
this.memberAward = cloneDeep(this.origin);
|
|
|
|
},
|
|
|
|
fetchItem() {
|
|
|
|
this.fetchMemberAwardById(this.data)
|
|
|
|
.then((result) => {
|
|
|
|
this.memberAward = result.data;
|
|
|
|
this.origin = cloneDeep(result.data);
|
|
|
|
this.loading = "fetched";
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
this.loading = "failed";
|
|
|
|
});
|
|
|
|
},
|
|
|
|
triggerCreate(e: any) {
|
|
|
|
if (this.memberAward == null) return;
|
|
|
|
let formData = e.target.elements;
|
|
|
|
let updateMemberAward: UpdateMemberAwardViewModel = {
|
|
|
|
id: this.memberAward.id,
|
|
|
|
date: formData.date.value,
|
|
|
|
note: formData.note.value,
|
|
|
|
given: formData.given.checked,
|
|
|
|
awardId: this.memberAward.awardId,
|
|
|
|
};
|
2025-01-13 10:24:03 +01:00
|
|
|
this.status = "loading";
|
2024-09-27 14:55:49 +02:00
|
|
|
this.updateMemberAward(updateMemberAward)
|
|
|
|
.then(() => {
|
|
|
|
this.fetchItem();
|
|
|
|
this.status = { status: "success" };
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
this.status = { status: "failed" };
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
this.timeout = setTimeout(() => {
|
|
|
|
this.status = null;
|
|
|
|
}, 2000);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|