mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-17 00:12:11 +08:00
346 lines
17 KiB
Vue
346 lines
17 KiB
Vue
<template>
|
|
<v-row class="match-height">
|
|
<v-col cols="12" lg="4" md="12">
|
|
<v-card :class="{ 'disabled': loadingOverview }">
|
|
<template #title>
|
|
<div class="d-flex align-center">
|
|
<div class="d-flex align-baseline">
|
|
<span class="text-2xl font-weight-bold">{{ displayDateRange?.thisMonth?.displayTime }}</span>
|
|
<span>·</span>
|
|
<span style="font-size: 1rem">{{ tt('Expense') }}</span>
|
|
</div>
|
|
<v-btn density="compact" color="default" variant="text" size="24"
|
|
class="ms-2" :icon="true" :loading="loadingOverview" @click="reload(true)">
|
|
<template #loader>
|
|
<v-progress-circular indeterminate size="20"/>
|
|
</template>
|
|
<v-icon :icon="mdiRefresh" size="24" />
|
|
<v-tooltip activator="parent">{{ tt('Refresh') }}</v-tooltip>
|
|
</v-btn>
|
|
</div>
|
|
</template>
|
|
|
|
<v-card-text>
|
|
<h4 class="text-2xl font-weight-medium text-primary">
|
|
<span v-if="!loadingOverview || (transactionOverview && transactionOverview.thisMonth && transactionOverview.thisMonth.valid)">{{ transactionOverview && transactionOverview.thisMonth ? getDisplayExpenseAmount(transactionOverview.thisMonth) : '-' }}</span>
|
|
<v-skeleton-loader class="d-inline-block skeleton-no-margin mt-3 pb-1" width="120px" type="text" :loading="true" v-else-if="loadingOverview && (!transactionOverview || !transactionOverview.thisMonth || !transactionOverview.thisMonth.valid)"></v-skeleton-loader>
|
|
<v-btn class="ms-1" density="compact" color="default" variant="text"
|
|
:icon="true" @click="showAmountInHomePage = !showAmountInHomePage">
|
|
<v-icon :icon="showAmountInHomePage ? mdiEyeOffOutline : mdiEyeOutline" size="20" />
|
|
</v-btn>
|
|
</h4>
|
|
<div class="mt-1 mb-3">
|
|
<span class="me-2">{{ tt('Monthly income') }}</span>
|
|
<span v-if="!loadingOverview || (transactionOverview && transactionOverview.thisMonth && transactionOverview.thisMonth.valid)">{{ transactionOverview && transactionOverview.thisMonth ? getDisplayIncomeAmount(transactionOverview.thisMonth) : '-' }}</span>
|
|
<v-skeleton-loader class="d-inline-block skeleton-no-margin mt-2" width="120px" type="text" :loading="true" v-else-if="loadingOverview && (!transactionOverview || !transactionOverview.thisMonth || !transactionOverview.thisMonth.valid)"></v-skeleton-loader>
|
|
</div>
|
|
<v-btn size="small" :to="`/transaction/list?${overviewStore.getTransactionListPageParams({ dateType: DateRange.ThisMonth.type })}`">{{ tt('View Details') }}</v-btn>
|
|
<v-img class="overview-card-background img-with-direction"
|
|
src="img/desktop/card-background.png"/>
|
|
<v-img class="overview-card-background-image img-with-direction"
|
|
width="116px" src="img/desktop/document.svg"/>
|
|
</v-card-text>
|
|
</v-card>
|
|
</v-col>
|
|
|
|
<v-col cols="12" lg="8" md="12">
|
|
<v-card :class="{ 'disabled': loadingOverview }">
|
|
<template #title>
|
|
<span>{{ tt('Asset Summary') }}</span>
|
|
</template>
|
|
|
|
<v-card-text>
|
|
<div class="mb-8">
|
|
<span class="text-body-1" v-if="!loadingOverview || (allAccounts && allAccounts.length)">{{ tt('format.misc.youHaveAccounts', { count: displayAccountCount }) }}</span>
|
|
<v-skeleton-loader class="skeleton-no-margin mt-1 mb-2 pb-1" width="200px" type="text" :loading="true" v-else-if="loadingOverview && (!allAccounts || !allAccounts.length)"></v-skeleton-loader>
|
|
</div>
|
|
|
|
<v-row>
|
|
<v-col cols="12" md="4">
|
|
<div class="d-flex align-center">
|
|
<div class="me-3">
|
|
<v-avatar rounded color="grey" size="42" class="elevation-1">
|
|
<v-icon size="24" :icon="mdiBankOutline"/>
|
|
</v-avatar>
|
|
</div>
|
|
|
|
<div class="d-flex flex-column">
|
|
<span class="text-caption">{{ tt('Total assets') }}</span>
|
|
<span class="text-h5" v-if="!loadingOverview || (allAccounts && allAccounts.length)">{{ totalAssets }}</span>
|
|
<v-skeleton-loader class="skeleton-no-margin mt-3 mb-2" width="120px" type="text" :loading="true" v-else-if="loadingOverview && (!allAccounts || !allAccounts.length)"></v-skeleton-loader>
|
|
</div>
|
|
</div>
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="4">
|
|
<div class="d-flex align-center">
|
|
<div class="me-3">
|
|
<v-avatar rounded color="expense" size="42" class="elevation-1">
|
|
<v-icon size="24" :icon="mdiCreditCardOutline"/>
|
|
</v-avatar>
|
|
</div>
|
|
|
|
<div class="d-flex flex-column">
|
|
<span class="text-caption">{{ tt('Total liabilities') }}</span>
|
|
<span class="text-h5" v-if="!loadingOverview || (allAccounts && allAccounts.length)">{{ totalLiabilities }}</span>
|
|
<v-skeleton-loader class="skeleton-no-margin mt-3 mb-2" width="120px" type="text" :loading="true" v-else-if="loadingOverview && (!allAccounts || !allAccounts.length)"></v-skeleton-loader>
|
|
</div>
|
|
</div>
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="4">
|
|
<div class="d-flex align-center">
|
|
<div class="me-3">
|
|
<v-avatar rounded color="primary" size="42" class="elevation-1">
|
|
<v-icon size="24" :icon="mdiPiggyBankOutline"/>
|
|
</v-avatar>
|
|
</div>
|
|
|
|
<div class="d-flex flex-column">
|
|
<span class="text-caption">{{ tt('Net assets') }}</span>
|
|
<span class="text-h5" v-if="!loadingOverview || (allAccounts && allAccounts.length)">{{ netAssets }}</span>
|
|
<v-skeleton-loader class="skeleton-no-margin mt-3 mb-2" width="120px" type="text" :loading="true" v-else-if="loadingOverview && (!allAccounts || !allAccounts.length)"></v-skeleton-loader>
|
|
</div>
|
|
</div>
|
|
</v-col>
|
|
</v-row>
|
|
</v-card-text>
|
|
</v-card>
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="6">
|
|
<v-row>
|
|
<v-col cols="12" md="6">
|
|
<income-expense-overview-card
|
|
:loading="loadingOverview" :disabled="loadingOverview" :icon="mdiCalendarTodayOutline"
|
|
:title="tt('Today')"
|
|
:expense-amount="transactionOverview.today && transactionOverview.today.valid ? getDisplayExpenseAmount(transactionOverview.today) : ''"
|
|
:income-amount="transactionOverview.today && transactionOverview.today.valid ? getDisplayIncomeAmount(transactionOverview.today) : ''"
|
|
:datetime="displayDateRange?.today?.displayTime || ''"
|
|
>
|
|
<template #menus>
|
|
<v-list-item :prepend-icon="mdiListBoxOutline" :to="`/transaction/list?${overviewStore.getTransactionListPageParams({ dateType: DateRange.Today.type })}`">
|
|
<v-list-item-title>{{ tt('View Details') }}</v-list-item-title>
|
|
</v-list-item>
|
|
</template>
|
|
</income-expense-overview-card>
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="6">
|
|
<income-expense-overview-card
|
|
:loading="loadingOverview" :disabled="loadingOverview" :icon="mdiCalendarWeekOutline"
|
|
:title="tt('This Week')"
|
|
:expense-amount="transactionOverview.thisWeek && transactionOverview.thisWeek.valid ? getDisplayExpenseAmount(transactionOverview.thisWeek) : ''"
|
|
:income-amount="transactionOverview.thisWeek && transactionOverview.thisWeek.valid ? getDisplayIncomeAmount(transactionOverview.thisWeek) : ''"
|
|
:datetime="displayDateRange?.thisWeek?.startTime + '-' + displayDateRange?.thisWeek?.endTime"
|
|
>
|
|
<template #menus>
|
|
<v-list-item :prepend-icon="mdiListBoxOutline" :to="`/transaction/list?${overviewStore.getTransactionListPageParams({ dateType: DateRange.ThisWeek.type })}`">
|
|
<v-list-item-title>{{ tt('View Details') }}</v-list-item-title>
|
|
</v-list-item>
|
|
</template>
|
|
</income-expense-overview-card>
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="6">
|
|
<income-expense-overview-card
|
|
:loading="loadingOverview" :disabled="loadingOverview" :icon="mdiCalendarMonthOutline"
|
|
:title="tt('This Month')"
|
|
:expense-amount="transactionOverview.thisMonth && transactionOverview.thisMonth.valid ? getDisplayExpenseAmount(transactionOverview.thisMonth) : ''"
|
|
:income-amount="transactionOverview.thisMonth && transactionOverview.thisMonth.valid ? getDisplayIncomeAmount(transactionOverview.thisMonth) : ''"
|
|
:datetime="displayDateRange?.thisMonth?.startTime + '-' + displayDateRange?.thisMonth?.endTime"
|
|
>
|
|
<template #menus>
|
|
<v-list-item :prepend-icon="mdiListBoxOutline" :to="`/transaction/list?${overviewStore.getTransactionListPageParams({ dateType: DateRange.ThisMonth.type })}`">
|
|
<v-list-item-title>{{ tt('View Details') }}</v-list-item-title>
|
|
</v-list-item>
|
|
</template>
|
|
</income-expense-overview-card>
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="6">
|
|
<income-expense-overview-card
|
|
:loading="loadingOverview" :disabled="loadingOverview" :icon="mdiLayersTripleOutline"
|
|
:title="tt('This Year')"
|
|
:expense-amount="transactionOverview.thisYear && transactionOverview.thisYear.valid ? getDisplayExpenseAmount(transactionOverview.thisYear) : ''"
|
|
:income-amount="transactionOverview.thisYear && transactionOverview.thisYear.valid ? getDisplayIncomeAmount(transactionOverview.thisYear) : ''"
|
|
:datetime="displayDateRange?.thisYear?.displayTime || ''"
|
|
>
|
|
<template #menus>
|
|
<v-list-item :prepend-icon="mdiListBoxOutline" :to="`/transaction/list?${overviewStore.getTransactionListPageParams({ dateType: DateRange.ThisYear.type })}`">
|
|
<v-list-item-title>{{ tt('View Details') }}</v-list-item-title>
|
|
</v-list-item>
|
|
</template>
|
|
</income-expense-overview-card>
|
|
</v-col>
|
|
</v-row>
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="6">
|
|
<monthly-income-and-expense-card :data="monthlyIncomeAndExpenseData" :is-dark-mode="isDarkMode"
|
|
:loading="loadingOverview" :disabled="loadingOverview"
|
|
:enable-click-item="true" @click="clickMonthlyIncomeOrExpense" />
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<snack-bar ref="snackbar" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import SnackBar from '@/components/desktop/SnackBar.vue';
|
|
import IncomeExpenseOverviewCard from './overview/cards/IncomeExpenseOverviewCard.vue';
|
|
import MonthlyIncomeAndExpenseCard, { type MonthlyIncomeAndExpenseCardClickEvent } from './overview/cards/MonthlyIncomeAndExpenseCard.vue';
|
|
|
|
import { ref, computed, useTemplateRef } from 'vue';
|
|
import { useRouter } from 'vue-router';
|
|
import { useTheme } from 'vuetify';
|
|
|
|
import { useI18n } from '@/locales/helpers.ts';
|
|
import { useHomePageBase } from '@/views/base/HomePageBase.ts';
|
|
|
|
import { useAccountsStore } from '@/stores/account.ts';
|
|
import { useTransactionCategoriesStore } from '@/stores/transactionCategory.ts';
|
|
import { useOverviewStore } from '@/stores/overview.ts';
|
|
|
|
import { type NumeralSystem } from '@/core/numeral.ts';
|
|
import { DateRange } from '@/core/datetime.ts';
|
|
import { ThemeType } from '@/core/theme.ts';
|
|
import {
|
|
type TransactionMonthlyIncomeAndExpenseData,
|
|
LATEST_12MONTHS_TRANSACTION_AMOUNTS_REQUEST_TYPES
|
|
} from '@/models/transaction.ts';
|
|
|
|
import { getUnixTimeBeforeUnixTime, getUnixTimeAfterUnixTime } from '@/lib/datetime.ts';
|
|
import { isUserLogined, isUserUnlocked } from '@/lib/userstate.ts';
|
|
|
|
import {
|
|
mdiRefresh,
|
|
mdiEyeOutline,
|
|
mdiEyeOffOutline,
|
|
mdiBankOutline,
|
|
mdiCreditCardOutline,
|
|
mdiPiggyBankOutline,
|
|
mdiCalendarTodayOutline,
|
|
mdiCalendarWeekOutline,
|
|
mdiCalendarMonthOutline,
|
|
mdiLayersTripleOutline,
|
|
mdiListBoxOutline
|
|
} from '@mdi/js';
|
|
|
|
type SnackBarType = InstanceType<typeof SnackBar>;
|
|
|
|
const router = useRouter();
|
|
const theme = useTheme();
|
|
|
|
const { tt, getCurrentNumeralSystemType } = useI18n();
|
|
const {
|
|
showAmountInHomePage,
|
|
allAccounts,
|
|
netAssets,
|
|
totalAssets,
|
|
totalLiabilities,
|
|
displayDateRange,
|
|
transactionOverview,
|
|
getDisplayIncomeAmount,
|
|
getDisplayExpenseAmount
|
|
} = useHomePageBase();
|
|
|
|
const accountsStore = useAccountsStore();
|
|
const transactionCategoriesStore = useTransactionCategoriesStore();
|
|
const overviewStore = useOverviewStore();
|
|
|
|
const snackbar = useTemplateRef<SnackBarType>('snackbar');
|
|
|
|
const loadingOverview = ref<boolean>(true);
|
|
|
|
const isDarkMode = computed<boolean>(() => theme.global.name.value === ThemeType.Dark);
|
|
const numeralSystem = computed<NumeralSystem>(() => getCurrentNumeralSystemType());
|
|
|
|
const displayAccountCount = computed<string>(() => allAccounts.value ? numeralSystem.value.formatNumber(allAccounts.value.length) : numeralSystem.value.digitZero);
|
|
|
|
function clickMonthlyIncomeOrExpense(e: MonthlyIncomeAndExpenseCardClickEvent): void {
|
|
const minTime = e.monthStartTime;
|
|
const maxTime = getUnixTimeBeforeUnixTime(getUnixTimeAfterUnixTime(minTime, 1, 'months'), 1, 'seconds');
|
|
const type = e.transactionType;
|
|
|
|
router.push(`/transaction/list?${overviewStore.getTransactionListPageParams({
|
|
type: type,
|
|
dateType: DateRange.Custom.type,
|
|
minTime: minTime,
|
|
maxTime: maxTime
|
|
})}`);
|
|
}
|
|
|
|
const monthlyIncomeAndExpenseData = computed<TransactionMonthlyIncomeAndExpenseData[]>(() => {
|
|
const data: TransactionMonthlyIncomeAndExpenseData[] = [];
|
|
|
|
if (!transactionOverview.value || !transactionOverview.value.thisMonth || !transactionOverview.value.thisMonth.valid) {
|
|
return data;
|
|
}
|
|
|
|
for (const amountRequestType of LATEST_12MONTHS_TRANSACTION_AMOUNTS_REQUEST_TYPES) {
|
|
const dateRange = overviewStore.transactionDataRange[amountRequestType];
|
|
|
|
if (!dateRange) {
|
|
continue;
|
|
}
|
|
|
|
const item = transactionOverview.value[amountRequestType];
|
|
|
|
data.push({
|
|
monthStartTime: dateRange.startTime,
|
|
incomeAmount: item?.incomeAmount || 0,
|
|
expenseAmount: item?.expenseAmount || 0,
|
|
incompleteIncomeAmount: item ? item.incompleteIncomeAmount : true,
|
|
incompleteExpenseAmount: item ? item.incompleteExpenseAmount : true
|
|
});
|
|
}
|
|
|
|
return data;
|
|
});
|
|
|
|
function reload(force: boolean): void {
|
|
loadingOverview.value = true;
|
|
|
|
const promises = [
|
|
accountsStore.loadAllAccounts({ force: false }),
|
|
transactionCategoriesStore.loadAllCategories({ force: false }),
|
|
overviewStore.loadTransactionOverview({ force: force, loadLast11Months: true })
|
|
];
|
|
|
|
Promise.all(promises).then(() => {
|
|
loadingOverview.value = false;
|
|
|
|
if (force) {
|
|
snackbar.value?.showMessage('Data has been updated');
|
|
}
|
|
}).catch(error => {
|
|
loadingOverview.value = false;
|
|
|
|
if (!error.processed) {
|
|
snackbar.value?.showError(error);
|
|
}
|
|
});
|
|
}
|
|
|
|
if (isUserLogined() && isUserUnlocked()) {
|
|
reload(false);
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.overview-card-background {
|
|
position: absolute;
|
|
inline-size: 9rem;
|
|
inset-block-end: 0;
|
|
inset-inline-end: 0;
|
|
}
|
|
|
|
.overview-card-background-image {
|
|
position: absolute;
|
|
inline-size: 5rem;
|
|
inset-block-end: 0.5rem;
|
|
inset-inline-end: 1rem;
|
|
}
|
|
</style>
|