2023-12-29 21:39:54 +01:00
|
|
|
// ignore_for_file: inference_failure_on_function_invocation
|
|
|
|
|
|
|
|
import 'dart:async';
|
|
|
|
|
2024-01-08 21:53:51 +01:00
|
|
|
import 'package:dynamic_color/dynamic_color.dart';
|
2023-11-21 20:23:14 +01:00
|
|
|
import 'package:flutter/foundation.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2024-01-22 23:32:21 +01:00
|
|
|
import 'package:flutter_file_dialog/flutter_file_dialog.dart';
|
2023-12-29 21:39:54 +01:00
|
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
2023-09-14 19:44:34 +02:00
|
|
|
import 'package:flutter_slidable/flutter_slidable.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
import 'package:flutter_speed_dial/flutter_speed_dial.dart';
|
2023-10-05 17:47:20 +02:00
|
|
|
import 'package:flutter_tesseract_ocr/flutter_tesseract_ocr.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
import 'package:grouped_list/grouped_list.dart';
|
|
|
|
import 'package:intl/date_symbol_data_local.dart';
|
|
|
|
import 'package:intl/intl.dart';
|
2023-11-01 17:58:05 +01:00
|
|
|
import 'package:prasule/api/category.dart';
|
2023-10-09 17:28:05 +02:00
|
|
|
import 'package:prasule/api/entry_data.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
import 'package:prasule/api/wallet.dart';
|
2024-01-08 21:19:15 +01:00
|
|
|
import 'package:prasule/api/wallet_entry.dart';
|
|
|
|
import 'package:prasule/api/wallet_manager.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
import 'package:prasule/main.dart';
|
|
|
|
import 'package:prasule/network/tessdata.dart';
|
2023-09-14 19:44:34 +02:00
|
|
|
import 'package:prasule/pw/platformbutton.dart';
|
2024-01-22 19:20:41 +01:00
|
|
|
import 'package:prasule/pw/platformfield.dart';
|
2023-11-01 17:58:05 +01:00
|
|
|
import 'package:prasule/pw/platformroute.dart';
|
2023-11-21 20:23:14 +01:00
|
|
|
import 'package:prasule/util/drawer.dart';
|
2024-01-29 20:07:56 +01:00
|
|
|
import 'package:prasule/util/sorting.dart';
|
2024-01-08 15:38:31 +01:00
|
|
|
import 'package:prasule/util/text_color.dart';
|
2024-01-29 19:40:34 +01:00
|
|
|
import 'package:prasule/util/utils.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
import 'package:prasule/views/create_entry.dart';
|
|
|
|
import 'package:prasule/views/settings/settings.dart';
|
2023-10-05 17:47:20 +02:00
|
|
|
import 'package:prasule/views/settings/tessdata_list.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
import 'package:prasule/views/setup.dart';
|
|
|
|
|
2023-12-29 21:39:54 +01:00
|
|
|
/// Main view, shows entries
|
2023-09-08 11:50:21 +02:00
|
|
|
class HomeView extends StatefulWidget {
|
2023-12-29 21:39:54 +01:00
|
|
|
/// Main view, shows entries
|
2023-09-08 11:50:21 +02:00
|
|
|
const HomeView({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<HomeView> createState() => _HomeViewState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _HomeViewState extends State<HomeView> {
|
2024-01-29 20:07:56 +01:00
|
|
|
Wallet? selectedWallet; // current wallet
|
|
|
|
List<Wallet> wallets = []; // all available wallets
|
2023-09-08 11:50:21 +02:00
|
|
|
DateTime? prevDate;
|
2024-01-29 20:07:56 +01:00
|
|
|
late String locale; // user's locale
|
|
|
|
var _searchActive = false; // whether search field is shown
|
|
|
|
var _filter = ""; // search filter
|
2024-01-22 19:20:41 +01:00
|
|
|
final searchFocus = FocusNode();
|
2024-01-29 20:07:56 +01:00
|
|
|
var sort = SortType.newest;
|
|
|
|
|
2023-09-08 11:50:21 +02:00
|
|
|
@override
|
|
|
|
void didChangeDependencies() {
|
|
|
|
super.didChangeDependencies();
|
|
|
|
locale = Localizations.localeOf(context).languageCode;
|
|
|
|
initializeDateFormatting(Localizations.localeOf(context).languageCode);
|
2023-09-14 19:44:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2023-09-08 11:50:21 +02:00
|
|
|
loadWallet();
|
|
|
|
}
|
|
|
|
|
2023-12-29 21:39:54 +01:00
|
|
|
Future<void> loadWallet() async {
|
2023-11-01 18:39:21 +01:00
|
|
|
wallets = await WalletManager.listWallets();
|
2023-09-08 11:50:21 +02:00
|
|
|
if (wallets.isEmpty && mounted) {
|
2023-12-29 21:39:54 +01:00
|
|
|
unawaited(
|
|
|
|
Navigator.of(context)
|
|
|
|
.pushReplacement(platformRoute((c) => const SetupView())),
|
|
|
|
);
|
2023-09-08 11:50:21 +02:00
|
|
|
return;
|
|
|
|
}
|
2023-11-01 18:39:21 +01:00
|
|
|
selectedWallet = wallets.first;
|
2024-01-08 21:19:15 +01:00
|
|
|
selectedWallet!.recurEntries();
|
2023-09-08 11:50:21 +02:00
|
|
|
setState(() {});
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-01-22 19:20:41 +01:00
|
|
|
return PopScope(
|
|
|
|
canPop: !_searchActive, // don't pop when we just want
|
|
|
|
// to deactivate searchfield
|
|
|
|
onPopInvoked: (b) {
|
|
|
|
if (b) return;
|
|
|
|
_searchActive = false;
|
|
|
|
_filter = "";
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
child: Scaffold(
|
|
|
|
drawer: makeDrawer(context, 1),
|
|
|
|
floatingActionButton: SpeedDial(
|
|
|
|
icon: Icons.add,
|
|
|
|
activeIcon: Icons.close,
|
|
|
|
children: [
|
|
|
|
if (kDebugMode)
|
|
|
|
SpeedDialChild(
|
|
|
|
child: const Icon(Icons.bug_report),
|
|
|
|
label: AppLocalizations.of(context).createTestData,
|
|
|
|
onTap: () {
|
|
|
|
// debug option to quickly fill a wallet with data
|
|
|
|
if (selectedWallet == null) return;
|
|
|
|
selectedWallet!.createTestEntries().then((_) {
|
|
|
|
Navigator.of(context).pushReplacement(
|
|
|
|
platformRoute(
|
|
|
|
(p0) => const HomeView(),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
2023-11-21 20:23:14 +01:00
|
|
|
SpeedDialChild(
|
2024-01-22 19:20:41 +01:00
|
|
|
child: const Icon(Icons.edit),
|
|
|
|
label: AppLocalizations.of(context).addNew,
|
|
|
|
onTap: () async {
|
|
|
|
final sw = await Navigator.of(context).push<Wallet>(
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (c) => CreateSingleEntryView(w: selectedWallet!),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
if (sw != null) {
|
|
|
|
selectedWallet = sw;
|
|
|
|
}
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
SpeedDialChild(
|
|
|
|
child: const Icon(Icons.camera_alt),
|
|
|
|
label: AppLocalizations.of(context).addCamera,
|
2024-01-22 23:32:21 +01:00
|
|
|
onTap: () {
|
|
|
|
startOcr(SourceType.camera);
|
2024-01-22 19:20:41 +01:00
|
|
|
},
|
|
|
|
),
|
|
|
|
SpeedDialChild(
|
|
|
|
child: const Icon(Icons.image),
|
|
|
|
label: AppLocalizations.of(context).addGallery,
|
2023-11-21 20:23:14 +01:00
|
|
|
onTap: () {
|
2024-01-22 23:32:21 +01:00
|
|
|
startOcr(SourceType.photoLibrary);
|
2024-01-22 19:20:41 +01:00
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
appBar: AppBar(
|
|
|
|
title: AnimatedCrossFade(
|
|
|
|
duration: const Duration(milliseconds: 500),
|
|
|
|
crossFadeState: _searchActive
|
|
|
|
? CrossFadeState.showFirst
|
|
|
|
: CrossFadeState.showSecond,
|
|
|
|
firstChild: PlatformField(
|
|
|
|
inputBorder: InputBorder.none,
|
|
|
|
focusNode: searchFocus,
|
|
|
|
onChanged: (e) {
|
|
|
|
_filter = e;
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
labelText: AppLocalizations.of(context).searchLabel,
|
|
|
|
),
|
|
|
|
secondChild: DropdownButton<int>(
|
|
|
|
value: (selectedWallet == null)
|
|
|
|
? -1
|
|
|
|
: wallets.indexOf(selectedWallet!),
|
|
|
|
items: [
|
|
|
|
...wallets.map(
|
|
|
|
(e) => DropdownMenuItem(
|
|
|
|
value: wallets.indexOf(
|
|
|
|
e,
|
|
|
|
),
|
|
|
|
child: Text(e.name),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
DropdownMenuItem(
|
|
|
|
value: -1,
|
|
|
|
child: Text(AppLocalizations.of(context).newWallet),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
onChanged: (v) async {
|
|
|
|
if (v == null || v == -1) {
|
|
|
|
await Navigator.of(context).push(
|
2023-11-21 20:23:14 +01:00
|
|
|
platformRoute(
|
2024-01-22 19:20:41 +01:00
|
|
|
(c) => const SetupView(
|
|
|
|
newWallet: true,
|
|
|
|
),
|
2023-11-21 20:23:14 +01:00
|
|
|
),
|
|
|
|
);
|
2024-01-22 19:20:41 +01:00
|
|
|
wallets = await WalletManager.listWallets();
|
|
|
|
selectedWallet = wallets.last;
|
|
|
|
setState(() {});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
selectedWallet = wallets[v];
|
|
|
|
setState(() {});
|
2023-11-21 20:23:14 +01:00
|
|
|
},
|
|
|
|
),
|
2023-09-08 11:50:21 +02:00
|
|
|
),
|
2024-01-29 20:07:56 +01:00
|
|
|
actions: _searchActive
|
|
|
|
? []
|
|
|
|
: [
|
|
|
|
PopupMenuButton(
|
|
|
|
tooltip: AppLocalizations.of(context).sort,
|
|
|
|
icon: const Icon(Icons.sort_rounded),
|
|
|
|
itemBuilder: (context) => [
|
|
|
|
AppLocalizations.of(context).sortNewest,
|
|
|
|
AppLocalizations.of(context).sortOldest,
|
|
|
|
]
|
|
|
|
.map(
|
|
|
|
(e) => PopupMenuItem(
|
|
|
|
value: e,
|
|
|
|
child: Text(e),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.toList(),
|
|
|
|
onSelected: (value) {
|
|
|
|
if (value == AppLocalizations.of(context).sortNewest) {
|
|
|
|
sort = SortType.newest;
|
|
|
|
setState(() {});
|
|
|
|
} else if (value ==
|
|
|
|
AppLocalizations.of(context).sortOldest) {
|
|
|
|
sort = SortType.oldest;
|
|
|
|
setState(() {});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
PopupMenuButton(
|
|
|
|
itemBuilder: (context) => [
|
|
|
|
AppLocalizations.of(context).settings,
|
2024-01-29 20:19:03 +01:00
|
|
|
AppLocalizations.of(context).search,
|
2024-01-29 20:07:56 +01:00
|
|
|
AppLocalizations.of(context).about,
|
|
|
|
]
|
|
|
|
.map((e) => PopupMenuItem(value: e, child: Text(e)))
|
|
|
|
.toList(),
|
|
|
|
onSelected: (value) {
|
|
|
|
if (value == AppLocalizations.of(context).settings) {
|
|
|
|
Navigator.of(context)
|
|
|
|
.push(
|
|
|
|
platformRoute(
|
|
|
|
(context) => const SettingsView(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.then((value) async {
|
|
|
|
wallets = await WalletManager.listWallets();
|
|
|
|
selectedWallet = await WalletManager.loadWallet(
|
|
|
|
selectedWallet!.name);
|
|
|
|
});
|
|
|
|
} else if (value == AppLocalizations.of(context).about) {
|
|
|
|
showAbout(context);
|
2024-01-29 20:19:03 +01:00
|
|
|
} else if (value == AppLocalizations.of(context).search) {
|
|
|
|
_searchActive = !_searchActive;
|
|
|
|
if (!_searchActive) {
|
|
|
|
_filter = "";
|
|
|
|
}
|
|
|
|
setState(() {});
|
2024-01-29 20:07:56 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
2023-11-01 18:39:21 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
body: Center(
|
|
|
|
child: SizedBox(
|
|
|
|
width: MediaQuery.of(context).size.width * 0.9,
|
|
|
|
height: MediaQuery.of(context).size.height,
|
|
|
|
child: (selectedWallet == null)
|
|
|
|
? const Column(
|
|
|
|
children: [
|
|
|
|
SizedBox(
|
|
|
|
width: 40,
|
|
|
|
height: 40,
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
: (selectedWallet!.entries.isEmpty)
|
|
|
|
? Column(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
AppLocalizations.of(context).noEntries,
|
|
|
|
style: const TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
2023-09-08 11:50:21 +02:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
Text(
|
|
|
|
AppLocalizations.of(context).noEntriesSub,
|
2023-11-21 20:23:14 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
],
|
|
|
|
)
|
|
|
|
: Overlay(
|
|
|
|
initialEntries: [
|
|
|
|
OverlayEntry(
|
|
|
|
builder: (context) => Column(
|
2024-01-22 15:15:10 +01:00
|
|
|
children: [
|
2024-01-22 19:20:41 +01:00
|
|
|
Text(
|
|
|
|
NumberFormat.compactCurrency(
|
2024-01-22 15:15:10 +01:00
|
|
|
locale: locale,
|
|
|
|
symbol: selectedWallet!.currency.symbol,
|
|
|
|
).format(
|
2024-01-22 19:20:41 +01:00
|
|
|
selectedWallet!.calculateCurrentBalance(),
|
|
|
|
),
|
|
|
|
style: const TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 22,
|
2023-12-29 21:39:54 +01:00
|
|
|
),
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
const SizedBox(
|
|
|
|
height: 5,
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
if (selectedWallet!.calculateMonthStatus(
|
|
|
|
DateTime.now().month,
|
|
|
|
DateTime.now().year,
|
|
|
|
) ==
|
|
|
|
0)
|
|
|
|
Text(AppLocalizations.of(context).evenMoney)
|
|
|
|
else
|
|
|
|
RichText(
|
|
|
|
text: TextSpan(
|
|
|
|
children: [
|
|
|
|
TextSpan(
|
|
|
|
text: AppLocalizations.of(context)
|
|
|
|
.balanceStatusA,
|
2024-01-29 23:51:25 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.onBackground,
|
|
|
|
),
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
TextSpan(
|
|
|
|
style: TextStyle(
|
|
|
|
color: (selectedWallet!
|
|
|
|
.calculateMonthStatus(
|
|
|
|
DateTime.now().month,
|
|
|
|
DateTime.now().year,
|
|
|
|
) >
|
|
|
|
0
|
|
|
|
? ((MediaQuery.of(context)
|
|
|
|
.platformBrightness ==
|
|
|
|
Brightness.dark)
|
|
|
|
? Colors.green.shade300
|
|
|
|
: Colors.green)
|
|
|
|
.harmonizeWith(
|
|
|
|
Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.primary,
|
|
|
|
)
|
|
|
|
: ((MediaQuery.of(context)
|
|
|
|
.platformBrightness ==
|
|
|
|
Brightness.dark)
|
|
|
|
? Colors.red.shade300
|
|
|
|
: Colors.red)
|
|
|
|
.harmonizeWith(
|
|
|
|
Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.primary,
|
|
|
|
)),
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
text: NumberFormat.compactCurrency(
|
|
|
|
locale: locale,
|
|
|
|
symbol:
|
|
|
|
selectedWallet!.currency.symbol,
|
|
|
|
).format(
|
|
|
|
selectedWallet!
|
|
|
|
.calculateMonthStatus(
|
|
|
|
DateTime.now().month,
|
|
|
|
DateTime.now().year,
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
),
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
TextSpan(
|
|
|
|
text: AppLocalizations.of(context)
|
|
|
|
.balanceStatusB,
|
2024-01-29 23:51:25 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.onBackground,
|
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
),
|
|
|
|
],
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-08 21:53:51 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
const SizedBox(
|
|
|
|
height: 10,
|
2024-01-08 21:53:51 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
Expanded(
|
|
|
|
child: GroupedListView(
|
|
|
|
groupHeaderBuilder: (element) => Text(
|
|
|
|
DateFormat.yMMMM(locale)
|
|
|
|
.format(element.date),
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.primary,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
elements: selectedWallet!.entries
|
2024-01-29 19:40:34 +01:00
|
|
|
.where(
|
|
|
|
(element) => element.data.name
|
2024-01-29 20:19:03 +01:00
|
|
|
.toLowerCase()
|
|
|
|
.contains(_filter.toLowerCase()),
|
2024-01-29 19:40:34 +01:00
|
|
|
)
|
2024-01-22 19:20:41 +01:00
|
|
|
.toList(),
|
|
|
|
itemComparator: (a, b) =>
|
2024-01-29 20:07:56 +01:00
|
|
|
(sort == SortType.newest)
|
|
|
|
? b.date.compareTo(a.date)
|
|
|
|
: a.date.compareTo(b.date),
|
2024-01-22 19:20:41 +01:00
|
|
|
groupBy: (e) =>
|
|
|
|
DateFormat.yMMMM(locale).format(e.date),
|
2024-01-29 20:07:56 +01:00
|
|
|
groupComparator: (a, b) =>
|
|
|
|
(sort == SortType.newest)
|
|
|
|
? groupSortNewest(a, b, locale)
|
|
|
|
: groupSortOldest(a, b, locale),
|
2024-01-22 19:20:41 +01:00
|
|
|
itemBuilder: (context, element) => Slidable(
|
|
|
|
endActionPane: ActionPane(
|
|
|
|
motion: const ScrollMotion(),
|
|
|
|
children: [
|
|
|
|
SlidableAction(
|
|
|
|
onPressed: (c) {
|
|
|
|
Navigator.of(context)
|
|
|
|
.push<WalletSingleEntry>(
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (c) =>
|
|
|
|
CreateSingleEntryView(
|
|
|
|
w: selectedWallet!,
|
|
|
|
editEntry: element,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.then(
|
|
|
|
(editedEntry) {
|
|
|
|
if (editedEntry == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
selectedWallet!.entries
|
|
|
|
.remove(element);
|
|
|
|
selectedWallet!.entries
|
|
|
|
.add(editedEntry);
|
|
|
|
WalletManager.saveWallet(
|
|
|
|
selectedWallet!,
|
|
|
|
);
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
backgroundColor: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.secondary,
|
|
|
|
foregroundColor: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.onSecondary,
|
|
|
|
icon: Icons.edit,
|
|
|
|
),
|
|
|
|
SlidableAction(
|
|
|
|
backgroundColor: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.error,
|
|
|
|
foregroundColor: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.onError,
|
|
|
|
icon: Icons.delete,
|
|
|
|
onPressed: (c) {
|
2024-01-22 20:26:10 +01:00
|
|
|
showAdaptiveDialog(
|
2024-01-22 19:20:41 +01:00
|
|
|
context: context,
|
2024-01-22 20:26:10 +01:00
|
|
|
builder: (cx) =>
|
|
|
|
AlertDialog.adaptive(
|
|
|
|
title: Text(
|
|
|
|
AppLocalizations.of(
|
|
|
|
context,
|
|
|
|
).sureDialog,
|
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
content: Text(
|
|
|
|
AppLocalizations.of(context)
|
|
|
|
.deleteSure,
|
|
|
|
),
|
|
|
|
actions: [
|
|
|
|
PlatformButton(
|
|
|
|
text: AppLocalizations.of(
|
|
|
|
context,
|
|
|
|
).yes,
|
|
|
|
onPressed: () {
|
|
|
|
selectedWallet?.entries
|
|
|
|
.removeWhere(
|
|
|
|
(e) =>
|
|
|
|
e.id ==
|
|
|
|
element.id,
|
|
|
|
);
|
|
|
|
|
|
|
|
WalletManager
|
|
|
|
.saveWallet(
|
|
|
|
selectedWallet!,
|
|
|
|
);
|
|
|
|
Navigator.of(cx).pop();
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
PlatformButton(
|
|
|
|
text: AppLocalizations.of(
|
|
|
|
context,
|
|
|
|
).no,
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(cx).pop();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
child: ListTile(
|
|
|
|
leading: Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius:
|
|
|
|
BorderRadius.circular(16),
|
|
|
|
color: element.category.color,
|
|
|
|
),
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.all(8),
|
|
|
|
child: Icon(
|
|
|
|
element.category.icon,
|
|
|
|
color: element.category.color
|
|
|
|
.calculateTextColor(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
title: Text(element.data.name),
|
|
|
|
subtitle: RichText(
|
|
|
|
text: TextSpan(
|
|
|
|
children: [
|
|
|
|
TextSpan(
|
|
|
|
text: NumberFormat.currency(
|
|
|
|
symbol: selectedWallet!
|
|
|
|
.currency.symbol,
|
|
|
|
).format(element.data.amount),
|
|
|
|
style: TextStyle(
|
|
|
|
color: (element.type ==
|
|
|
|
EntryType.income)
|
|
|
|
? (MediaQuery.of(context)
|
|
|
|
.platformBrightness ==
|
|
|
|
Brightness.dark)
|
|
|
|
? Colors
|
|
|
|
.green.shade300
|
|
|
|
: Colors.green
|
|
|
|
.harmonizeWith(
|
|
|
|
Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.primary,
|
|
|
|
)
|
|
|
|
: (MediaQuery.of(context)
|
|
|
|
.platformBrightness ==
|
|
|
|
Brightness.dark)
|
|
|
|
? Colors.red.shade300
|
|
|
|
: Colors.red
|
|
|
|
.harmonizeWith(
|
|
|
|
Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.primary,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
TextSpan(
|
|
|
|
text:
|
|
|
|
" | ${DateFormat.MMMd(locale).format(element.date)}",
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.background
|
|
|
|
.calculateTextColor(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
),
|
2024-01-09 00:31:03 +01:00
|
|
|
),
|
2024-01-08 21:53:51 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2024-01-30 22:03:03 +01:00
|
|
|
if (_searchActive)
|
|
|
|
OverlayEntry(
|
|
|
|
builder: (context) => SizedBox(
|
|
|
|
width: MediaQuery.of(context).size.width,
|
|
|
|
height: MediaQuery.of(context).size.height,
|
|
|
|
child: GestureDetector(
|
|
|
|
onTap: () {
|
|
|
|
if (!_searchActive) return;
|
|
|
|
if (!searchFocus.hasFocus) {
|
|
|
|
_searchActive = false;
|
|
|
|
_filter = "";
|
|
|
|
setState(() {});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
searchFocus.unfocus();
|
|
|
|
},
|
|
|
|
),
|
2024-01-22 15:15:10 +01:00
|
|
|
),
|
2024-01-08 21:53:51 +01:00
|
|
|
),
|
2024-01-22 19:20:41 +01:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2023-09-08 11:50:21 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-01-22 23:32:21 +01:00
|
|
|
Future<void> startOcr(SourceType sourceType) async {
|
2023-12-29 21:39:54 +01:00
|
|
|
final availableLanguages = await TessdataApi.getDownloadedData();
|
2023-10-05 17:47:20 +02:00
|
|
|
if (availableLanguages.isEmpty) {
|
|
|
|
if (!mounted) return;
|
2024-01-22 20:26:10 +01:00
|
|
|
await showAdaptiveDialog(
|
2024-01-09 00:31:03 +01:00
|
|
|
context: context,
|
2024-01-22 20:26:10 +01:00
|
|
|
builder: (c) => AlertDialog.adaptive(
|
|
|
|
title: Text(AppLocalizations.of(context).missingOcr),
|
2024-01-09 00:31:03 +01:00
|
|
|
actions: [
|
|
|
|
PlatformButton(
|
|
|
|
text: AppLocalizations.of(context).download,
|
|
|
|
onPressed: () {
|
2024-01-09 23:03:23 +01:00
|
|
|
Navigator.of(context)
|
|
|
|
.push(
|
|
|
|
platformRoute(
|
|
|
|
(c) => const TessdataListView(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.then((value) => Navigator.of(c).pop());
|
2024-01-09 00:31:03 +01:00
|
|
|
},
|
|
|
|
),
|
|
|
|
PlatformButton(
|
|
|
|
text: AppLocalizations.of(context).ok,
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(c).pop();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
2023-10-05 17:47:20 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!mounted) return;
|
2023-12-29 21:39:54 +01:00
|
|
|
final selectedLanguages =
|
|
|
|
List<bool>.filled(availableLanguages.length, false);
|
2023-10-09 17:28:05 +02:00
|
|
|
selectedLanguages[0] = true;
|
|
|
|
|
2024-01-22 20:26:10 +01:00
|
|
|
await showAdaptiveDialog(
|
2023-10-05 17:47:20 +02:00
|
|
|
context: context,
|
2023-10-09 17:28:05 +02:00
|
|
|
builder: (c) => StatefulBuilder(
|
2024-01-22 20:26:10 +01:00
|
|
|
builder: (ctx, setState) => AlertDialog.adaptive(
|
2023-10-09 17:28:05 +02:00
|
|
|
actions: [
|
|
|
|
TextButton(
|
2023-11-01 18:39:21 +01:00
|
|
|
onPressed: () async {
|
2024-01-22 23:32:21 +01:00
|
|
|
final filePath = await FlutterFileDialog.pickFile(
|
2024-01-29 19:40:34 +01:00
|
|
|
params: OpenFileDialogParams(
|
|
|
|
dialogType: OpenFileDialogType.image,
|
|
|
|
sourceType: sourceType,
|
|
|
|
),
|
|
|
|
);
|
2024-01-22 23:32:21 +01:00
|
|
|
if (filePath == null) {
|
2023-11-01 18:39:21 +01:00
|
|
|
if (mounted) Navigator.of(context).pop();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// get selected languages
|
2023-12-29 21:39:54 +01:00
|
|
|
final selected = availableLanguages
|
|
|
|
.where(
|
|
|
|
(element) => selectedLanguages[
|
|
|
|
availableLanguages.indexOf(element)],
|
|
|
|
)
|
2023-11-01 18:39:21 +01:00
|
|
|
.join("+")
|
|
|
|
.replaceAll(".traineddata", "");
|
|
|
|
logger.i(selected);
|
|
|
|
if (!mounted) return;
|
2023-12-29 21:39:54 +01:00
|
|
|
unawaited(
|
2024-01-22 20:26:10 +01:00
|
|
|
showAdaptiveDialog(
|
2023-11-01 18:39:21 +01:00
|
|
|
context: context,
|
2024-01-22 20:26:10 +01:00
|
|
|
builder: (c) => AlertDialog.adaptive(
|
|
|
|
title: Text(AppLocalizations.of(context).ocrLoading),
|
2023-12-29 21:39:54 +01:00
|
|
|
),
|
|
|
|
barrierDismissible: false,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
final string = await FlutterTesseractOcr.extractText(
|
2024-01-22 23:32:21 +01:00
|
|
|
filePath,
|
2023-12-29 21:39:54 +01:00
|
|
|
language: selected,
|
|
|
|
args: {
|
|
|
|
"psm": "4",
|
|
|
|
"preserve_interword_spaces": "1",
|
|
|
|
},
|
|
|
|
);
|
2023-11-01 18:39:21 +01:00
|
|
|
if (!mounted) return;
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
logger.i(string);
|
|
|
|
if (!mounted) return;
|
2023-12-29 21:39:54 +01:00
|
|
|
final lines = string.split("\n")
|
2023-11-01 18:39:21 +01:00
|
|
|
..removeWhere((element) {
|
|
|
|
element.trim();
|
|
|
|
return element.isEmpty;
|
|
|
|
});
|
|
|
|
var price = 0.0;
|
2023-12-29 21:39:54 +01:00
|
|
|
final description = StringBuffer();
|
|
|
|
for (final line in lines) {
|
2023-11-01 18:39:21 +01:00
|
|
|
// find numbered prices on each line
|
2023-12-29 21:39:54 +01:00
|
|
|
final regex = RegExp(r'\d+(?:(?:\.|,) {0,}\d{0,})+');
|
|
|
|
for (final match in regex.allMatches(line)) {
|
2023-11-01 18:39:21 +01:00
|
|
|
price += double.tryParse(match.group(0).toString()) ?? 0;
|
2023-10-09 17:28:05 +02:00
|
|
|
}
|
2023-12-29 21:39:54 +01:00
|
|
|
description.write("${line.replaceAll(regex, "")}\n");
|
2023-11-01 18:39:21 +01:00
|
|
|
}
|
2024-01-22 14:41:16 +01:00
|
|
|
if (!ctx.mounted) return;
|
2023-11-01 18:39:21 +01:00
|
|
|
Navigator.of(ctx).pop();
|
|
|
|
// show edit
|
2023-12-29 21:39:54 +01:00
|
|
|
final newEntry =
|
|
|
|
await Navigator.of(context).push<WalletSingleEntry>(
|
2023-11-01 18:39:21 +01:00
|
|
|
platformRoute<WalletSingleEntry>(
|
2024-01-08 21:19:15 +01:00
|
|
|
(c) => CreateSingleEntryView(
|
2023-11-01 18:39:21 +01:00
|
|
|
w: selectedWallet!,
|
|
|
|
editEntry: WalletSingleEntry(
|
|
|
|
data: EntryData(
|
2023-12-29 21:39:54 +01:00
|
|
|
name: "",
|
|
|
|
amount: price,
|
|
|
|
description: description.toString(),
|
|
|
|
),
|
2023-11-01 18:39:21 +01:00
|
|
|
type: EntryType.expense,
|
|
|
|
date: DateTime.now(),
|
|
|
|
category: selectedWallet!.categories.first,
|
|
|
|
id: selectedWallet!.nextId,
|
2023-11-01 17:58:05 +01:00
|
|
|
),
|
|
|
|
),
|
2023-11-01 18:39:21 +01:00
|
|
|
),
|
|
|
|
);
|
2023-12-29 21:39:54 +01:00
|
|
|
if (newEntry == null) return;
|
|
|
|
selectedWallet!.entries.add(newEntry);
|
|
|
|
await WalletManager.saveWallet(selectedWallet!);
|
|
|
|
setState(() {});
|
2023-11-01 18:39:21 +01:00
|
|
|
},
|
|
|
|
child: const Text("Ok"),
|
|
|
|
),
|
2023-10-09 17:28:05 +02:00
|
|
|
TextButton(
|
2023-11-01 18:39:21 +01:00
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(c).pop();
|
|
|
|
},
|
|
|
|
child: const Text("Cancel"),
|
|
|
|
),
|
2023-10-05 17:47:20 +02:00
|
|
|
],
|
2024-01-22 20:26:10 +01:00
|
|
|
title: Text(AppLocalizations.of(context).ocrSelect),
|
2023-10-09 17:28:05 +02:00
|
|
|
content: Column(
|
|
|
|
children: [
|
|
|
|
...List.generate(
|
|
|
|
availableLanguages.length,
|
|
|
|
(index) => Row(
|
|
|
|
children: [
|
|
|
|
Checkbox(
|
|
|
|
value: selectedLanguages[index],
|
|
|
|
onChanged: (value) {
|
|
|
|
if (value == null ||
|
|
|
|
(selectedLanguages
|
|
|
|
.where((element) => element)
|
|
|
|
.length <=
|
|
|
|
1 &&
|
|
|
|
!value)) return;
|
|
|
|
selectedLanguages[index] = value;
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
const SizedBox(
|
|
|
|
width: 10,
|
|
|
|
),
|
2023-12-29 21:39:54 +01:00
|
|
|
Text(availableLanguages[index].split(".").first),
|
2023-10-09 17:28:05 +02:00
|
|
|
],
|
|
|
|
),
|
2023-12-29 21:39:54 +01:00
|
|
|
),
|
2023-10-09 17:28:05 +02:00
|
|
|
],
|
|
|
|
),
|
2023-10-05 17:47:20 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2023-09-08 11:50:21 +02:00
|
|
|
}
|
2024-01-29 20:07:56 +01:00
|
|
|
|
|
|
|
/// Represents entry sorting type
|
|
|
|
enum SortType {
|
|
|
|
/// Sort newest first
|
|
|
|
newest,
|
|
|
|
|
|
|
|
/// Sort oldest first
|
|
|
|
oldest
|
|
|
|
}
|