55 lines
1.9 KiB
Vue
55 lines
1.9 KiB
Vue
|
<template>
|
||
|
<div class="flex flex-col h-fit w-full border border-primary rounded-md">
|
||
|
<div class="bg-primary p-2 text-white flex flex-row justify-between items-center">
|
||
|
<p>{{ template.template }}</p>
|
||
|
<div class="flex flex-row">
|
||
|
<RouterLink
|
||
|
v-if="can('update', 'settings', 'template')"
|
||
|
:to="{ name: 'admin-settings-template-edit', params: { id: template.id } }"
|
||
|
>
|
||
|
<PencilIcon class="w-5 h-5 p-1 box-content cursor-pointer" />
|
||
|
</RouterLink>
|
||
|
<div v-if="can('delete', 'settings', 'template')" @click="openDeleteModal">
|
||
|
<TrashIcon class="w-5 h-5 p-1 box-content cursor-pointer" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="flex flex-col p-2">
|
||
|
<div class="flex flex-row gap-2">
|
||
|
<p class="min-w-16">Beschreibung:</p>
|
||
|
<p class="grow overflow-hidden">{{ template.description }}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { defineComponent, defineAsyncComponent, markRaw, type PropType } from "vue";
|
||
|
import { mapState, mapActions } from "pinia";
|
||
|
import { PencilIcon, TrashIcon } from "@heroicons/vue/24/outline";
|
||
|
import { useAbilityStore } from "@/stores/ability";
|
||
|
import { useModalStore } from "@/stores/modal";
|
||
|
import type { QualificationViewModel } from "@/viewmodels/admin/qualification.models";
|
||
|
import type { TemplateViewModel } from "../../../../viewmodels/admin/template.models";
|
||
|
</script>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export default defineComponent({
|
||
|
props: {
|
||
|
template: { type: Object as PropType<TemplateViewModel>, default: {} },
|
||
|
},
|
||
|
computed: {
|
||
|
...mapState(useAbilityStore, ["can"]),
|
||
|
},
|
||
|
methods: {
|
||
|
...mapActions(useModalStore, ["openModal"]),
|
||
|
openDeleteModal() {
|
||
|
this.openModal(
|
||
|
markRaw(defineAsyncComponent(() => import("@/components/admin/settings/template/DeleteTemplateModal.vue"))),
|
||
|
this.template.id
|
||
|
);
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</script>
|