57 lines
1.9 KiB
Vue
57 lines
1.9 KiB
Vue
<template>
|
|
<div class="flex flex-col gap-2 h-full w-full overflow-y-auto">
|
|
<div v-if="memberExecutivePositions != null" class="flex flex-col gap-2 w-full">
|
|
<MemberExecutivePositionListItem
|
|
v-for="position in memberExecutivePositions"
|
|
:key="position.id"
|
|
:position="position"
|
|
/>
|
|
</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">
|
|
Vereinsamt hinzufügen
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineAsyncComponent, defineComponent, markRaw } from "vue";
|
|
import { mapActions, mapState } from "pinia";
|
|
import Spinner from "@/components/Spinner.vue";
|
|
import { useMemberExecutivePositionStore } from "@/stores/admin/club/member/memberExecutivePosition";
|
|
import MemberExecutivePositionListItem from "@/components/admin/club/member/MemberExecutivePositionListItem.vue";
|
|
import { useModalStore } from "@/stores/modal";
|
|
import { useAbilityStore } from "@/stores/ability";
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default defineComponent({
|
|
props: {
|
|
memberId: String,
|
|
},
|
|
computed: {
|
|
...mapState(useMemberExecutivePositionStore, ["memberExecutivePositions", "loading"]),
|
|
...mapState(useAbilityStore, ["can"]),
|
|
},
|
|
mounted() {
|
|
this.fetchItem();
|
|
},
|
|
methods: {
|
|
...mapActions(useMemberExecutivePositionStore, ["fetchMemberExecutivePositionsForMember"]),
|
|
...mapActions(useModalStore, ["openModal"]),
|
|
fetchItem() {
|
|
this.fetchMemberExecutivePositionsForMember();
|
|
},
|
|
openCreateModal() {
|
|
this.openModal(
|
|
markRaw(
|
|
defineAsyncComponent(() => import("@/components/admin/club/member/MemberExecutivePositionCreateModal.vue"))
|
|
)
|
|
);
|
|
},
|
|
},
|
|
});
|
|
</script>
|