54 lines
1.9 KiB
Vue
54 lines
1.9 KiB
Vue
<template>
|
|
<div class="flex flex-col h-fit w-full border border-primary rounded-md">
|
|
<div class="bg-primary p-2 text-white flex flex-row gap-2 justify-between items-center">
|
|
<p class="grow">{{ education.education }}</p>
|
|
<PencilIcon v-if="can('update', 'club', 'member')" class="w-5 h-5 cursor-pointer" @click="openEditModal" />
|
|
<TrashIcon v-if="can('delete', 'club', 'member')" class="w-5 h-5 cursor-pointer" @click="openDeleteModal" />
|
|
</div>
|
|
<div class="p-2">
|
|
<p>
|
|
besucht: {{ education.start }} <span v-if="education.end">bis {{ education.end }}</span>
|
|
</p>
|
|
<p v-if="education.place">Ort: {{ education.place }}</p>
|
|
<p v-if="education.note">Notiz: {{ education.note }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineAsyncComponent, defineComponent, markRaw, type PropType } from "vue";
|
|
import { mapState, mapActions } from "pinia";
|
|
import type { MemberEducationViewModel } from "@/viewmodels/admin/club/member/memberEducation.models";
|
|
import { PencilIcon, TrashIcon } from "@heroicons/vue/24/outline";
|
|
import { useModalStore } from "@/stores/modal";
|
|
import { useAbilityStore } from "@/stores/ability";
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default defineComponent({
|
|
props: {
|
|
education: {
|
|
type: Object as PropType<MemberEducationViewModel>,
|
|
default: {},
|
|
},
|
|
},
|
|
computed: {
|
|
...mapState(useAbilityStore, ["can"]),
|
|
},
|
|
methods: {
|
|
...mapActions(useModalStore, ["openModal"]),
|
|
openEditModal() {
|
|
this.openModal(
|
|
markRaw(defineAsyncComponent(() => import("@/components/admin/club/member/MemberEducationEditModal.vue"))),
|
|
this.education.id
|
|
);
|
|
},
|
|
openDeleteModal() {
|
|
this.openModal(
|
|
markRaw(defineAsyncComponent(() => import("@/components/admin/club/member/MemberEducationDeleteModal.vue"))),
|
|
this.education.id
|
|
);
|
|
},
|
|
},
|
|
});
|
|
</script>
|