ff-admin/src/views/admin/club/protocol/ProtocolAgenda.vue

54 lines
1.8 KiB
Vue
Raw Normal View History

2024-10-04 12:47:04 +02:00
<template>
<div class="flex flex-col gap-2 h-full w-full overflow-y-auto">
2024-10-13 15:47:52 +02:00
<Spinner v-if="loading == 'loading'" class="mx-auto" />
<p v-else-if="loading == 'failed'" @click="fetchProtocolAgenda" class="cursor-pointer">
&#8634; laden fehlgeschlagen
</p>
2024-10-08 10:43:16 +02:00
<details class="flex flex-col gap-2 rounded-lg w-full justify-between border border-primary overflow-hidden">
<summary class="flex flex-row gap-2 bg-primary p-2 w-full justify-between items-center cursor-pointer">
2024-10-11 14:43:56 +02:00
<svg class="fill-white stroke-white opacity-75 w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
2024-10-08 10:43:16 +02:00
<path d="M12.95 10.707l.707-.707L8 4.343 6.586 5.757 10.828 10l-4.242 4.243L8 15.657l4.95-4.95z" />
</svg>
2024-10-11 14:43:56 +02:00
<input type="text" name="title" id="title" placeholder="TOP" autocomplete="off" />
2024-10-08 10:43:16 +02:00
</summary>
<QuillEditor
id="top"
theme="snow"
placeholder="TOP Inhalt..."
style="height: 250px; max-height: 250px; min-height: 250px"
contentType="html"
:toolbar="toolbarOptions"
/>
</details>
2024-10-04 12:47:04 +02:00
</div>
</template>
<script setup lang="ts">
import { defineComponent } from "vue";
import { mapActions, mapState } from "pinia";
import Spinner from "@/components/Spinner.vue";
import { QuillEditor } from "@vueup/vue-quill";
import "@vueup/vue-quill/dist/vue-quill.snow.css";
import { toolbarOptions } from "@/helpers/quillConfig";
2024-10-13 15:47:52 +02:00
import { useProtocolAgendaStore } from "@/stores/admin/protocolAgenda";
2024-10-04 12:47:04 +02:00
</script>
<script lang="ts">
export default defineComponent({
props: {
protocolId: String,
},
computed: {
2024-10-13 15:47:52 +02:00
...mapState(useProtocolAgendaStore, ["agenda", "loading"]),
},
mounted() {
this.fetchProtocolAgenda();
},
methods: {
...mapActions(useProtocolAgendaStore, ["fetchProtocolAgenda"]),
2024-10-04 12:47:04 +02:00
},
});
</script>