2026-04-16 11:50:29 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2026-04-19 10:57:55 +02:00
|
|
|
import 'package:flutter/services.dart';
|
2026-04-16 11:50:29 +02:00
|
|
|
import 'package:supabase_flutter/supabase_flutter.dart';
|
|
|
|
|
import '../models/service_model.dart';
|
|
|
|
|
|
|
|
|
|
class ServicesRepository {
|
|
|
|
|
final _supabase = Supabase.instance.client;
|
|
|
|
|
|
2026-04-18 19:03:49 +02:00
|
|
|
// --- RECUPERO SINGOLO SERVIZIO CON JOIN COMPLETO ---
|
|
|
|
|
Future<ServiceModel> fetchServiceById(String id) async {
|
|
|
|
|
try {
|
|
|
|
|
final response = await _supabase
|
|
|
|
|
.from('service')
|
|
|
|
|
.select('''
|
|
|
|
|
*,
|
|
|
|
|
customer(nome),
|
|
|
|
|
energy_service(*),
|
|
|
|
|
fin_service(*),
|
|
|
|
|
entertainment_service(*)
|
|
|
|
|
''')
|
|
|
|
|
.eq('id', id)
|
|
|
|
|
.single();
|
|
|
|
|
|
|
|
|
|
return ServiceModel.fromMap(response);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
throw Exception('Errore nel caricamento del servizio: $e');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 11:50:29 +02:00
|
|
|
// --- RECUPERO PAGINATO CON FILTRI E JOIN ---
|
|
|
|
|
Future<List<ServiceModel>> fetchServices({
|
|
|
|
|
required String companyId,
|
|
|
|
|
required int offset,
|
|
|
|
|
int limit = 50,
|
|
|
|
|
String? searchTerm,
|
|
|
|
|
DateTimeRange? dateRange,
|
|
|
|
|
}) async {
|
|
|
|
|
try {
|
|
|
|
|
// Nota: 'customer(name, surname)' serve per il display name nella card
|
|
|
|
|
var query = _supabase
|
|
|
|
|
.from('service')
|
|
|
|
|
.select('''
|
|
|
|
|
*,
|
2026-04-18 19:03:49 +02:00
|
|
|
customer(nome),
|
2026-04-16 11:50:29 +02:00
|
|
|
energy_service(*),
|
|
|
|
|
fin_service(*),
|
|
|
|
|
entertainment_service(*)
|
|
|
|
|
''')
|
|
|
|
|
.eq('company_id', companyId);
|
|
|
|
|
|
|
|
|
|
// Filtro Range Date
|
|
|
|
|
if (dateRange != null) {
|
|
|
|
|
query = query
|
|
|
|
|
.gte('created_at', dateRange.start.toIso8601String())
|
|
|
|
|
.lte('created_at', dateRange.end.toIso8601String());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (searchTerm != null && searchTerm.isNotEmpty) {
|
|
|
|
|
// Filtra sui campi della tabella principale O su quelli della tabella joinata
|
|
|
|
|
query = query.or(
|
2026-04-18 19:03:49 +02:00
|
|
|
'number.ilike.%$searchTerm%,note.ilike.%$searchTerm%,customer.nome.ilike.%$searchTerm%',
|
2026-04-16 11:50:29 +02:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
final response = await query
|
|
|
|
|
.order('created_at', ascending: false)
|
|
|
|
|
.range(offset, offset + limit - 1);
|
|
|
|
|
|
|
|
|
|
return (response as List)
|
|
|
|
|
.map((map) => ServiceModel.fromMap(map))
|
|
|
|
|
.toList();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
throw Exception('Errore nel caricamento servizi: $e');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --- SALVATAGGIO COMPLETO (PRIMA PADRE, POI FIGLI) ---
|
|
|
|
|
Future<void> saveFullService(ServiceModel service) async {
|
|
|
|
|
try {
|
2026-04-17 19:19:01 +02:00
|
|
|
// 1. Upsert del record principale
|
2026-04-16 11:50:29 +02:00
|
|
|
final serviceData = await _supabase
|
|
|
|
|
.from('service')
|
|
|
|
|
.upsert(service.toMap())
|
|
|
|
|
.select()
|
|
|
|
|
.single();
|
|
|
|
|
|
|
|
|
|
final String newId = serviceData['id'];
|
|
|
|
|
|
2026-04-17 19:19:01 +02:00
|
|
|
// 2. MODIFICA: Pulizia atomica dei figli
|
|
|
|
|
// Se stiamo modificando (id != null), resettiamo le tabelle collegate
|
2026-04-16 11:50:29 +02:00
|
|
|
if (service.id != null) {
|
2026-04-17 19:19:01 +02:00
|
|
|
await Future.wait([
|
|
|
|
|
_supabase.from('energy_service').delete().eq('service_id', newId),
|
|
|
|
|
_supabase.from('fin_service').delete().eq('service_id', newId),
|
|
|
|
|
_supabase
|
|
|
|
|
.from('entertainment_service')
|
|
|
|
|
.delete()
|
|
|
|
|
.eq('service_id', newId),
|
|
|
|
|
// Aggiungi qui eventuali altre tabelle pivot o file
|
|
|
|
|
]);
|
2026-04-16 11:50:29 +02:00
|
|
|
}
|
|
|
|
|
|
2026-04-17 19:19:01 +02:00
|
|
|
// 3. Inserimento dei moduli in parallelo per velocità
|
|
|
|
|
final List<Future> insertTasks = [];
|
|
|
|
|
|
2026-04-16 11:50:29 +02:00
|
|
|
if (service.energyServices.isNotEmpty) {
|
2026-04-17 19:19:01 +02:00
|
|
|
insertTasks.add(
|
|
|
|
|
_supabase
|
|
|
|
|
.from('energy_service')
|
|
|
|
|
.insert(
|
|
|
|
|
service.energyServices
|
|
|
|
|
.map((item) => item.copyWith(serviceId: newId).toMap())
|
|
|
|
|
.toList(),
|
|
|
|
|
),
|
|
|
|
|
);
|
2026-04-16 11:50:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (service.finServices.isNotEmpty) {
|
2026-04-17 19:19:01 +02:00
|
|
|
insertTasks.add(
|
|
|
|
|
_supabase
|
|
|
|
|
.from('fin_service')
|
|
|
|
|
.insert(
|
|
|
|
|
service.finServices
|
|
|
|
|
.map((item) => item.copyWith(serviceId: newId).toMap())
|
|
|
|
|
.toList(),
|
|
|
|
|
),
|
|
|
|
|
);
|
2026-04-16 11:50:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (service.entertainmentServices.isNotEmpty) {
|
2026-04-17 19:19:01 +02:00
|
|
|
insertTasks.add(
|
|
|
|
|
_supabase
|
|
|
|
|
.from('entertainment_service')
|
|
|
|
|
.insert(
|
|
|
|
|
service.entertainmentServices
|
|
|
|
|
.map((item) => item.copyWith(serviceId: newId).toMap())
|
|
|
|
|
.toList(),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (insertTasks.isNotEmpty) {
|
|
|
|
|
await Future.wait(insertTasks);
|
2026-04-16 11:50:29 +02:00
|
|
|
}
|
|
|
|
|
} catch (e) {
|
2026-04-17 19:19:01 +02:00
|
|
|
// Qui potresti aggiungere una logica di "rollback manuale" se necessario
|
|
|
|
|
throw Exception('Errore durante il salvataggio corazzato: $e');
|
2026-04-16 11:50:29 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --- ELIMINAZIONE ---
|
|
|
|
|
Future<void> deleteService(String id) async {
|
|
|
|
|
try {
|
|
|
|
|
await _supabase.from('service').delete().eq('id', id);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
throw Exception('Errore durante l\'eliminazione: $e');
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-04-18 19:03:49 +02:00
|
|
|
|
|
|
|
|
// --- RECUPERO TIPI CONTENUTI PIÙ FREQUENTI PER AUTOCOMPLETE ---
|
|
|
|
|
Future<List<String>> fetchTopEntertainmentTypes(String companyId) async {
|
|
|
|
|
try {
|
|
|
|
|
// Cerchiamo i tipi più frequenti associati ai servizi di questa company
|
|
|
|
|
// Nota: dobbiamo passare attraverso la tabella 'service' per filtrare per company_id
|
|
|
|
|
final response = await _supabase
|
|
|
|
|
.from('entertainment_service')
|
|
|
|
|
.select('type, service!inner(store!inner(company_id))')
|
|
|
|
|
.eq('service.store.company_id', companyId)
|
|
|
|
|
.limit(100); // Prendiamo un campione
|
|
|
|
|
|
|
|
|
|
// Logica rapida per contare le occorrenze e prendere i primi 5
|
|
|
|
|
final Map<String, int> counts = {};
|
|
|
|
|
for (var item in (response as List)) {
|
|
|
|
|
final type = item['type'] as String;
|
|
|
|
|
counts[type] = (counts[type] ?? 0) + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var sortedKeys = counts.keys.toList()
|
|
|
|
|
..sort((a, b) => counts[b]!.compareTo(counts[a]!));
|
|
|
|
|
|
|
|
|
|
return sortedKeys.take(5).toList();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return [
|
|
|
|
|
"Netflix",
|
|
|
|
|
"DAZN",
|
|
|
|
|
"Disney+",
|
|
|
|
|
"Sky",
|
|
|
|
|
]; // Fallback se non c'è ancora storia
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-04-19 10:57:55 +02:00
|
|
|
|
|
|
|
|
Future<void> uploadAttachment({
|
|
|
|
|
required String serviceId,
|
|
|
|
|
required String fileName,
|
|
|
|
|
required Uint8List fileBytes,
|
|
|
|
|
}) async {
|
|
|
|
|
try {
|
|
|
|
|
// 1. Upload fisico nel bucket 'service_documents'
|
|
|
|
|
final path = '$serviceId/$fileName';
|
|
|
|
|
await _supabase.storage
|
|
|
|
|
.from('service_documents')
|
|
|
|
|
.uploadBinary(path, fileBytes);
|
|
|
|
|
|
|
|
|
|
// 2. Registriamo l'esistenza del file nel database
|
|
|
|
|
await _supabase.from('service_attachment').insert({
|
|
|
|
|
'service_id': serviceId,
|
|
|
|
|
'file_path': path,
|
|
|
|
|
'file_name': fileName,
|
|
|
|
|
'created_at': DateTime.now().toIso8601String(),
|
|
|
|
|
});
|
|
|
|
|
} catch (e) {
|
|
|
|
|
throw "Errore upload: $e";
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-04-16 11:50:29 +02:00
|
|
|
}
|