278 lines
8.2 KiB
Dart
278 lines
8.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:travel_mate/blocs/user/user_bloc.dart';
|
|
import '../../models/account.dart';
|
|
import '../../blocs/account/account_bloc.dart';
|
|
import '../../blocs/account/account_event.dart';
|
|
import '../../blocs/account/account_state.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:travel_mate/components/error/error_content.dart';
|
|
import '../../blocs/user/user_state.dart' as user_state;
|
|
import '../../repositories/group_repository.dart'; // Ajouter cet import
|
|
import 'group_expenses_page.dart'; // Ajouter cet import
|
|
|
|
class AccountContent extends StatefulWidget {
|
|
const AccountContent({super.key});
|
|
|
|
@override
|
|
State<AccountContent> createState() => _AccountContentState();
|
|
}
|
|
|
|
class _AccountContentState extends State<AccountContent> {
|
|
final _groupRepository = GroupRepository(); // Ajouter cette ligne
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
|
|
// Charger immédiatement sans attendre le prochain frame
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
_loadInitialData();
|
|
});
|
|
}
|
|
|
|
void _loadInitialData() {
|
|
try {
|
|
final userState = context.read<UserBloc>().state;
|
|
|
|
if (userState is user_state.UserLoaded) {
|
|
final userId = userState.user.id;
|
|
context.read<AccountBloc>().add(LoadAccountsByUserId(userId));
|
|
} else {
|
|
throw Exception('Utilisateur non connecté');
|
|
}
|
|
} catch (e) {
|
|
ErrorContent(
|
|
message: 'Erreur lors du chargement des comptes: $e',
|
|
onRetry: () {},
|
|
);
|
|
}
|
|
}
|
|
|
|
// Nouvelle méthode pour naviguer vers la page des dépenses de groupe
|
|
Future<void> _navigateToGroupExpenses(Account account) async {
|
|
try {
|
|
// Récupérer le groupe associé au compte
|
|
final group = await _groupRepository.getGroupByTripId(account.tripId);
|
|
|
|
if (group != null && mounted) {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => GroupExpensesPage(
|
|
account: account,
|
|
group: group,
|
|
),
|
|
),
|
|
);
|
|
} else {
|
|
if (mounted) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
const SnackBar(
|
|
content: Text('Groupe non trouvé pour ce compte'),
|
|
backgroundColor: Colors.red,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
} catch (e) {
|
|
if (mounted) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text('Erreur lors du chargement du groupe: $e'),
|
|
backgroundColor: Colors.red,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BlocBuilder<UserBloc, user_state.UserState>(
|
|
builder: (context, userState) {
|
|
if (userState is user_state.UserLoading) {
|
|
return const Scaffold(
|
|
body: Center(child: CircularProgressIndicator()),
|
|
);
|
|
}
|
|
|
|
if (userState is user_state.UserError) {
|
|
return ErrorContent(
|
|
message: 'Erreur utilisateur: ${userState.message}',
|
|
onRetry: () {},
|
|
);
|
|
}
|
|
|
|
if (userState is! user_state.UserLoaded) {
|
|
return const Scaffold(
|
|
body: Center(child: Text('Utilisateur non connecté')),
|
|
);
|
|
}
|
|
final user = userState.user;
|
|
|
|
return BlocConsumer<AccountBloc, AccountState>(
|
|
listener: (context, accountState) {
|
|
if (accountState is AccountError) {
|
|
ErrorContent(
|
|
message: 'Erreur de chargement des comptes: ${accountState.message}',
|
|
onRetry: () {
|
|
context.read<AccountBloc>().add(LoadAccountsByUserId(user.id));
|
|
},
|
|
);
|
|
}
|
|
},
|
|
builder: (context, accountState) {
|
|
return Scaffold(
|
|
body: SafeArea(child: _buildContent(accountState, user.id))
|
|
);
|
|
},
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _buildContent(AccountState accountState, String userId) {
|
|
if (accountState is AccountLoading) {
|
|
return const Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
CircularProgressIndicator(),
|
|
SizedBox(height: 16),
|
|
Text('Chargement des comptes...'),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
if (accountState is AccountError) {
|
|
return ErrorContent(
|
|
message: 'Erreur de chargement des comptes...',
|
|
onRetry: () {
|
|
context.read<AccountBloc>().add(LoadAccountsByUserId(userId));
|
|
},
|
|
);
|
|
}
|
|
|
|
if (accountState is AccountsLoaded) {
|
|
if (accountState.accounts.isEmpty) {
|
|
return _buildEmptyState();
|
|
}
|
|
|
|
return _buildAccountsList(accountState.accounts, userId);
|
|
}
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
const Text('État inconnu'),
|
|
const SizedBox(height: 16),
|
|
ElevatedButton(
|
|
onPressed: () {
|
|
context.read<AccountBloc>().add(LoadAccountsByUserId(userId));
|
|
},
|
|
child: const Text('Charger les comptes'),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildEmptyState() {
|
|
return Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(32),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
const Icon(Icons.account_balance_wallet, size: 80, color: Colors.grey),
|
|
const SizedBox(height: 16),
|
|
const Text(
|
|
'Aucun compte trouvé',
|
|
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
|
|
),
|
|
const SizedBox(height: 8),
|
|
const Text(
|
|
'Les comptes sont créés automatiquement lorsque vous créez un voyage',
|
|
style: TextStyle(fontSize: 14, color: Colors.grey),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildAccountsList(List<Account> accounts, String userId) {
|
|
return RefreshIndicator(
|
|
onRefresh: () async {
|
|
context.read<AccountBloc>().add(LoadAccountsByUserId(userId));
|
|
await Future.delayed(const Duration(milliseconds: 500));
|
|
},
|
|
child: ListView(
|
|
padding: const EdgeInsets.all(16),
|
|
children: [
|
|
const Text(
|
|
'Mes comptes',
|
|
style: TextStyle(fontSize: 28, fontWeight: FontWeight.bold),
|
|
),
|
|
const SizedBox(height: 8),
|
|
Text(
|
|
'Gérez vos comptes de voyage',
|
|
style: TextStyle(fontSize: 14, color: Colors.grey[600]),
|
|
),
|
|
const SizedBox(height: 24),
|
|
|
|
...accounts.map((account) {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(bottom: 12),
|
|
child: _buildSimpleAccountCard(account),
|
|
);
|
|
})
|
|
],
|
|
)
|
|
);
|
|
}
|
|
|
|
Widget _buildSimpleAccountCard(Account account) {
|
|
try {
|
|
final colors = [Colors.blue, Colors.purple, Colors.green, Colors.orange];
|
|
final color = colors[account.name.hashCode.abs() % colors.length];
|
|
|
|
String memberInfo = '${account.members.length} membre${account.members.length > 1 ? 's' : ''}';
|
|
|
|
if(account.members.isNotEmpty){
|
|
final names = account.members
|
|
.take(2)
|
|
.map((m) => m.pseudo.isNotEmpty ? m.pseudo : m.firstName)
|
|
.join(', ');
|
|
memberInfo += '\n$names';
|
|
}
|
|
|
|
return Card(
|
|
elevation: 2,
|
|
child: ListTile(
|
|
leading: CircleAvatar(
|
|
backgroundColor: color,
|
|
child: const Icon(Icons.account_balance_wallet, color: Colors.white),
|
|
),
|
|
title: Text(
|
|
account.name,
|
|
style: const TextStyle(fontWeight: FontWeight.bold),
|
|
),
|
|
subtitle: Text(memberInfo),
|
|
trailing: const Icon(Icons.chevron_right),
|
|
onTap: () => _navigateToGroupExpenses(account), // Modifier cette ligne
|
|
),
|
|
);
|
|
} catch (e) {
|
|
return Card(
|
|
color: Colors.red,
|
|
child: const ListTile(
|
|
leading: Icon(Icons.error, color: Colors.red),
|
|
title: Text('Erreur d\'affichage'),
|
|
)
|
|
);
|
|
}
|
|
}
|
|
} |