83 lines
3.1 KiB
Vue
83 lines
3.1 KiB
Vue
<template>
|
|
<MainTemplate>
|
|
<template #headerInsert>
|
|
<RouterLink to="../" class="text-primary">zurück zur Liste (abbrechen)</RouterLink>
|
|
</template>
|
|
<template #topBar>
|
|
<div class="flex flex-row items-center justify-between pt-5 pb-3 px-7">
|
|
<h1 class="font-bold text-xl h-8">Qualifikation {{ qualification?.qualification }} - Daten bearbeiten</h1>
|
|
</div>
|
|
</template>
|
|
<template #main>
|
|
<Spinner v-if="loadingSingle == 'loading'" class="mx-auto" />
|
|
<p v-else-if="loadingSingle == 'failed'">laden fehlgeschlagen</p>
|
|
<form v-else class="flex flex-col gap-4 py-2 w-full max-w-xl mx-auto" @submit.prevent="triggerUpdate">
|
|
<div>
|
|
<label for="qualification">Bezeichnung</label>
|
|
<input type="text" id="qualification" required :value="qualification?.qualification" @change="detectChange" />
|
|
</div>
|
|
<div>
|
|
<label for="description">Beschreibung (optional)</label>
|
|
<input type="text" id="description" :value="qualification?.description" @change="detectChange" />
|
|
</div>
|
|
<div class="flex flex-row justify-end gap-2">
|
|
<button primary-outline type="reset" class="!w-fit" :disabled="!change_detect" @click="change_detect = false">
|
|
verwerfen
|
|
</button>
|
|
<button primary type="submit" class="!w-fit" :disabled="updateStatus == 'loading'">speichern</button>
|
|
<Spinner v-if="updateStatus == 'loading'" class="my-auto" />
|
|
<SuccessCheckmark v-else-if="updateStatus?.status == 'success'" />
|
|
<FailureXMark v-else-if="updateStatus?.status == 'failed'" />
|
|
</div>
|
|
</form>
|
|
</template>
|
|
</MainTemplate>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import { mapState, mapActions } from "pinia";
|
|
import MainTemplate from "@/templates/Main.vue";
|
|
import { useQualificationStore } from "@/stores/admin/qualification";
|
|
import Spinner from "@/components/Spinner.vue";
|
|
import SuccessCheckmark from "@/components/SuccessCheckmark.vue";
|
|
import FailureXMark from "@/components/FailureXMark.vue";
|
|
import { RouterLink } from "vue-router";
|
|
import type { CreateOrUpdateQualificationViewModel } from "@/viewmodels/admin/qualification.models";
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default defineComponent({
|
|
props: {
|
|
id: String,
|
|
},
|
|
data() {
|
|
return {
|
|
change_detect: false as boolean,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState(useQualificationStore, ["qualification", "updateStatus", "loadingSingle"]),
|
|
},
|
|
mounted() {
|
|
this.resetStatus();
|
|
this.fetchQualificationById(parseInt(this.id ?? ""));
|
|
},
|
|
methods: {
|
|
...mapActions(useQualificationStore, ["fetchQualificationById", "updateActiveQualification", "resetStatus"]),
|
|
detectChange() {
|
|
this.resetStatus();
|
|
this.change_detect = true;
|
|
},
|
|
triggerUpdate(e: any) {
|
|
let formData = e.target.elements;
|
|
let updateQualification: CreateOrUpdateQualificationViewModel = {
|
|
qualification: formData.qualification.value,
|
|
description: formData.description.value,
|
|
};
|
|
this.updateActiveQualification(updateQualification);
|
|
this.change_detect = false;
|
|
},
|
|
},
|
|
});
|
|
</script>
|