mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
O Companion envia hora local com 'Z' literal (nao converte para UTC), entao o timestamp no DB ja carrega a data correta de Brasilia. Usava-se +3h no frontend, que deslocava a virada de dia para as 21h locais e fazia compras da tarde aparecerem como 'Ontem'. - getItemDateKey: remove offset (data UTC ja e a data de Brasilia) - getBrasiliaDateKey: usa UTC-3 apenas para calcular hoje/ontem - Paraleliza insercoes no batch endpoint com Promise.allSettled - Usa selectDistinct no fetchInboxSourceApps - Envolve InboxCard em memo e callbacks em useCallback Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
263 lines
6.0 KiB
TypeScript
263 lines
6.0 KiB
TypeScript
import { and, count, desc, eq } from "drizzle-orm";
|
|
import { cards, categories, financialAccounts, inboxItems } from "@/db/schema";
|
|
import type {
|
|
InboxItem,
|
|
InboxPaginationState,
|
|
InboxStatus,
|
|
InboxStatusCounts,
|
|
SelectOption,
|
|
} from "@/features/inbox/components/types";
|
|
import {
|
|
buildOptionSets,
|
|
buildSluggedFilters,
|
|
} from "@/features/transactions/page-helpers";
|
|
import {
|
|
fetchRecentEstablishments,
|
|
fetchTransactionFilterSources,
|
|
} from "@/features/transactions/queries";
|
|
import { db } from "@/shared/lib/db";
|
|
|
|
export async function fetchInboxItems(
|
|
userId: string,
|
|
status: InboxStatus = "pending",
|
|
): Promise<InboxItem[]> {
|
|
const items = await db
|
|
.select()
|
|
.from(inboxItems)
|
|
.where(and(eq(inboxItems.userId, userId), eq(inboxItems.status, status)))
|
|
.orderBy(
|
|
desc(inboxItems.notificationTimestamp),
|
|
desc(inboxItems.createdAt),
|
|
);
|
|
|
|
return items;
|
|
}
|
|
|
|
export async function fetchInboxItemsPage(
|
|
userId: string,
|
|
status: InboxStatus,
|
|
{
|
|
page,
|
|
pageSize,
|
|
sourceApp,
|
|
}: {
|
|
page: number;
|
|
pageSize: number;
|
|
sourceApp?: string | null;
|
|
},
|
|
): Promise<{
|
|
items: InboxItem[];
|
|
pagination: InboxPaginationState;
|
|
}> {
|
|
const where = and(
|
|
eq(inboxItems.userId, userId),
|
|
eq(inboxItems.status, status),
|
|
sourceApp ? eq(inboxItems.sourceAppName, sourceApp) : undefined,
|
|
);
|
|
|
|
const [countRow] = await db
|
|
.select({ total: count() })
|
|
.from(inboxItems)
|
|
.where(where);
|
|
|
|
const totalItems = Number(countRow?.total ?? 0);
|
|
const totalPages = Math.max(Math.ceil(totalItems / pageSize), 1);
|
|
const currentPage = Math.min(page, totalPages);
|
|
const offset = (currentPage - 1) * pageSize;
|
|
|
|
const items = await db
|
|
.select()
|
|
.from(inboxItems)
|
|
.where(where)
|
|
.orderBy(desc(inboxItems.notificationTimestamp), desc(inboxItems.createdAt))
|
|
.limit(pageSize)
|
|
.offset(offset);
|
|
|
|
return {
|
|
items,
|
|
pagination: {
|
|
page: currentPage,
|
|
pageSize,
|
|
totalItems,
|
|
totalPages,
|
|
},
|
|
};
|
|
}
|
|
|
|
export async function fetchInboxSourceApps(
|
|
userId: string,
|
|
status: InboxStatus,
|
|
): Promise<string[]> {
|
|
const rows = await db
|
|
.selectDistinct({ name: inboxItems.sourceAppName })
|
|
.from(inboxItems)
|
|
.where(and(eq(inboxItems.userId, userId), eq(inboxItems.status, status)));
|
|
|
|
return rows
|
|
.map((row) => row.name)
|
|
.filter((name): name is string => name !== null)
|
|
.sort();
|
|
}
|
|
|
|
export async function fetchInboxStatusCounts(
|
|
userId: string,
|
|
): Promise<InboxStatusCounts> {
|
|
const rows = await db
|
|
.select({
|
|
status: inboxItems.status,
|
|
total: count(),
|
|
})
|
|
.from(inboxItems)
|
|
.where(eq(inboxItems.userId, userId))
|
|
.groupBy(inboxItems.status);
|
|
|
|
const counts: InboxStatusCounts = {
|
|
pending: 0,
|
|
processed: 0,
|
|
discarded: 0,
|
|
};
|
|
|
|
for (const row of rows) {
|
|
if (row.status in counts) {
|
|
counts[row.status as InboxStatus] = Number(row.total ?? 0);
|
|
}
|
|
}
|
|
|
|
return counts;
|
|
}
|
|
|
|
export async function fetchInboxItemById(
|
|
userId: string,
|
|
itemId: string,
|
|
): Promise<InboxItem | null> {
|
|
const [item] = await db
|
|
.select()
|
|
.from(inboxItems)
|
|
.where(and(eq(inboxItems.id, itemId), eq(inboxItems.userId, userId)))
|
|
.limit(1);
|
|
|
|
return item ?? null;
|
|
}
|
|
|
|
export async function fetchCategoriesForSelect(
|
|
userId: string,
|
|
type?: string,
|
|
): Promise<SelectOption[]> {
|
|
const rows = await db
|
|
.select({ id: categories.id, name: categories.name })
|
|
.from(categories)
|
|
.where(
|
|
type
|
|
? and(eq(categories.userId, userId), eq(categories.type, type))
|
|
: eq(categories.userId, userId),
|
|
)
|
|
.orderBy(categories.name);
|
|
|
|
return rows.map((row) => ({ value: row.id, label: row.name }));
|
|
}
|
|
|
|
export async function fetchAccountsForSelect(
|
|
userId: string,
|
|
): Promise<SelectOption[]> {
|
|
const rows = await db
|
|
.select({ id: financialAccounts.id, name: financialAccounts.name })
|
|
.from(financialAccounts)
|
|
.where(
|
|
and(
|
|
eq(financialAccounts.userId, userId),
|
|
eq(financialAccounts.status, "ativo"),
|
|
),
|
|
)
|
|
.orderBy(financialAccounts.name);
|
|
|
|
return rows.map((row) => ({ value: row.id, label: row.name }));
|
|
}
|
|
|
|
export async function fetchCardsForSelect(
|
|
userId: string,
|
|
): Promise<(SelectOption & { lastDigits?: string })[]> {
|
|
const rows = await db
|
|
.select({ id: cards.id, name: cards.name })
|
|
.from(cards)
|
|
.where(and(eq(cards.userId, userId), eq(cards.status, "ativo")))
|
|
.orderBy(cards.name);
|
|
|
|
return rows.map((row) => ({ value: row.id, label: row.name }));
|
|
}
|
|
|
|
export async function fetchAppLogoMap(
|
|
userId: string,
|
|
): Promise<Record<string, string>> {
|
|
const [userCartoes, userContas] = await Promise.all([
|
|
db
|
|
.select({ name: cards.name, logo: cards.logo })
|
|
.from(cards)
|
|
.where(eq(cards.userId, userId)),
|
|
db
|
|
.select({ name: financialAccounts.name, logo: financialAccounts.logo })
|
|
.from(financialAccounts)
|
|
.where(eq(financialAccounts.userId, userId)),
|
|
]);
|
|
|
|
const logoMap: Record<string, string> = {};
|
|
|
|
for (const item of [...userCartoes, ...userContas]) {
|
|
if (item.logo) {
|
|
logoMap[item.name.toLowerCase()] = item.logo;
|
|
}
|
|
}
|
|
|
|
return logoMap;
|
|
}
|
|
|
|
export async function fetchPendingInboxCount(userId: string): Promise<number> {
|
|
const [result] = await db
|
|
.select({ total: count() })
|
|
.from(inboxItems)
|
|
.where(
|
|
and(eq(inboxItems.userId, userId), eq(inboxItems.status, "pending")),
|
|
);
|
|
|
|
return Number(result?.total ?? 0);
|
|
}
|
|
|
|
/**
|
|
* Fetch all data needed for the TransactionDialog in inbox context
|
|
*/
|
|
export async function fetchInboxDialogData(userId: string): Promise<{
|
|
payerOptions: SelectOption[];
|
|
splitPayerOptions: SelectOption[];
|
|
defaultPayerId: string | null;
|
|
accountOptions: SelectOption[];
|
|
cardOptions: SelectOption[];
|
|
categoryOptions: SelectOption[];
|
|
estabelecimentos: string[];
|
|
}> {
|
|
const filterSources = await fetchTransactionFilterSources(userId);
|
|
const sluggedFilters = buildSluggedFilters(filterSources);
|
|
|
|
const {
|
|
payerOptions,
|
|
splitPayerOptions,
|
|
defaultPayerId,
|
|
accountOptions,
|
|
cardOptions,
|
|
categoryOptions,
|
|
} = buildOptionSets({
|
|
...sluggedFilters,
|
|
payerRows: filterSources.payerRows,
|
|
});
|
|
|
|
const estabelecimentos = await fetchRecentEstablishments(userId);
|
|
|
|
return {
|
|
payerOptions,
|
|
splitPayerOptions,
|
|
defaultPayerId,
|
|
accountOptions,
|
|
cardOptions,
|
|
categoryOptions,
|
|
estabelecimentos,
|
|
};
|
|
}
|