2020-04-10 20:32:12 +02:00
|
|
|
<template>
|
2022-02-10 02:18:57 +01:00
|
|
|
<div id="app" class="flex font-sans grow">
|
2022-02-12 15:15:27 +01:00
|
|
|
<v-notification class="fixed z-40 right-0 bottom-0 mb-3 mr-3"></v-notification>
|
2021-06-22 23:00:14 +02:00
|
|
|
|
2021-04-11 00:57:47 +02:00
|
|
|
<!-- ******************************** Sidebar ******************************** -->
|
2022-05-17 00:22:45 +02:00
|
|
|
<div
|
2023-03-15 00:34:24 +01:00
|
|
|
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"
|
2022-11-22 01:55:57 +01:00
|
|
|
:class="{
|
|
|
|
'-left-[14rem]': !(menuVisible || (!menuVisible && menuOverflowVisible)),
|
|
|
|
'left-0': menuVisible || (!menuVisible && menuOverflowVisible),
|
|
|
|
}"
|
2022-05-17 00:22:45 +02:00
|
|
|
>
|
2021-04-11 00:57:47 +02:00
|
|
|
<div class="grid gap-2">
|
2021-04-11 01:25:40 +02:00
|
|
|
<v-link href="/" menu="dashboard" icon="loss">Dashboard</v-link>
|
2021-04-11 00:57:47 +02:00
|
|
|
<v-link href="/member" menu="member" icon="user">Mitglieder</v-link>
|
2023-03-15 00:34:24 +01:00
|
|
|
<v-link href="/subscription" v-show="hasModule('bill')" menu="subscription" icon="money">Beiträge</v-link>
|
2022-05-17 01:37:07 +02:00
|
|
|
<v-link href="/contribution" menu="contribution" icon="contribution">Zuschüsse</v-link>
|
2023-02-23 22:43:13 +01:00
|
|
|
<v-link href="/activity" menu="activity" icon="activity">Tätigkeiten</v-link>
|
2022-05-17 00:22:45 +02:00
|
|
|
</div>
|
|
|
|
<div class="grid gap-2">
|
2022-09-06 00:36:14 +02:00
|
|
|
<v-link href="/setting" menu="setting" icon="setting">Einstellungen</v-link>
|
2022-05-17 01:37:07 +02:00
|
|
|
<v-link @click.prevent="$inertia.post('/logout')" icon="logout" href="/logout">Abmelden</v-link>
|
2021-04-11 00:57:47 +02:00
|
|
|
</div>
|
2023-03-15 00:34:24 +01:00
|
|
|
<a href="#" @click.prevent="menuOverflowVisible = false" v-if="menuOverflowVisible && !menuVisible" class="absolute right-0 top-0 mr-2 mt-2">
|
2022-11-22 01:55:57 +01:00
|
|
|
<svg-sprite src="close" class="w-5 h-5 text-gray-300"></svg-sprite>
|
|
|
|
</a>
|
2021-04-11 00:57:47 +02:00
|
|
|
</div>
|
|
|
|
|
2023-03-15 00:34:24 +01:00
|
|
|
<div class="grow bg-gray-900 flex flex-col transition-all" :class="{'ml-56': menuVisible, 'ml-0': !menuVisible}">
|
2022-12-04 23:40:35 +01:00
|
|
|
<div class="h-16 px-6 flex items-center space-x-3 border-b border-gray-600">
|
|
|
|
<a href="#" @click.prevent="menuOverflowVisible = !menuOverflowVisible" class="lg:hidden">
|
|
|
|
<svg-sprite src="menu" class="text-gray-100 w-5 h-5"></svg-sprite>
|
|
|
|
</a>
|
2023-03-15 00:34:24 +01:00
|
|
|
<span class="text-sm md:text-xl font-semibold text-white leading-none" v-html="$page.props.title"></span>
|
|
|
|
<i-link v-for="(link, index) in filterMenu" :key="index" :href="link.href" class="btn label mr-2" :class="`btn-${link.color}`" v-tooltip="tooltipsVisible ? link.label : ''">
|
2022-12-04 23:40:35 +01:00
|
|
|
<svg-sprite v-show="link.icon" class="w-3 h-3 xl:mr-2" :src="link.icon"></svg-sprite>
|
|
|
|
<span class="hidden xl:inline" v-text="link.label"></span>
|
|
|
|
</i-link>
|
|
|
|
<div class="flex grow justify-between">
|
|
|
|
<portal-target name="toolbar-left"> </portal-target>
|
|
|
|
<portal-target name="toolbar-right"> </portal-target>
|
2021-06-22 00:14:34 +02:00
|
|
|
</div>
|
2021-04-11 10:17:30 +02:00
|
|
|
</div>
|
2021-04-11 02:55:26 +02:00
|
|
|
|
2022-02-10 02:18:57 +01:00
|
|
|
<div class="grow flex flex-col">
|
2021-04-11 02:55:26 +02:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
2021-04-10 19:45:11 +02:00
|
|
|
</div>
|
2020-04-10 20:32:12 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-04-11 00:57:47 +02:00
|
|
|
import VLink from './_VLink.vue';
|
2022-05-17 00:22:45 +02:00
|
|
|
import {debounce} from 'lodash';
|
2021-06-22 23:00:14 +02:00
|
|
|
|
2020-04-10 20:32:12 +02:00
|
|
|
export default {
|
2022-11-22 01:55:57 +01:00
|
|
|
data: function () {
|
|
|
|
return {
|
|
|
|
menuVisible: true,
|
|
|
|
menuOverflowVisible: false,
|
2022-11-24 00:00:05 +01:00
|
|
|
tooltipsVisible: false,
|
2022-11-22 01:55:57 +01:00
|
|
|
};
|
|
|
|
},
|
2022-02-12 15:15:27 +01:00
|
|
|
components: {
|
2022-05-17 00:22:45 +02:00
|
|
|
VNotification: () => import('../components/VNotification.vue'),
|
|
|
|
VLink,
|
2022-02-12 15:15:27 +01:00
|
|
|
},
|
2021-04-11 10:17:30 +02:00
|
|
|
|
|
|
|
computed: {
|
2021-11-19 00:53:19 +01:00
|
|
|
filterMenu() {
|
2022-05-17 00:22:45 +02:00
|
|
|
return this.$page.props.toolbar ? this.$page.props.toolbar.filter((menu) => menu.show !== false) : [];
|
|
|
|
},
|
|
|
|
},
|
2022-11-22 01:55:57 +01:00
|
|
|
|
|
|
|
methods: {
|
|
|
|
menuListener() {
|
|
|
|
var x = window.matchMedia('(min-width: 1024px)');
|
|
|
|
|
|
|
|
if (x.matches && !this.menuVisible) {
|
2023-03-15 00:34:24 +01:00
|
|
|
console.log('A');
|
2022-11-22 01:55:57 +01:00
|
|
|
this.menuVisible = true;
|
|
|
|
this.menuOverflowVisible = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!x.matches && this.menuVisible) {
|
|
|
|
this.menuVisible = false;
|
|
|
|
this.menuOverflowVisible = false;
|
|
|
|
return;
|
|
|
|
}
|
2022-11-24 00:00:05 +01:00
|
|
|
|
|
|
|
this.tooltipsVisible = !window.matchMedia('(min-width: 1280px)').matches;
|
2022-11-22 01:55:57 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
2022-12-05 00:04:01 +01:00
|
|
|
var _self = this;
|
2022-11-22 01:55:57 +01:00
|
|
|
window.addEventListener('resize', this.menuListener);
|
|
|
|
this.menuListener();
|
2022-12-05 00:04:01 +01:00
|
|
|
|
2022-12-05 00:21:24 +01:00
|
|
|
window.addEventListener('inertiaStart', () => {
|
|
|
|
if (!window.matchMedia('(min-width: 1024px)').matches) {
|
|
|
|
_self.menuVisible = false;
|
|
|
|
_self.menuOverflowVisible = false;
|
|
|
|
}
|
2022-12-05 00:04:01 +01:00
|
|
|
});
|
2022-11-22 01:55:57 +01:00
|
|
|
},
|
2020-04-10 20:32:12 +02:00
|
|
|
};
|
|
|
|
</script>
|
2021-04-11 00:57:47 +02:00
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.main-grid {
|
|
|
|
grid-template-columns: min-content 1fr;
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
</style>
|