flaschengeist-frontend/src/plugins/balance/pages/MainPage.vue

119 lines
3.6 KiB
Vue
Raw Normal View History

2020-10-31 16:33:40 +00:00
<template>
<div>
2021-01-29 03:37:56 +00:00
<q-tabs v-model="tab" v-if="$q.screen.gt.sm">
<q-tab
v-for="(tabindex, index) in tabs"
:key="'tab' + index"
:name="tabindex.name"
:label="tabindex.label"
/>
</q-tabs>
<div class="fit row justify-end" v-else>
2021-01-29 21:57:10 +00:00
<q-btn flat round icon="mdi-menu" @click="showDrawer = !showDrawer; show = false" />
2021-01-29 03:37:56 +00:00
</div>
<q-drawer side="right" v-model="showDrawer" @click="showDrawer = !showDrawer" behavior="mobile">
2021-01-29 21:57:10 +00:00
<q-list v-model="tab" v-if="!$q.screen.gt.sm && !show">
2021-01-29 03:37:56 +00:00
<q-item
v-for="(tabindex, index) in tabs"
:key="'tab' + index"
:active="tab == tabindex.name"
clickable
@click="tab = tabindex.name"
>
<q-item-label>{{ tabindex.label }}</q-item-label>
</q-item>
</q-list>
2021-01-29 21:57:10 +00:00
<q-list v-if="show">
<div
v-for="(transaction, index) in transactions"
v-bind:key="index"
class="col-sm-12"
>
<!-- TODO: In Vue3 use v-model:transaction="..." -->
<Transaction :transaction.sync="transactions[index]" />
</div>
</q-list>
2021-01-29 03:37:56 +00:00
</q-drawer>
<q-page padding class="fit row justify-left q-col-gutter-sm">
<q-tab-panels
v-model="tab"
style="background-color: transparent"
class="q-pa-none col-12"
animated
>
<q-tab-panel name="add" class="q-px-xs">
2021-01-29 21:57:10 +00:00
<BalanceAdd @open-history="showDrawer = !showDrawer; show = showDrawer"/>
2021-01-29 03:37:56 +00:00
</q-tab-panel>
<q-tab-panel name="transfer" class="q-px-xs">
2021-01-29 21:57:10 +00:00
<BalanceTransfer @open-history="showDrawer = !showDrawer; show = showDrawer"/>
2021-01-29 03:37:56 +00:00
</q-tab-panel>
</q-tab-panels>
2020-10-31 16:33:40 +00:00
</q-page>
</div>
</template>
<script lang="ts">
2021-01-29 21:57:10 +00:00
import { computed, defineComponent, ref, onMounted } from '@vue/composition-api';
import { Store } from 'vuex';
2021-01-29 03:37:56 +00:00
import { hasPermissions, hasSomePermissions } from 'src/utils/permission';
import PERMISSIONS from '../permissions';
import { Screen } from 'quasar';
import BalanceAdd from '../components/BalanceAdd.vue';
import BalanceTransfer from '../components/BalanceTransfer.vue';
import Transaction from '../components/Transaction.vue';
import { StateInterfaceBalance } from '../store/balance';
2020-10-31 16:33:40 +00:00
export default defineComponent({
2021-01-29 03:37:56 +00:00
name: 'BalanceManage',
components: { BalanceAdd, BalanceTransfer, Transaction },
2020-10-31 16:33:40 +00:00
setup(_, { root }) {
2021-01-29 03:37:56 +00:00
const store = <Store<StateInterfaceBalance>>root.$store;
2021-01-29 21:57:10 +00:00
const now = new Date()
onMounted(() => {
store.dispatch('balance/getTransactions', {filter: {from: new Date(now.getFullYear(), now.getMonth(), now.getDay())}})
})
2021-01-29 03:37:56 +00:00
const transactions = computed(() =>
store.state.balance.transactions
.filter(t => t.original_id == undefined)
.sort((a, b) => (a.time >= b.time ? -1 : 1))
);
const canAdd = () =>
hasSomePermissions([PERMISSIONS.DEBIT, PERMISSIONS.CREDIT, PERMISSIONS.DEBIT_OWN], store);
interface Tab {
name: string;
label: string;
}
const tabs: Tab[] = [
...(canAdd() ? [{ name: 'add', label: 'Anschreiben' }] : []),
...(hasSomePermissions([PERMISSIONS.SEND, PERMISSIONS.SEND_OTHER], store)
? [{ name: 'transfer', label: 'Übertragen' }]
: [])
];
const drawer = ref<boolean>(false);
const showDrawer = computed({
get: () => {
return !Screen.gt.sm && drawer.value;
},
set: (val: boolean) => {
drawer.value = val;
}
2020-10-31 16:33:40 +00:00
});
2021-01-29 03:37:56 +00:00
const tab = ref<string>(canAdd() ? 'add' : 'transfer');
2021-01-29 21:57:10 +00:00
const show = ref<boolean>(false);
2021-01-29 03:37:56 +00:00
return {
showDrawer,
tab,
tabs,
2021-01-29 21:57:10 +00:00
transactions,
show
2021-01-29 03:37:56 +00:00
};
2020-10-31 16:33:40 +00:00
}
});
</script>