72 lines
2.4 KiB
Vue
72 lines
2.4 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">Atemschutz-Einsätze</h1>
|
||
|
</div>
|
||
|
</template>
|
||
|
<template #diffMain>
|
||
|
<div class="flex flex-col w-full h-full gap-2 justify-center px-7">
|
||
|
<Pagination
|
||
|
:items="equipments"
|
||
|
:totalCount="totalCount"
|
||
|
:indicateLoading="loading == 'loading'"
|
||
|
useSearch
|
||
|
useScanner
|
||
|
@load-data="(offset, count, search) => fetchEquipments(offset, count, search)"
|
||
|
@search="(search) => fetchEquipments(0, maxEntriesPerPage, search, true)"
|
||
|
>
|
||
|
<template #pageRow="{ row }: { row: EquipmentViewModel }">
|
||
|
<EquipmentListItem :equipment="row" />
|
||
|
</template>
|
||
|
</Pagination>
|
||
|
|
||
|
<div class="flex flex-row gap-4">
|
||
|
<button v-if="can('create', 'club', 'respiratory_mission')" primary class="!w-fit" @click="openCreateModal">
|
||
|
Einsatz erfassen
|
||
|
</button>
|
||
|
</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 { useEquipmentStore } from "@/stores/admin/unit/equipment/equipment";
|
||
|
import { useModalStore } from "@/stores/modal";
|
||
|
import Pagination from "@/components/Pagination.vue";
|
||
|
import { useAbilityStore } from "@/stores/ability";
|
||
|
import type { EquipmentViewModel } from "../../../../viewmodels/admin/unit/equipment/equipment.models";
|
||
|
import EquipmentListItem from "../../../../components/admin/unit/equipment/EquipmentListItem.vue";
|
||
|
</script>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export default defineComponent({
|
||
|
data() {
|
||
|
return {
|
||
|
currentPage: 0,
|
||
|
maxEntriesPerPage: 25,
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
...mapState(useEquipmentStore, ["equipments", "totalCount", "loading"]),
|
||
|
...mapState(useAbilityStore, ["can"]),
|
||
|
},
|
||
|
mounted() {
|
||
|
this.fetchEquipments(0, this.maxEntriesPerPage, "", true);
|
||
|
},
|
||
|
methods: {
|
||
|
...mapActions(useEquipmentStore, ["fetchEquipments"]),
|
||
|
...mapActions(useModalStore, ["openModal"]),
|
||
|
openCreateModal() {
|
||
|
this.openModal(
|
||
|
markRaw(defineAsyncComponent(() => import("@/components/admin/unit/equipment/CreateEquipmentModal.vue")))
|
||
|
);
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</script>
|