mirror of
https://github.com/koloideal/Casha.git
synced 2026-06-10 10:25:28 +03:00
258 lines
9.0 KiB
Dart
258 lines
9.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:intl/intl.dart';
|
|
import '../../core/l10n/locale_provider.dart';
|
|
import '../../core/services/card_color_service.dart';
|
|
import '../../core/services/haptic_service.dart';
|
|
import '../settings/provider.dart';
|
|
import 'provider.dart';
|
|
import 'widgets/balance_card.dart';
|
|
import 'widgets/budget_progress.dart';
|
|
import 'widgets/color_editor_overlay.dart';
|
|
import 'widgets/filter_chips.dart';
|
|
import 'widgets/search_bar.dart' as custom;
|
|
import 'widgets/summary_row.dart';
|
|
import 'widgets/transaction_tile.dart';
|
|
|
|
class DashboardScreen extends ConsumerStatefulWidget {
|
|
const DashboardScreen({super.key});
|
|
|
|
@override
|
|
ConsumerState<DashboardScreen> createState() => _DashboardScreenState();
|
|
}
|
|
|
|
class _DashboardScreenState extends ConsumerState<DashboardScreen> {
|
|
final _searchController = TextEditingController();
|
|
final _scrollController = ScrollController();
|
|
final _searchFocusNode = FocusNode();
|
|
bool editingCard = false;
|
|
bool editingPrimary = true;
|
|
Color tempPrimary = CardColorService.defaultPrimary;
|
|
Color tempSecondary = CardColorService.defaultSecondary;
|
|
HSVColor tempPrimaryHSV = HSVColor.fromColor(CardColorService.defaultPrimary);
|
|
HSVColor tempSecondaryHSV = HSVColor.fromColor(CardColorService.defaultSecondary);
|
|
Color savedPrimary = CardColorService.defaultPrimary;
|
|
Color savedSecondary = CardColorService.defaultSecondary;
|
|
HSVColor savedPrimaryHSV = HSVColor.fromColor(CardColorService.defaultPrimary);
|
|
HSVColor savedSecondaryHSV = HSVColor.fromColor(CardColorService.defaultSecondary);
|
|
GradientType tempGradientType = GradientType.linear;
|
|
GradientType savedGradientType = GradientType.linear;
|
|
OverlayEntry? overlayEntry;
|
|
|
|
void _onCardLongPress() {
|
|
final colors = ref.read(cardColorsProvider);
|
|
savedPrimary = colors.primary;
|
|
savedSecondary = colors.secondary;
|
|
savedPrimaryHSV = HSVColor.fromColor(colors.primary);
|
|
savedSecondaryHSV = HSVColor.fromColor(colors.secondary);
|
|
savedGradientType = colors.gradientType;
|
|
tempPrimary = colors.primary;
|
|
tempSecondary = colors.secondary;
|
|
tempPrimaryHSV = HSVColor.fromColor(colors.primary);
|
|
tempSecondaryHSV = HSVColor.fromColor(colors.secondary);
|
|
tempGradientType = colors.gradientType;
|
|
|
|
setState(() {
|
|
editingCard = true;
|
|
editingPrimary = true;
|
|
});
|
|
_showOverlay();
|
|
}
|
|
|
|
void _showOverlay() {
|
|
overlayEntry = OverlayEntry(
|
|
builder: (overlayContext) => FullScreenBlurOverlay(
|
|
dashboardState: this,
|
|
context: context,
|
|
),
|
|
);
|
|
Overlay.of(context, rootOverlay: true).insert(overlayEntry!);
|
|
}
|
|
|
|
void closeOverlay({required bool apply}) {
|
|
if (apply) {
|
|
HapticService.medium();
|
|
ref.read(cardColorsProvider.notifier).save(tempPrimary, tempSecondary, tempGradientType);
|
|
} else {
|
|
setState(() {
|
|
tempPrimary = savedPrimary;
|
|
tempSecondary = savedSecondary;
|
|
tempGradientType = savedGradientType;
|
|
});
|
|
}
|
|
overlayEntry?.remove();
|
|
overlayEntry = null;
|
|
setState(() => editingCard = false);
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
Future.microtask(() async {
|
|
final colors = ref.read(cardColorsProvider);
|
|
tempPrimary = colors.primary;
|
|
tempSecondary = colors.secondary;
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
overlayEntry?.remove();
|
|
_searchController.dispose();
|
|
_scrollController.dispose();
|
|
_searchFocusNode.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
void _scrollToSearch() {
|
|
if (!_scrollController.hasClients) return;
|
|
_scrollController.animateTo(
|
|
400.0,
|
|
duration: const Duration(milliseconds: 500),
|
|
curve: Curves.fastOutSlowIn,
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final s = ref.watch(stringsProvider);
|
|
final balance = ref.watch(totalBalanceProvider);
|
|
final income = ref.watch(totalIncomeProvider);
|
|
final expense = ref.watch(totalExpenseProvider);
|
|
final monthExpense = ref.watch(currentMonthExpenseProvider);
|
|
final budget = ref.watch(budgetProvider);
|
|
final recent = ref.watch(recentTransactionsProvider);
|
|
final currencyInfo = ref.watch(currencyProvider);
|
|
|
|
return Scaffold(
|
|
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
|
|
appBar: AppBar(
|
|
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
|
|
elevation: 0,
|
|
scrolledUnderElevation: 0,
|
|
titleSpacing: 20,
|
|
title: Text(
|
|
'Casha',
|
|
style: Theme.of(context).textTheme.headlineMedium?.copyWith(
|
|
fontWeight: FontWeight.w800,
|
|
color: Theme.of(context).colorScheme.onSurface,
|
|
letterSpacing: -0.5,
|
|
),
|
|
),
|
|
actions: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(right: 20),
|
|
child: Center(
|
|
child: Builder(
|
|
builder: (context) {
|
|
final raw = DateFormat('LLLL, yyyy', s.dateLocale).format(DateTime.now());
|
|
final capitalized = raw.isNotEmpty ? '${raw[0].toUpperCase()}${raw.substring(1)}' : raw;
|
|
return Text(
|
|
capitalized,
|
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
|
color: Theme.of(context).colorScheme.onSurface.withOpacity(0.5),
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
floatingActionButton: FloatingActionButton.extended(
|
|
onPressed: () {
|
|
HapticService.medium();
|
|
context.push('/add');
|
|
},
|
|
backgroundColor: const Color(0xFF7C6DED),
|
|
foregroundColor: Colors.white,
|
|
icon: const Icon(Icons.add),
|
|
label: Text(s.add, style: const TextStyle(fontWeight: FontWeight.w600)),
|
|
),
|
|
floatingActionButtonLocation: FloatingActionButtonLocation.endFloat,
|
|
body: SafeArea(
|
|
child: CustomScrollView(
|
|
controller: _scrollController,
|
|
cacheExtent: 300,
|
|
slivers: [
|
|
SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.fromLTRB(20, 16, 20, 0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
BalanceCard(
|
|
balance: balance,
|
|
currencyInfo: currencyInfo,
|
|
onLongPress: _onCardLongPress,
|
|
previewPrimary: editingCard ? tempPrimary : null,
|
|
previewSecondary: editingCard ? tempSecondary : null,
|
|
previewGradientType: editingCard ? tempGradientType : null,
|
|
),
|
|
const SizedBox(height: 16),
|
|
SummaryRow(
|
|
income: income,
|
|
expense: expense,
|
|
currencyInfo: currencyInfo,
|
|
strings: s,
|
|
),
|
|
if (budget != null) ...[
|
|
const SizedBox(height: 16),
|
|
BudgetProgress(
|
|
spent: monthExpense,
|
|
budget: budget,
|
|
currencyInfo: currencyInfo,
|
|
strings: s,
|
|
),
|
|
],
|
|
const SizedBox(height: 24),
|
|
custom.SearchBar(
|
|
controller: _searchController,
|
|
focusNode: _searchFocusNode,
|
|
onTap: _scrollToSearch,
|
|
ref: ref,
|
|
strings: s,
|
|
),
|
|
const SizedBox(height: 12),
|
|
FilterChips(strings: s),
|
|
const SizedBox(height: 20),
|
|
Text(
|
|
s.transactions,
|
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
|
fontWeight: FontWeight.w600,
|
|
color: Theme.of(context).colorScheme.onSurface,
|
|
),
|
|
),
|
|
const SizedBox(height: 12),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
if (recent.isEmpty)
|
|
SliverFillRemaining(
|
|
hasScrollBody: false,
|
|
child: EmptyState(strings: s),
|
|
)
|
|
else
|
|
SliverPadding(
|
|
padding: const EdgeInsets.fromLTRB(20, 0, 20, 100),
|
|
sliver: SliverList.builder(
|
|
itemCount: recent.length,
|
|
itemBuilder: (context, i) => Padding(
|
|
padding: const EdgeInsets.only(bottom: 10),
|
|
child: RepaintBoundary(
|
|
child: TransactionTile(transaction: recent[i]),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const SliverPadding(padding: EdgeInsets.only(bottom: 80)),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|