<template>
  <MainTemplate>
    <template #headerInsert>
      <RouterLink to="../" class="text-primary">zurück zur Liste</RouterLink>
    </template>
    <template #topBar>
      <h1 class="font-bold text-xl h-8 min-h-fit">
        {{ activeMemberObj?.lastname }}, {{ activeMemberObj?.firstname }}
        {{ activeMemberObj?.nameaffix ? `- ${activeMemberObj?.nameaffix}` : "" }}
      </h1>
      <div class="flex flex-row gap-2">
        <div title="Mitgliederliste drucken" @click="openPrintModal">
          <DocumentTextIcon class="w-5 h-5 cursor-pointer" />
        </div>
        <RouterLink v-if="can('update', 'club', 'member')" :to="{ name: 'admin-club-member-edit' }">
          <PencilIcon class="w-5 h-5" />
        </RouterLink>
        <TrashIcon v-if="can('delete', 'club', 'member')" class="w-5 h-5 cursor-pointer" @click="openDeleteModal" />
      </div>
    </template>
    <template #diffMain>
      <div class="flex flex-col gap-2 grow px-7 overflow-hidden">
        <div class="flex flex-col grow gap-2 overflow-hidden">
          <div class="w-full flex flex-row max-lg:flex-wrap justify-center">
            <RouterLink
              v-for="tab in tabs"
              :key="tab.route"
              v-slot="{ isActive }"
              :to="{ name: tab.route }"
              class="w-1/2 md:w-1/3 lg:w-full p-0.5 first:pl-0 last:pr-0"
            >
              <p
                :class="[
                  'w-full rounded-lg py-2.5 text-sm text-center font-medium leading-5 focus:ring-0 outline-hidden',
                  isActive ? 'bg-red-200 shadow-sm border-b-2 border-primary rounded-b-none' : ' hover:bg-red-200',
                ]"
              >
                {{ tab.title }}
              </p>
            </RouterLink>
          </div>
          <RouterView />
        </div>
      </div>
    </template>
  </MainTemplate>
</template>

<script setup lang="ts">
import { defineAsyncComponent, defineComponent, markRaw } from "vue";
import { mapActions, mapState } from "pinia";
import MainTemplate from "@/templates/Main.vue";
import { RouterLink, RouterView } from "vue-router";
import { useMemberStore } from "@/stores/admin/club/member/member";
import { PencilIcon, TrashIcon, DocumentTextIcon } from "@heroicons/vue/24/outline";
import { useModalStore } from "@/stores/modal";
import { useAbilityStore } from "@/stores/ability";
</script>

<script lang="ts">
export default defineComponent({
  props: {
    memberId: String,
  },
  data() {
    return {
      tabs: [
        { route: "admin-club-member-overview", title: "Übersicht" },
        { route: "admin-club-member-membership", title: "Mitgliedschaft" },
        { route: "admin-club-member-communication", title: "Kommunikation" },
        { route: "admin-club-member-awards", title: "Auszeichnungen" },
        { route: "admin-club-member-qualifications", title: "Qualifikationen" },
        { route: "admin-club-member-positions", title: "Vereinsämter" },
      ],
    };
  },
  computed: {
    ...mapState(useMemberStore, ["activeMemberObj"]),
    ...mapState(useAbilityStore, ["can"]),
  },
  mounted() {
    this.fetchMemberByActiveId();
  },
  methods: {
    ...mapActions(useMemberStore, ["fetchMemberByActiveId"]),
    ...mapActions(useModalStore, ["openModal"]),
    openDeleteModal() {
      this.openModal(
        markRaw(defineAsyncComponent(() => import("@/components/admin/club/member/DeleteMemberModal.vue"))),
        parseInt(this.memberId ?? "")
      );
    },
    openPrintModal() {
      this.openModal(
        markRaw(defineAsyncComponent(() => import("@/components/admin/club/member/MemberPrintModal.vue")))
      );
    },
  },
});
</script>