58 lines
2.1 KiB
Vue
58 lines
2.1 KiB
Vue
<template>
|
|
<div class="flex flex-col gap-2 h-full w-full overflow-y-auto">
|
|
<div v-if="communications != null" class="flex flex-col gap-2 w-full">
|
|
<MemberCommunicationListItem
|
|
v-for="communication in communications"
|
|
:key="communication.id"
|
|
:communication="communication"
|
|
/>
|
|
</div>
|
|
<Spinner v-if="loading == 'loading'" class="mx-auto" />
|
|
<p v-else-if="loading == 'failed'" @click="fetchItem" class="cursor-pointer">↺ laden fehlgeschlagen</p>
|
|
</div>
|
|
<div class="flex flex-row gap-4">
|
|
<button v-if="can('create', 'club', 'member')" primary class="!w-fit" @click="openCreateModal">
|
|
Kommunikation hinzufügen
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineAsyncComponent, defineComponent, markRaw } from "vue";
|
|
import { mapActions, mapState } from "pinia";
|
|
import { useMemberStore } from "@/stores/admin/member";
|
|
import type { MemberViewModel, UpdateMemberViewModel } from "@/viewmodels/admin/member.models";
|
|
import Spinner from "@/components/Spinner.vue";
|
|
import type { CommunicationViewModel } from "@/viewmodels/admin/communication.models";
|
|
import { useCommunicationStore } from "@/stores/admin/communication";
|
|
import MemberCommunicationListItem from "@/components/admin/club/member/MemberCommunicationListItem.vue";
|
|
import { useModalStore } from "@/stores/modal";
|
|
import { useAbilityStore } from "@/stores/ability";
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default defineComponent({
|
|
props: {
|
|
memberId: String,
|
|
},
|
|
computed: {
|
|
...mapState(useCommunicationStore, ["communications", "loading"]),
|
|
...mapState(useAbilityStore, ["can"]),
|
|
},
|
|
mounted() {
|
|
this.fetchItem();
|
|
},
|
|
methods: {
|
|
...mapActions(useCommunicationStore, ["fetchCommunicationsForMember"]),
|
|
...mapActions(useModalStore, ["openModal"]),
|
|
fetchItem() {
|
|
this.fetchCommunicationsForMember();
|
|
},
|
|
openCreateModal() {
|
|
this.openModal(
|
|
markRaw(defineAsyncComponent(() => import("@/components/admin/club/member/MemberCommunicationCreateModal.vue")))
|
|
);
|
|
},
|
|
},
|
|
});
|
|
</script>
|