ff-admin/src/views/admin/members/MemberCommunication.vue

55 lines
1.9 KiB
Vue
Raw Normal View History

2024-09-17 16:44:02 +02:00
<template>
2024-09-18 09:28:59 +02:00
<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>
2024-09-17 16:44:02 +02:00
<Spinner v-if="loading == 'loading'" class="mx-auto" />
<p v-else-if="loading == 'failed'" @click="fetchItem" class="cursor-pointer">&#8634; laden fehlgeschlagen</p>
2024-09-17 16:44:02 +02:00
</div>
2024-09-26 13:16:31 +02:00
<div class="flex flex-row gap-4">
<button primary class="!w-fit" @click="openCreateModal">Kommunikation hinzufügen</button>
2024-09-26 13:16:31 +02:00
</div>
2024-09-17 16:44:02 +02:00
</template>
<script setup lang="ts">
import { defineAsyncComponent, defineComponent, markRaw } from "vue";
2024-09-17 16:44:02 +02:00
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";
2024-09-18 09:28:59 +02:00
import MemberCommunicationListItem from "@/components/admin/club/member/MemberCommunicationListItem.vue";
import { useModalStore } from "@/stores/modal";
2024-09-17 16:44:02 +02:00
</script>
<script lang="ts">
export default defineComponent({
props: {
memberId: String,
},
2024-09-17 16:44:02 +02:00
computed: {
...mapState(useCommunicationStore, ["communications", "loading"]),
},
mounted() {
this.fetchItem();
},
methods: {
...mapActions(useCommunicationStore, ["fetchCommunicationsForMember"]),
...mapActions(useModalStore, ["openModal"]),
2024-09-17 16:44:02 +02:00
fetchItem() {
this.fetchCommunicationsForMember();
},
openCreateModal() {
this.openModal(
markRaw(defineAsyncComponent(() => import("@/components/admin/club/member/MemberCommunicationCreateModal.vue")))
);
},
2024-09-17 16:44:02 +02:00
},
});
</script>