52 lines
1.7 KiB
Vue
52 lines
1.7 KiB
Vue
<template>
|
|
<MainTemplate>
|
|
<template #topBar>
|
|
<div class="flex flex-row items-center justify-between pt-5 pb-3 px-7">
|
|
<h1 class="font-bold text-xl h-8">Webapi-Token</h1>
|
|
</div>
|
|
</template>
|
|
<template #diffMain>
|
|
<div class="flex flex-col gap-4 h-full pl-7">
|
|
<div class="flex flex-col gap-2 grow overflow-y-scroll pr-7">
|
|
<WebapiListItem v-for="webapi in webapis" :key="webapi.id" :webapi="webapi" />
|
|
</div>
|
|
<div class="flex flex-row gap-4">
|
|
<button v-if="can('create', 'management', 'webapi')" primary class="!w-fit" @click="openCreateModal">
|
|
Webapi-Token erstellen
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</MainTemplate>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineAsyncComponent, defineComponent, markRaw } from "vue";
|
|
import { mapState, mapActions } from "pinia";
|
|
import MainTemplate from "@/templates/Main.vue";
|
|
import { useWebapiStore } from "@/stores/admin/management/webapi";
|
|
import WebapiListItem from "@/components/admin/management/webapi/WebapiListItem.vue";
|
|
import { useModalStore } from "@/stores/modal";
|
|
import { useAbilityStore } from "@/stores/ability";
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default defineComponent({
|
|
computed: {
|
|
...mapState(useWebapiStore, ["webapis"]),
|
|
...mapState(useAbilityStore, ["can"]),
|
|
},
|
|
mounted() {
|
|
this.fetchWebapis();
|
|
},
|
|
methods: {
|
|
...mapActions(useWebapiStore, ["fetchWebapis"]),
|
|
...mapActions(useModalStore, ["openModal"]),
|
|
openCreateModal() {
|
|
this.openModal(
|
|
markRaw(defineAsyncComponent(() => import("@/components/admin/management/webapi/CreateWebapiModal.vue")))
|
|
);
|
|
},
|
|
},
|
|
});
|
|
</script>
|