76 lines
2.9 KiB
Vue
76 lines
2.9 KiB
Vue
<template>
|
|
<v-notification class="fixed z-40 right-0 bottom-0 mb-3 mr-3"></v-notification>
|
|
|
|
<!-- ******************************** Sidebar ******************************** -->
|
|
<div
|
|
class="fixed z-40 bg-gray-800 p-6 w-56 top-0 h-screen border-r border-gray-600 border-solid flex flex-col justify-between transition-all"
|
|
:class="{
|
|
'-left-[14rem]': !menuStore.isShifted,
|
|
'left-0': menuStore.isShifted,
|
|
}"
|
|
>
|
|
<div class="grid gap-2">
|
|
<v-link href="/" menu="dashboard" icon="loss">Dashboard</v-link>
|
|
<v-link href="/member" menu="member" icon="user">Mitglieder</v-link>
|
|
<v-link v-show="hasModule('bill')" href="/subscription" menu="subscription" icon="money">Beiträge</v-link>
|
|
<v-link v-show="hasModule('bill')" href="/invoice" menu="invoice" icon="moneypaper">Rechnungen</v-link>
|
|
<v-link href="/contribution" menu="contribution" icon="contribution">Zuschüsse</v-link>
|
|
<v-link href="/activity" menu="activity" icon="activity">Tätigkeiten</v-link>
|
|
<v-link href="/group" menu="group" icon="group">Gruppierungen</v-link>
|
|
<v-link v-if="hasModule('event')" href="/form" menu="form" icon="event">Veranstaltungen</v-link>
|
|
<v-link href="/maildispatcher" menu="maildispatcher" icon="at">Mail-Verteiler</v-link>
|
|
</div>
|
|
<div class="grid gap-2">
|
|
<a href="#" class="flex w-full px-3 py-2 rounded-xl text-gray-300 bg-gray-700" @click.prevent="searchVisible = true">
|
|
<ui-sprite src="search" class="text-white w-6 h-6 mr-4" />
|
|
<div class="">Suchen</div>
|
|
</a>
|
|
<v-link href="/setting" menu="setting" icon="setting">Einstellungen</v-link>
|
|
<v-link icon="logout" href="/logout" @click.prevent="$inertia.post('/logout')">Abmelden</v-link>
|
|
</div>
|
|
<a v-if="menuStore.hideable" href="#" class="absolute right-0 top-0 mr-2 mt-2" @click.prevent="menuStore.hide()">
|
|
<ui-sprite src="close" class="w-5 h-5 text-gray-300"></ui-sprite>
|
|
</a>
|
|
</div>
|
|
|
|
<slot></slot>
|
|
|
|
<page-search-modal v-if="searchVisible" @close="searchVisible = false"></page-search-modal>
|
|
</template>
|
|
|
|
<script>
|
|
import VLink from './_VLink.vue';
|
|
import {menuStore} from '../stores/menuStore.js';
|
|
import VNotification from '../components/VNotification.vue';
|
|
|
|
export default {
|
|
components: {
|
|
VNotification,
|
|
VLink,
|
|
},
|
|
data: function () {
|
|
return {
|
|
menuStore: menuStore(),
|
|
searchVisible: false,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
filterMenu() {
|
|
return this.$page.props.toolbar ? this.$page.props.toolbar.filter((menu) => menu.show !== false) : [];
|
|
},
|
|
},
|
|
|
|
created() {
|
|
this.menuStore.startInertiaListener();
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.main-grid {
|
|
grid-template-columns: min-content 1fr;
|
|
display: grid;
|
|
}
|
|
</style>
|