Files
flux/lib/features/customers/ui/customers_content.dart

252 lines
8.1 KiB
Dart
Raw Normal View History

2026-04-10 11:11:55 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
2026-04-20 23:52:00 +02:00
import 'package:flux/core/blocs/session/session_cubit.dart';
2026-04-10 11:11:55 +02:00
import 'package:flux/core/theme/theme.dart';
import 'package:flux/features/customers/blocs/customer_cubit.dart';
2026-04-10 11:11:55 +02:00
import 'package:flux/features/customers/models/customer_model.dart';
import 'package:flux/features/customers/ui/customer_form.dart';
2026-04-11 12:40:03 +02:00
import 'package:go_router/go_router.dart';
2026-04-10 11:11:55 +02:00
class CustomersContent extends StatefulWidget {
const CustomersContent({super.key});
@override
State<CustomersContent> createState() => _CustomersContentState();
}
class _CustomersContentState extends State<CustomersContent> {
final TextEditingController _searchController = TextEditingController();
@override
void initState() {
super.initState();
_loadInitialCustomers();
}
void _loadInitialCustomers() {
final companyId = context.read<SessionBloc>().state.company?.id;
if (companyId != null) {
context.read<CustomerCubit>().loadCustomers();
2026-04-10 11:11:55 +02:00
}
}
void _onSearch(String query) {
final companyId = context.read<SessionBloc>().state.company?.id;
if (companyId != null) {
context.read<CustomerCubit>().searchCustomers(query);
2026-04-10 11:11:55 +02:00
}
}
/// Funzione unica per gestire Creazione e Modifica
void _openCustomerForm({CustomerModel? customer}) {
showDialog(
context: context,
builder: (dialogContext) => AlertDialog(
backgroundColor: context.background,
content: SizedBox(
width: 500, // Larghezza ottimale per desktop
child: CustomerForm(
customer: customer,
onSave: (customerFromForm) {
final session = context.read<SessionBloc>().state;
final companyId = session.company?.id;
if (companyId == null) return;
if (customer == null) {
// CASO NUOVO: Iniettiamo il companyId e inviamo l'evento create
context.read<CustomerCubit>().createCustomer(
customerFromForm.copyWith(companyId: companyId),
2026-04-10 11:11:55 +02:00
);
} else {
// CASO MODIFICA: L'ID e il companyId sono già nel modello
context.read<CustomerCubit>().updateCustomer(customerFromForm);
2026-04-10 11:11:55 +02:00
}
Navigator.pop(dialogContext);
},
),
),
),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: context.background,
appBar: AppBar(
title: const Text(
'Anagrafica Clienti',
style: TextStyle(fontWeight: FontWeight.bold),
),
elevation: 0,
backgroundColor: context.background,
actions: [
Padding(
padding: const EdgeInsets.only(right: 16),
child: ElevatedButton.icon(
onPressed: () => _openCustomerForm(),
icon: const Icon(Icons.person_add_alt_1_rounded, size: 20),
label: const Text('NUOVO'),
style: ElevatedButton.styleFrom(
backgroundColor: context.accent,
foregroundColor: Colors.white,
),
),
),
],
),
body: Column(
children: [
// BARRA DI RICERCA
Padding(
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 16),
child: TextField(
controller: _searchController,
onChanged: _onSearch,
decoration: InputDecoration(
hintText: 'Cerca cliente per nome o telefono...',
prefixIcon: const Icon(Icons.search),
filled: true,
fillColor: context.accent.withValues(alpha: 0.05),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: BorderSide.none,
),
),
),
),
// LISTA CLIENTI
Expanded(
child: BlocBuilder<CustomerCubit, CustomerState>(
2026-04-10 11:11:55 +02:00
builder: (context, state) {
if (state.status == CustomerStatus.loading &&
state.customers.isEmpty) {
return const Center(child: CircularProgressIndicator());
}
if (state.customers.isEmpty) {
return _buildEmptyState(context);
}
return ListView.separated(
padding: const EdgeInsets.symmetric(
horizontal: 24,
vertical: 8,
),
itemCount: state.customers.length,
separatorBuilder: (context, index) =>
const SizedBox(height: 10),
itemBuilder: (context, index) {
final customer = state.customers[index];
return _CustomerTile(
customer: customer,
2026-04-11 12:40:03 +02:00
onTap: () => context.push(
'/customer/${customer.id}',
extra: customer,
),
2026-04-10 11:11:55 +02:00
);
},
);
},
),
),
],
),
);
}
Widget _buildEmptyState(BuildContext context) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.people_outline_rounded,
size: 64,
color: context.secondaryText.withValues(alpha: 0.5),
),
const SizedBox(height: 16),
Text(
'Nessun cliente in lista',
style: TextStyle(color: context.secondaryText),
),
],
),
);
}
}
class _CustomerTile extends StatelessWidget {
final CustomerModel customer;
final VoidCallback onTap;
const _CustomerTile({required this.customer, required this.onTap});
@override
Widget build(BuildContext context) {
return Container(
decoration: BoxDecoration(
color: context.background,
borderRadius: BorderRadius.circular(16),
border: Border.all(color: context.accent.withValues(alpha: 0.1)),
),
child: ListTile(
onTap: onTap,
contentPadding: const EdgeInsets.symmetric(horizontal: 20, vertical: 8),
leading: CircleAvatar(
radius: 24,
backgroundColor: context.accent.withValues(alpha: 0.1),
child: Text(
customer.nome.isNotEmpty ? customer.nome[0].toUpperCase() : '?',
style: TextStyle(
color: context.accent,
fontWeight: FontWeight.bold,
),
),
),
title: Text(
customer.nome,
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16),
),
subtitle: Padding(
padding: const EdgeInsets.only(top: 4),
child: Row(
children: [
Icon(Icons.phone_android, size: 14, color: context.secondaryText),
const SizedBox(width: 4),
Text(
customer.telefono,
style: TextStyle(color: context.secondaryText),
),
2026-04-11 12:40:03 +02:00
if (customer.email.isNotEmpty) ...[
Text(' - ', style: TextStyle(color: context.secondaryText)),
Icon(Icons.email, size: 14, color: context.secondaryText),
const SizedBox(width: 4),
Text(
customer.email,
style: TextStyle(color: context.secondaryText),
),
],
if (customer.files.isNotEmpty) ...[
2026-04-11 12:40:03 +02:00
Text(' - ', style: TextStyle(color: context.secondaryText)),
Icon(Icons.attach_file, size: 14, color: context.accent),
Text(
'${customer.files.length} doc',
2026-04-11 12:40:03 +02:00
style: TextStyle(
color: context.accent,
fontWeight: FontWeight.bold,
fontSize: 12,
),
),
],
2026-04-10 11:11:55 +02:00
],
),
),
trailing: Icon(Icons.edit_note_rounded, color: context.accent),
),
);
}
}