核心重构 — 去除 channel 字段,引入 sourceAccount 模型: - 从 ImportedEvent、Rule、EnhancedRule、OcrRule 等接口中彻底移除 channel 字段 - rules.ts 中 resolveChannelAccount → resolveSourceAccount,规则匹配与账户解析不再依赖渠道概念 - dedup.ts 重写去重逻辑:从基于渠道匹配改为基于交易对手(counterparty)匹配,支持相同金额/交易对手/时间窗口的多级置信度判断 - transferRecognizer.ts 增加资产负债表账户校验,确保转账双方均为 Assets/Liabilities 类账户 - 全局替换影响:types、rules、ocr、adapters、adapters-migrations、所有服务层和测试 新增基础设施: - domain/constants.ts — 统一常量定义(支付包名、截图关键词、去重参数、方向检测函数 detectDirection()),消除 OCR/SMS/截图等模块的重复定义 - domain/channelConfig.ts — 渠道配置系统(支付宝/微信/银行),支持按包名和名称查找 - domain/pipelineSingleton.ts — 共享 BillPipeline 单例,解决 importStore/automationStore 的互斥锁共享问题 - domain/transactionBuilder.ts — 统一交易构建入口 buildAndSaveTransaction(),同时服务手动录入和无障碍监听 OCR 增强: - 新增账单详情页解析(parseDetailPageBill),支持支付宝/微信详情页结构化提取 - checkIsDetailPage() 识别详情页特征词,防止误提取(如"消费1次"被误读为金额) - 金额正则支持千分位逗号分隔,商户名正则改用 lookahead 边界匹配 - 时间解析支持中文格式(年月日)和跨年推断 - OcrProcessor 新增详情页路由,跳过 Layer 1 规则匹配 UI 全面升级: - 主题重设计:accent 色从绿色改为靛蓝(#4F46E5),深色模式适配 OLED 纯黑,引入 Quicksand/Caveat 字体 - 新增 commonStyles.ts 统一 chip/input/modal 等通用样式 - 首页 Bento 网格布局:净资产英雄卡片 + 定期账单/月度统计并排展示 - 报表新增周报标签页,月报整合日历视图(支持点击查看当日交易明细) - TrendLine 图表从 View 条形图重写为 SVG 贝塞尔曲线 - CategoryPicker 从水平滚动改为 4 列网格 + emoji 图标 - Button/Card 增加 press 缩放动画 管道与自动化改进: - automationPipeline.ts 新增 handleIncomingBillEvent() 实时账单处理(悬浮账单卡片 + 前台 Alert 确认) - 新增无障碍文本直解析 parseAndProcessAccessibilityTexts(),微信/支付宝详情页绕过 OCR - rules.ts 新增智能还款检测(花呗/信用卡还款自动路由)和退款视为收入处理 - metadataStore 默认规则精简为 6 条通用规则,移除约 20 条个人化硬编码规则 存储与同步: - storePersistence.ts 原子写入 + 崩溃恢复 + 重试机制 - 备份升级到 v2 格式,包含 settings 和 metadata - 同步路径统一从 mobile.bean 改为 main.bean - _layout.tsx 启动时自动迁移旧 mobile.bean 到 main.bean 其他: - 删除独立日历页面,功能合并到报表月报标签 - i18n 清理:移除渠道相关翻译,新增 50+ 翻译键 - docs/android-build-guide.md 重写为 APK 体积优化指南 - 新增 design-system/beancount-mobile/MASTER.md 设计系统文档 - 测试全面更新覆盖以上所有变更
162 lines
7.8 KiB
TypeScript
162 lines
7.8 KiB
TypeScript
/**
|
||
* 预算管理页面(plan.md「1.1 budget/index」+ 决策 1 双轨制)。
|
||
*
|
||
* 功能:预算列表(含进度条) + 添加/编辑/删除。
|
||
* 进度计算调用 calculateBudgetProgress 纯函数,展示已用/剩余/百分比。
|
||
*/
|
||
import React, { useState } from 'react';
|
||
import { Alert, Pressable, ScrollView, StyleSheet, Text, View } from 'react-native';
|
||
import { SafeAreaView } from 'react-native-safe-area-context';
|
||
import { useRouter } from 'expo-router';
|
||
import { Ionicons } from '@expo/vector-icons';
|
||
import { useTheme } from '../../theme';
|
||
import { useLedgerStore } from '../../store/ledgerStore';
|
||
import { useMetadataStore, generateId } from '../../store/metadataStore';
|
||
import { useT } from '../../i18n';
|
||
import { Card } from '../../components/Card';
|
||
import { FormModal, type FormField } from '../../components/FormModal';
|
||
import { calculateBudgetProgress } from '../../domain/budgets';
|
||
import type { Budget } from '../../domain/budgets';
|
||
|
||
type ModalMode = { type: 'add' } | { type: 'edit'; budget: Budget } | null;
|
||
|
||
export default function BudgetScreen() {
|
||
const { theme } = useTheme();
|
||
const t = useT();
|
||
const router = useRouter();
|
||
|
||
const budgets = useMetadataStore(s => s.budgets);
|
||
const addBudget = useMetadataStore(s => s.addBudget);
|
||
const updateBudget = useMetadataStore(s => s.updateBudget);
|
||
const removeBudget = useMetadataStore(s => s.removeBudget);
|
||
const ledger = useLedgerStore(s => s.ledger);
|
||
|
||
const [modal, setModal] = useState<ModalMode>(null);
|
||
|
||
const transactions = ledger?.transactions ?? [];
|
||
const today = new Date().toISOString().slice(0, 10);
|
||
|
||
const handleDelete = (budget: Budget) => {
|
||
Alert.alert(t('budget.deleteTitle'), t('budget.deleteConfirm', { name: budget.name }), [
|
||
{ text: t('common.cancel'), style: 'cancel' },
|
||
{ text: t('common.delete'), style: 'destructive', onPress: () => removeBudget(budget.id) },
|
||
]);
|
||
};
|
||
|
||
const handleConfirm = (values: Record<string, string>) => {
|
||
const name = values.name?.trim() || t('budget.unnamed');
|
||
const amount = values.amount?.trim() || '0';
|
||
const period = (values.period as Budget['period']) || 'monthly';
|
||
const categoryAccount = values.categoryAccount?.trim() || undefined;
|
||
const startDate = values.startDate?.trim() || today;
|
||
|
||
const amtNum = parseFloat(amount);
|
||
if (isNaN(amtNum) || amtNum <= 0) {
|
||
Alert.alert(t('budget.invalidAmountTitle'), t('budget.invalidAmountDesc'));
|
||
return;
|
||
}
|
||
|
||
if (modal?.type === 'add') {
|
||
addBudget({ id: generateId('bud'), name, amount, period, categoryAccount, startDate });
|
||
} else if (modal?.type === 'edit') {
|
||
updateBudget(modal.budget.id, { name, amount, period, categoryAccount, startDate });
|
||
}
|
||
setModal(null);
|
||
};
|
||
|
||
const periodLabel = (p: string) => p === 'monthly' ? t('budget.periodMonthly') : p === 'weekly' ? t('budget.periodWeekly') : t('budget.periodYearly');
|
||
|
||
const editFields: FormField[] = modal?.type === 'edit' ? [
|
||
{ key: 'name', label: t('budget.fieldName'), placeholder: t('budget.fieldNamePlaceholder'), defaultValue: modal.budget.name },
|
||
{ key: 'amount', label: t('budget.fieldAmount'), placeholder: t('budget.fieldAmountPlaceholder'), defaultValue: modal.budget.amount, keyboardType: 'decimal-pad' },
|
||
{ key: 'period', label: t('budget.fieldPeriod'), placeholder: 'monthly', defaultValue: modal.budget.period },
|
||
{ key: 'categoryAccount', label: t('budget.fieldCategoryAccount'), placeholder: t('budget.fieldCategoryPlaceholder'), defaultValue: modal.budget.categoryAccount ?? '' },
|
||
{ key: 'startDate', label: t('budget.fieldStartDate'), placeholder: '2026-01-01', defaultValue: modal.budget.startDate },
|
||
] : [];
|
||
|
||
return (
|
||
<SafeAreaView style={[styles.page, { backgroundColor: theme.colors.bgPrimary }]} edges={['top']}>
|
||
<View style={styles.header}>
|
||
<Pressable onPress={() => router.back()}><Ionicons name="arrow-back" size={24} color={theme.colors.fgPrimary} /></Pressable>
|
||
<Text style={[theme.typography.h2, { color: theme.colors.fgPrimary, flex: 1, marginLeft: 8 }]}>{t('budget.title')}</Text>
|
||
</View>
|
||
<ScrollView contentContainerStyle={styles.content}>
|
||
<Pressable onPress={() => setModal({ type: 'add' })} style={styles.addBtn}>
|
||
<Ionicons name="add-circle" size={20} color={theme.colors.accent} />
|
||
<Text style={[theme.typography.body, { color: theme.colors.accent, marginLeft: 6 }]}>{t('budget.add')}</Text>
|
||
</Pressable>
|
||
{budgets.map(budget => {
|
||
const progress = calculateBudgetProgress(budget, transactions, today);
|
||
return (
|
||
<Pressable
|
||
key={budget.id}
|
||
onPress={() => setModal({ type: 'edit', budget })}
|
||
onLongPress={() => handleDelete(budget)}
|
||
>
|
||
<Card title={budget.name}>
|
||
<View style={styles.budgetRow}>
|
||
<Text style={[theme.typography.body, { color: theme.colors.fgPrimary }]}>
|
||
{t('budget.yuanPer', { amount: budget.amount, period: periodLabel(budget.period) })}
|
||
</Text>
|
||
<Text style={[theme.typography.caption, {
|
||
color: progress.overBudget ? theme.colors.error : theme.colors.fgSecondary,
|
||
}]}>
|
||
{t('budget.used', { spent: progress.spent, pct: progress.percentage.toFixed(0) })}
|
||
</Text>
|
||
</View>
|
||
{/* 进度条 */}
|
||
<View style={[styles.barWrap, { backgroundColor: theme.colors.bgTertiary }]}>
|
||
<View style={[
|
||
styles.bar,
|
||
{
|
||
width: `${Math.min(progress.percentage, 100)}%`,
|
||
backgroundColor: progress.overBudget ? theme.colors.error : theme.colors.accent,
|
||
},
|
||
]} />
|
||
</View>
|
||
{budget.categoryAccount && (
|
||
<Text style={[theme.typography.caption, { color: theme.colors.fgSecondary, marginTop: 4 }]}>
|
||
{budget.categoryAccount}
|
||
</Text>
|
||
)}
|
||
</Card>
|
||
</Pressable>
|
||
);
|
||
})}
|
||
{budgets.length === 0 && (
|
||
<Text style={[theme.typography.caption, { color: theme.colors.fgSecondary, textAlign: 'center', marginTop: 20 }]}>
|
||
{t('budget.empty')}
|
||
</Text>
|
||
)}
|
||
<Text style={[theme.typography.caption, { color: theme.colors.fgSecondary, textAlign: 'center', marginTop: 8 }]}>
|
||
{t('common.clickEditLongDelete')}
|
||
</Text>
|
||
</ScrollView>
|
||
|
||
<FormModal
|
||
visible={modal !== null}
|
||
title={modal?.type === 'edit' ? t('budget.editTitle') : t('budget.add')}
|
||
fields={modal?.type === 'edit' ? editFields : [
|
||
{ key: 'name', label: t('budget.fieldName'), placeholder: t('budget.fieldNamePlaceholder') },
|
||
{ key: 'amount', label: t('budget.fieldAmount'), placeholder: t('budget.fieldAmountPlaceholder'), keyboardType: 'decimal-pad' },
|
||
{ key: 'period', label: t('budget.fieldPeriod'), placeholder: 'monthly' },
|
||
{ key: 'categoryAccount', label: t('budget.fieldCategoryAccount'), placeholder: t('budget.fieldCategoryPlaceholder') },
|
||
{ key: 'startDate', label: t('budget.fieldStartDate'), placeholder: '2026-01-01' },
|
||
]}
|
||
onConfirm={handleConfirm}
|
||
onCancel={() => setModal(null)}
|
||
/>
|
||
</SafeAreaView>
|
||
);
|
||
}
|
||
|
||
const styles = StyleSheet.create({
|
||
page: { flex: 1 },
|
||
header: { flexDirection: 'row', alignItems: 'center', paddingHorizontal: 16, paddingTop: 8, paddingBottom: 12 },
|
||
content: { padding: 16, gap: 12 },
|
||
addBtn: { flexDirection: 'row', alignItems: 'center' },
|
||
budgetRow: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' },
|
||
barWrap: { height: 8, borderRadius: 4, overflow: 'hidden', marginTop: 8 },
|
||
bar: { height: '100%', borderRadius: 4 },
|
||
});
|