21 lines
715 B
JavaScript
21 lines
715 B
JavaScript
import {
|
|
getLast30DaysTransactionsSums,
|
|
getUnallocatedTransactions,
|
|
getUnderallocatedTransactions,
|
|
getTotal,
|
|
getBudgets,
|
|
getAllBudgetTransactions
|
|
} from '$lib/db';
|
|
|
|
|
|
export async function load({ params }) {
|
|
const unallocatedTrans = await getUnallocatedTransactions();
|
|
const underAllocatedTrans = await getUnderallocatedTransactions();
|
|
const total = await getTotal();
|
|
const budgets = await getBudgets();
|
|
const budgetTransactions = await getAllBudgetTransactions();
|
|
const last30DaysTransactionsSums = await getLast30DaysTransactionsSums();
|
|
|
|
return { unallocatedTrans, underAllocatedTrans, total, budgets, budgetTransactions, last30DaysTransactionsSums };
|
|
}
|