b
This commit is contained in:
@@ -2,208 +2,159 @@ import 'package:equatable/equatable.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:flux/core/blocs/session/session_cubit.dart';
|
||||
import 'package:flux/features/master_data/staff/models/staff_member_model.dart';
|
||||
import 'package:flux/features/settings/data/settings_repository.dart';
|
||||
import 'package:flux/features/tasks/data/task_repository.dart';
|
||||
import 'package:flux/features/tasks/models/task_model.dart';
|
||||
import 'package:flux/features/tasks/models/task_reminder_config.dart';
|
||||
import 'package:flux/features/tasks/models/task_status.dart';
|
||||
import 'package:get_it/get_it.dart';
|
||||
part 'task_form_state.dart';
|
||||
|
||||
class TaskFormCubit extends Cubit<TaskFormState> {
|
||||
final TaskRepository _taskRepository = GetIt.I.get<TaskRepository>();
|
||||
final List<StaffMemberModel> _globalStaff;
|
||||
final String currentCompanyId = GetIt.I<SessionCubit>().state.company!.id!;
|
||||
final String? currentStoreId = GetIt.I<SessionCubit>().state.currentStore?.id;
|
||||
final TaskRepository _repository = GetIt.I.get<TaskRepository>();
|
||||
final SettingsRepository _settingsRepository = GetIt.I
|
||||
.get<SettingsRepository>();
|
||||
final SessionCubit _sessionCubit = GetIt.I.get<SessionCubit>();
|
||||
|
||||
TaskFormCubit({
|
||||
required List<StaffMemberModel> globalStaff,
|
||||
|
||||
TaskModel? initialTask, // Arriva dalla navigazione interna (extra)
|
||||
String? initialTaskId, // Arriva dal Deep Link (parametro URL)
|
||||
}) : _globalStaff = globalStaff,
|
||||
super(const TaskFormState()) {
|
||||
_initForm(initialTask, initialTaskId);
|
||||
}
|
||||
|
||||
Future<void> _initForm(TaskModel? task, String? taskId) async {
|
||||
// 1. Mettiamo subito il form in caricamento
|
||||
emit(state.copyWith(status: TaskFormStatus.loading));
|
||||
|
||||
TaskModel? taskToLoad = task;
|
||||
|
||||
// 2. SCENARIO DEEP LINK: Non abbiamo l'oggetto, ma abbiamo un ID valido
|
||||
if (taskToLoad == null && taskId != null && taskId != 'new') {
|
||||
try {
|
||||
taskToLoad = await _taskRepository.getTaskById(taskId);
|
||||
} catch (e) {
|
||||
emit(
|
||||
state.copyWith(
|
||||
status: TaskFormStatus.failure,
|
||||
errorMessage: 'Impossibile caricare il task dal link: $e',
|
||||
),
|
||||
);
|
||||
return; // Ci fermiamo qui
|
||||
}
|
||||
}
|
||||
|
||||
// 3. Popoliamo lo stato con i dati (sia che arrivino dall'extra, sia dal DB, sia nulli)
|
||||
final isGlobalMode = taskToLoad != null
|
||||
? taskToLoad.storeId == null
|
||||
: currentStoreId == null;
|
||||
final existingStaffIds =
|
||||
taskToLoad?.assignedToStaff.map((s) => s.id!).toList() ??
|
||||
taskToLoad?.assignedToIds ??
|
||||
[];
|
||||
|
||||
emit(
|
||||
state.copyWith(
|
||||
id: taskToLoad?.id,
|
||||
title: taskToLoad?.title ?? '',
|
||||
description: taskToLoad?.description ?? '',
|
||||
dueDate: taskToLoad?.dueDate,
|
||||
taskStatus: taskToLoad?.status ?? TaskStatus.open,
|
||||
isGlobal: isGlobalMode,
|
||||
selectedStaffIds: existingStaffIds,
|
||||
status: TaskFormStatus.initial, // Caricamento finito, form pronto!
|
||||
),
|
||||
);
|
||||
|
||||
_updateStaffScope(isGlobalMode);
|
||||
}
|
||||
|
||||
// --- 2. SWITCH SCOPE E RAGGRUPPAMENTO ---
|
||||
void toggleGlobalScope(bool isGlobal) {
|
||||
emit(
|
||||
state.copyWith(
|
||||
isGlobal: isGlobal,
|
||||
selectedStaffIds: [], // Resettiamo la selezione se si cambia scope
|
||||
),
|
||||
);
|
||||
_updateStaffScope(isGlobal);
|
||||
}
|
||||
|
||||
void _updateStaffScope(bool isGlobal) {
|
||||
// 1. Filtriamo in memoria: cerchiamo nell'array degli ID!
|
||||
final filteredStaff = isGlobal
|
||||
? _globalStaff
|
||||
: _globalStaff
|
||||
.where((s) => s.assignedStoreIds.contains(currentStoreId))
|
||||
.toList();
|
||||
|
||||
// 2. Raggruppamento M2M (Ciclo manuale)
|
||||
final Map<String, List<StaffMemberModel>> groupedStaff = {};
|
||||
|
||||
for (final staff in filteredStaff) {
|
||||
// Se non ha nessun negozio assegnato, finisce in Direzione
|
||||
if (staff.assignedStores.isEmpty) {
|
||||
groupedStaff.putIfAbsent('Direzione / HQ', () => []).add(staff);
|
||||
} else {
|
||||
// Se ha più negozi, clona la sua presenza in ogni gruppo!
|
||||
for (final store in staff.assignedStores) {
|
||||
final storeName = store.name;
|
||||
groupedStaff.putIfAbsent(storeName, () => []).add(staff);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 3. Emettiamo il nuovo stato all'istante
|
||||
emit(
|
||||
state.copyWith(
|
||||
status: TaskFormStatus.initial,
|
||||
groupedAvailableStaff: groupedStaff,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
// --- 3. SELEZIONE AVANZATA (SINGOLA E PER NEGOZIO) ---
|
||||
void toggleStaffSelection(String staffId) {
|
||||
final currentList = List<String>.from(state.selectedStaffIds);
|
||||
if (currentList.contains(staffId)) {
|
||||
currentList.remove(staffId);
|
||||
TaskFormCubit({TaskModel? existingTask})
|
||||
: super(
|
||||
TaskFormState(
|
||||
id: existingTask?.id,
|
||||
title: existingTask?.title ?? '',
|
||||
description: existingTask?.description ?? '',
|
||||
dueDate: existingTask?.dueDate,
|
||||
isGlobal: existingTask?.isGlobal ?? false,
|
||||
selectedStaffIds: existingTask?.assignedToIds ?? [],
|
||||
),
|
||||
) {
|
||||
if (existingTask == null) {
|
||||
_initializeNewTaskReminders();
|
||||
} else {
|
||||
currentList.add(staffId);
|
||||
_loadExistingTaskReminders(existingTask.id!);
|
||||
}
|
||||
emit(state.copyWith(selectedStaffIds: currentList));
|
||||
}
|
||||
|
||||
void toggleStoreSelection(String storeName, bool selectAll) {
|
||||
// Recupera tutti i membri di quel gruppo
|
||||
final staffInStore = state.groupedAvailableStaff[storeName] ?? [];
|
||||
final idsInStore = staffInStore.map((s) => s.id!).toList();
|
||||
|
||||
final currentSelection = Set<String>.from(state.selectedStaffIds);
|
||||
|
||||
if (selectAll) {
|
||||
currentSelection.addAll(idsInStore);
|
||||
} else {
|
||||
currentSelection.removeAll(idsInStore);
|
||||
}
|
||||
|
||||
emit(state.copyWith(selectedStaffIds: currentSelection.toList()));
|
||||
}
|
||||
|
||||
// --- 4. AGGIORNAMENTO CAMPI STANDARD ---
|
||||
void updateTitle(String title) => emit(state.copyWith(title: title));
|
||||
|
||||
void updateDescription(String desc) =>
|
||||
emit(state.copyWith(description: desc));
|
||||
|
||||
void updateDueDate(DateTime? date) =>
|
||||
emit(state.copyWith(dueDate: date, clearDueDate: date == null));
|
||||
|
||||
void updateLinkedTicket(String? ticketId) =>
|
||||
emit(state.copyWith(linkedTicketId: ticketId));
|
||||
|
||||
// --- 5. LOGICA DEI REMINDER FINTI ---
|
||||
void addMockReminder(String type, int minutes) {
|
||||
final currentReminders = List<TaskReminder>.from(state.reminders);
|
||||
currentReminders.add(TaskReminder(type: type, minutesBefore: minutes));
|
||||
emit(state.copyWith(reminders: currentReminders));
|
||||
}
|
||||
|
||||
void removeMockReminder(int index) {
|
||||
final currentReminders = List<TaskReminder>.from(state.reminders);
|
||||
currentReminders.removeAt(index);
|
||||
emit(state.copyWith(reminders: currentReminders));
|
||||
}
|
||||
|
||||
// --- 6. SALVATAGGIO FINALE ---
|
||||
Future<void> saveTask({required String currentUserId}) async {
|
||||
if (!state.isFormValid) return;
|
||||
|
||||
emit(state.copyWith(status: TaskFormStatus.submitting));
|
||||
String get _companyId => _sessionCubit.state.company!.id!;
|
||||
String get _currentUserId => _sessionCubit.state.currentStaffMember!.id!;
|
||||
|
||||
// --- INIT REMINDER NUOVO TASK ---
|
||||
Future<void> _initializeNewTaskReminders() async {
|
||||
try {
|
||||
final taskToSave = TaskModel(
|
||||
id: state.id,
|
||||
companyId: currentCompanyId,
|
||||
storeId: state.isGlobal
|
||||
? null
|
||||
: currentStoreId, // La vera discriminante Globale/Store!
|
||||
createdById: state.id == null
|
||||
? currentUserId
|
||||
: null, // Lo settiamo solo alla creazione
|
||||
title: state.title.trim(),
|
||||
description: state.description.trim().isEmpty
|
||||
? null
|
||||
: state.description.trim(),
|
||||
dueDate: state.dueDate,
|
||||
status: state.taskStatus,
|
||||
assignedToIds: state
|
||||
.selectedStaffIds, // L'array che andrà a popolare la tabella di giunzione
|
||||
final defaults = await _settingsRepository.getMyReminderDefaults(
|
||||
companyId: _companyId,
|
||||
staffId: _currentUserId,
|
||||
);
|
||||
|
||||
if (state.id == null) {
|
||||
await _taskRepository.createTask(taskToSave);
|
||||
} else {
|
||||
await _taskRepository.updateTask(taskToSave);
|
||||
}
|
||||
final initialReminders = defaults
|
||||
.map(
|
||||
(d) => TaskReminderConfig(
|
||||
minutesBefore: d.minutesBefore,
|
||||
channel: d.channel,
|
||||
),
|
||||
)
|
||||
.toList();
|
||||
|
||||
emit(state.copyWith(reminders: initialReminders));
|
||||
} catch (e) {
|
||||
// Fallback in caso di errore
|
||||
emit(
|
||||
state.copyWith(
|
||||
reminders: const [
|
||||
TaskReminderConfig(minutesBefore: 15, channel: 'push'),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// --- INIT REMINDER TASK ESISTENTE ---
|
||||
Future<void> _loadExistingTaskReminders(String taskId) async {
|
||||
try {
|
||||
// Recuperiamo SOLO i reminder non forzati dell'utente loggato per popolare il form
|
||||
final existingConfigs = await _repository.fetchPersonalReminders(
|
||||
taskId: taskId,
|
||||
staffId: _currentUserId,
|
||||
);
|
||||
emit(state.copyWith(reminders: existingConfigs));
|
||||
} catch (e) {
|
||||
print('Errore caricamento reminder: $e');
|
||||
}
|
||||
}
|
||||
|
||||
// --- UPDATE CAMPI BASE ---
|
||||
void updateTitle(String t) => emit(state.copyWith(title: t));
|
||||
void updateDescription(String d) => emit(state.copyWith(description: d));
|
||||
void updateDueDate(DateTime? d) => emit(state.copyWith(dueDate: d));
|
||||
void toggleGlobalScope(bool g) => emit(state.copyWith(isGlobal: g));
|
||||
|
||||
void toggleStaffSelection(String staffId) {
|
||||
final updated = List<String>.from(state.selectedStaffIds);
|
||||
updated.contains(staffId) ? updated.remove(staffId) : updated.add(staffId);
|
||||
emit(state.copyWith(selectedStaffIds: updated));
|
||||
}
|
||||
|
||||
// --- GESTIONE REMINDER NEL FORM ---
|
||||
void addReminderRule(int minutesBefore, String channel) {
|
||||
final updated = List<TaskReminderConfig>.from(state.reminders);
|
||||
final newConfig = TaskReminderConfig(
|
||||
minutesBefore: minutesBefore,
|
||||
channel: channel,
|
||||
);
|
||||
|
||||
if (!updated.contains(newConfig)) {
|
||||
updated.add(newConfig);
|
||||
updated.sort((a, b) => a.minutesBefore.compareTo(b.minutesBefore));
|
||||
emit(state.copyWith(reminders: updated));
|
||||
}
|
||||
}
|
||||
|
||||
void removeReminderRule(int index) {
|
||||
final updated = List<TaskReminderConfig>.from(state.reminders)
|
||||
..removeAt(index);
|
||||
emit(state.copyWith(reminders: updated));
|
||||
}
|
||||
|
||||
// --- SALVATAGGIO FINALE ---
|
||||
Future<void> saveTask() async {
|
||||
if (!state.isFormValid) return;
|
||||
emit(state.copyWith(status: TaskFormStatus.submitting));
|
||||
|
||||
final taskToSave = TaskModel(
|
||||
id: state.id,
|
||||
companyId: _companyId,
|
||||
createdBy: _currentUserId,
|
||||
title: state.title.trim(),
|
||||
description: state.description.trim(),
|
||||
dueDate: state.dueDate,
|
||||
isGlobal: state.isGlobal,
|
||||
assignedToIds: state.selectedStaffIds,
|
||||
);
|
||||
|
||||
try {
|
||||
if (state.id == null) {
|
||||
// NUOVO TASK -> CREATE
|
||||
// Qui potresti passare un managerForcedOverride se implementi la UI per quello
|
||||
await _repository.createTask(
|
||||
task: taskToSave,
|
||||
assignedStaffIds: state.selectedStaffIds,
|
||||
currentUserId: _currentUserId,
|
||||
currentUserCustomReminders: state.reminders,
|
||||
);
|
||||
} else {
|
||||
// VECCHIO TASK -> UPDATE
|
||||
await _repository.updateTask(
|
||||
task: taskToSave,
|
||||
assignedStaffIds: state.selectedStaffIds,
|
||||
currentUserId: _currentUserId,
|
||||
currentUserCustomReminders: state.reminders,
|
||||
);
|
||||
}
|
||||
emit(state.copyWith(status: TaskFormStatus.success));
|
||||
} catch (e) {
|
||||
emit(
|
||||
state.copyWith(
|
||||
status: TaskFormStatus.failure,
|
||||
errorMessage: 'Errore durante il salvataggio: $e',
|
||||
errorMessage: e.toString(),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,108 +2,66 @@ part of 'task_form_cubit.dart';
|
||||
|
||||
enum TaskFormStatus { initial, loading, submitting, success, failure }
|
||||
|
||||
/// Placeholder finto per i futuri reminder (pg_cron)
|
||||
class TaskReminder extends Equatable {
|
||||
final String type; // es. 'email', 'push'
|
||||
final int minutesBefore;
|
||||
const TaskReminder({required this.type, required this.minutesBefore});
|
||||
@override
|
||||
List<Object?> get props => [type, minutesBefore];
|
||||
}
|
||||
|
||||
class TaskFormState extends Equatable {
|
||||
final String? id;
|
||||
final TaskFormStatus status;
|
||||
final String? id; // Null se stiamo creando un nuovo task
|
||||
final String title;
|
||||
final String description;
|
||||
final DateTime? dueDate;
|
||||
final TaskStatus taskStatus;
|
||||
|
||||
// --- SCOPING & ASSIGNMENTS ---
|
||||
final bool isGlobal;
|
||||
final List<String> selectedStaffIds;
|
||||
final List<StaffMemberModel> availableStaff;
|
||||
final Map<String, List<StaffMemberModel>> groupedAvailableStaff;
|
||||
|
||||
// --- FUTURI ANCORAGGI ---
|
||||
final List<TaskReminder> reminders;
|
||||
final String? linkedTicketId;
|
||||
final String? linkedEmailId;
|
||||
|
||||
final List<TaskReminderConfig>
|
||||
reminders; // I promemoria (solo dell'utente loggato)
|
||||
final String? errorMessage;
|
||||
|
||||
const TaskFormState({
|
||||
this.status = TaskFormStatus.initial,
|
||||
this.id,
|
||||
this.status = TaskFormStatus.initial,
|
||||
this.title = '',
|
||||
this.description = '',
|
||||
this.dueDate,
|
||||
this.taskStatus = TaskStatus.open,
|
||||
this.isGlobal = false,
|
||||
this.selectedStaffIds = const [],
|
||||
this.availableStaff = const [],
|
||||
this.groupedAvailableStaff = const {},
|
||||
this.reminders = const [],
|
||||
this.linkedTicketId,
|
||||
this.linkedEmailId,
|
||||
this.errorMessage,
|
||||
});
|
||||
|
||||
// MAGIA: Il form è valido solo se c'è un titolo e, opzionalmente, altre regole.
|
||||
bool get isFormValid => title.trim().isNotEmpty;
|
||||
|
||||
TaskFormState copyWith({
|
||||
TaskFormStatus? status,
|
||||
String? id,
|
||||
TaskFormStatus? status,
|
||||
String? title,
|
||||
String? description,
|
||||
DateTime? dueDate,
|
||||
bool clearDueDate = false, // Trucco Ninja per rimettere a null una data!
|
||||
TaskStatus? taskStatus,
|
||||
bool? isGlobal,
|
||||
List<String>? selectedStaffIds,
|
||||
List<StaffMemberModel>? availableStaff,
|
||||
Map<String, List<StaffMemberModel>>? groupedAvailableStaff,
|
||||
List<TaskReminder>? reminders,
|
||||
String? linkedTicketId,
|
||||
String? linkedEmailId,
|
||||
List<TaskReminderConfig>? reminders,
|
||||
String? errorMessage,
|
||||
}) {
|
||||
return TaskFormState(
|
||||
status: status ?? this.status,
|
||||
id: id ?? this.id,
|
||||
status: status ?? this.status,
|
||||
title: title ?? this.title,
|
||||
description: description ?? this.description,
|
||||
dueDate: clearDueDate ? null : (dueDate ?? this.dueDate),
|
||||
taskStatus: taskStatus ?? this.taskStatus,
|
||||
dueDate: dueDate ?? this.dueDate,
|
||||
isGlobal: isGlobal ?? this.isGlobal,
|
||||
selectedStaffIds: selectedStaffIds ?? this.selectedStaffIds,
|
||||
availableStaff: availableStaff ?? this.availableStaff,
|
||||
groupedAvailableStaff:
|
||||
groupedAvailableStaff ?? this.groupedAvailableStaff,
|
||||
reminders: reminders ?? this.reminders,
|
||||
linkedTicketId: linkedTicketId ?? this.linkedTicketId,
|
||||
linkedEmailId: linkedEmailId ?? this.linkedEmailId,
|
||||
errorMessage:
|
||||
errorMessage, // Se copyWith è chiamato senza errore, lo pulisce in automatico
|
||||
errorMessage: errorMessage,
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
List<Object?> get props => [
|
||||
status,
|
||||
id,
|
||||
status,
|
||||
title,
|
||||
description,
|
||||
dueDate,
|
||||
taskStatus,
|
||||
isGlobal,
|
||||
selectedStaffIds,
|
||||
availableStaff,
|
||||
groupedAvailableStaff,
|
||||
reminders,
|
||||
linkedTicketId,
|
||||
linkedEmailId,
|
||||
errorMessage,
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:flux/core/blocs/session/session_cubit.dart';
|
||||
import 'package:flux/core/enums_and_consts/consts.dart';
|
||||
import 'package:flux/features/tasks/models/task_reminder_config.dart';
|
||||
import 'package:flux/features/tasks/models/task_status.dart';
|
||||
import 'package:get_it/get_it.dart';
|
||||
import 'package:supabase_flutter/supabase_flutter.dart';
|
||||
// Sostituisci con i percorsi corretti di FLUX
|
||||
import 'package:flux/features/tasks/models/task_model.dart';
|
||||
@@ -103,35 +107,104 @@ class TaskRepository {
|
||||
}
|
||||
}
|
||||
|
||||
// --- 2. CREAZIONE DEL TASK ---
|
||||
Future<TaskModel> createTask(TaskModel task) async {
|
||||
Future<void> createTask({
|
||||
required TaskModel task,
|
||||
required List<String> assignedStaffIds,
|
||||
required String currentUserId,
|
||||
required List<TaskReminderConfig> currentUserCustomReminders,
|
||||
TaskReminderConfig?
|
||||
managerForcedOverride, // Opzionale: l'avviso forzato del manager
|
||||
}) async {
|
||||
try {
|
||||
final taskData = task.toMap();
|
||||
// 1. Inserimento del Task principale -> otteniamo il taskId
|
||||
// 2. Inserimento dei record in task_assignments
|
||||
final String taskId = task.id!;
|
||||
|
||||
// Rimuoviamo l'array prima di inviare i dati alla tabella principale,
|
||||
// la "Strada C" impone che la verità assoluta derivi dalla tabella di giunzione!
|
||||
taskData.remove('assigned_to_ids');
|
||||
List<Map<String, dynamic>> remindersToInsert = [];
|
||||
|
||||
// 1. Inseriamo il record base nella tabella tasks
|
||||
final response = await _supabase
|
||||
.from(Tables.tasks)
|
||||
.insert(taskData)
|
||||
.select()
|
||||
.single();
|
||||
|
||||
final newTask = TaskModel.fromMap(response);
|
||||
|
||||
// 2. Se l'utente ha assegnato il task a qualcuno, popoliamo la giunzione
|
||||
if (task.assignedToIds.isNotEmpty && newTask.id != null) {
|
||||
await _syncAssignments(newTask.id!, task.assignedToIds);
|
||||
|
||||
// 3. Ricarichiamo il task appena creato per ottenere l'array e il JOIN aggiornati dal trigger!
|
||||
return await getTaskById(newTask.id!);
|
||||
// 3. Recuperiamo i default degli ALTRI utenti assegnati
|
||||
final otherStaffIds = assignedStaffIds
|
||||
.where((id) => id != currentUserId)
|
||||
.toList();
|
||||
List<dynamic> otherDefaults = [];
|
||||
if (otherStaffIds.isNotEmpty) {
|
||||
otherDefaults = await _supabase
|
||||
.from('staff_task_reminder_defaults')
|
||||
.select()
|
||||
.inFilter('staff_id', otherStaffIds);
|
||||
}
|
||||
|
||||
return newTask;
|
||||
// 4. CICLO DI COSTRUZIONE DELLA CODA REMINDER
|
||||
for (var staffId in assignedStaffIds) {
|
||||
// CASO A: È l'utente loggato che sta creando/partecipando al task
|
||||
if (staffId == currentUserId) {
|
||||
for (var config in currentUserCustomReminders) {
|
||||
final triggerAt = task.dueDate?.subtract(
|
||||
Duration(minutes: config.minutesBefore),
|
||||
);
|
||||
if (triggerAt != null && triggerAt.isAfter(DateTime.now())) {
|
||||
remindersToInsert.add({
|
||||
'company_id': task.companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': currentUserId,
|
||||
'minutes_before': config.minutesBefore,
|
||||
'channel': config.channel,
|
||||
'trigger_at': triggerAt.toIso8601String(),
|
||||
'is_forced': false,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
// CASO B: Sono gli altri assegnatari -> ereditano i loro default personali dal DB
|
||||
else {
|
||||
final staffRules = otherDefaults.where(
|
||||
(row) => row['staff_id'] == staffId,
|
||||
);
|
||||
for (var rule in staffRules) {
|
||||
final minutesBefore = rule['minutes_before'] as int;
|
||||
final triggerAt = task.dueDate?.subtract(
|
||||
Duration(minutes: minutesBefore),
|
||||
);
|
||||
if (triggerAt != null && triggerAt.isAfter(DateTime.now())) {
|
||||
remindersToInsert.add({
|
||||
'company_id': task.companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': staffId,
|
||||
'minutes_before': minutesBefore,
|
||||
'channel': rule['channel'],
|
||||
'trigger_at': triggerAt.toIso8601String(),
|
||||
'is_forced': false,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// CASO C: Il creatore ha impostato un avviso forzato (Override molto importante)
|
||||
if (managerForcedOverride != null && task.dueDate != null) {
|
||||
final triggerAt = task.dueDate!.subtract(
|
||||
Duration(minutes: managerForcedOverride.minutesBefore),
|
||||
);
|
||||
if (triggerAt.isAfter(DateTime.now())) {
|
||||
remindersToInsert.add({
|
||||
'company_id': task.companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': staffId, // Lo beccheranno tutti
|
||||
'minutes_before': managerForcedOverride.minutesBefore,
|
||||
'channel': managerForcedOverride.channel,
|
||||
'trigger_at': triggerAt.toIso8601String(),
|
||||
'is_forced':
|
||||
true, // Chiude la possibilità di cancellarlo lato utente
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 5. Sparata unica di Bulk Insert su task_reminders
|
||||
if (remindersToInsert.isNotEmpty) {
|
||||
await _supabase.from('task_reminders').insert(remindersToInsert);
|
||||
}
|
||||
} catch (e) {
|
||||
throw Exception('Errore nella creazione del task: $e');
|
||||
throw Exception('Errore creazione task: $e');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -160,6 +233,107 @@ class TaskRepository {
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> createTask({
|
||||
required TaskModel task,
|
||||
required List<String> assignedStaffIds,
|
||||
required String currentUserId,
|
||||
required List<TaskReminderConfig> currentUserCustomReminders,
|
||||
TaskReminderConfig?
|
||||
managerForcedOverride, // Opzionale: l'avviso forzato del manager
|
||||
}) async {
|
||||
try {
|
||||
// 1. Inserimento del Task principale -> otteniamo il taskId
|
||||
// 2. Inserimento dei record in task_assignments
|
||||
final String taskId = task.id;
|
||||
|
||||
List<Map<String, dynamic>> remindersToInsert = [];
|
||||
|
||||
// 3. Recuperiamo i default degli ALTRI utenti assegnati
|
||||
final otherStaffIds = assignedStaffIds
|
||||
.where((id) => id != currentUserId)
|
||||
.toList();
|
||||
List<dynamic> otherDefaults = [];
|
||||
if (otherStaffIds.isNotEmpty) {
|
||||
otherDefaults = await _supabase
|
||||
.from('staff_task_reminder_defaults')
|
||||
.select()
|
||||
.inFilter('staff_id', otherStaffIds);
|
||||
}
|
||||
|
||||
// 4. CICLO DI COSTRUZIONE DELLA CODA REMINDER
|
||||
for (var staffId in assignedStaffIds) {
|
||||
// CASO A: È l'utente loggato che sta creando/partecipando al task
|
||||
if (staffId == currentUserId) {
|
||||
for (var config in currentUserCustomReminders) {
|
||||
final triggerAt = task.dueDate?.subtract(
|
||||
Duration(minutes: config.minutesBefore),
|
||||
);
|
||||
if (triggerAt != null && triggerAt.isAfter(DateTime.now())) {
|
||||
remindersToInsert.add({
|
||||
'company_id': task.companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': currentUserId,
|
||||
'minutes_before': config.minutesBefore,
|
||||
'channel': config.channel,
|
||||
'trigger_at': triggerAt.toIso8601String(),
|
||||
'is_forced': false,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
// CASO B: Sono gli altri assegnatari -> ereditano i loro default personali dal DB
|
||||
else {
|
||||
final staffRules = otherDefaults.where(
|
||||
(row) => row['staff_id'] == staffId,
|
||||
);
|
||||
for (var rule in staffRules) {
|
||||
final minutesBefore = rule['minutes_before'] as int;
|
||||
final triggerAt = task.dueDate?.subtract(
|
||||
Duration(minutes: minutesBefore),
|
||||
);
|
||||
if (triggerAt != null && triggerAt.isAfter(DateTime.now())) {
|
||||
remindersToInsert.add({
|
||||
'company_id': task.companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': staffId,
|
||||
'minutes_before': minutesBefore,
|
||||
'channel': rule['channel'],
|
||||
'trigger_at': triggerAt.toIso8601String(),
|
||||
'is_forced': false,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// CASO C: Il creatore ha impostato un avviso forzato (Override molto importante)
|
||||
if (managerForcedOverride != null && task.dueDate != null) {
|
||||
final triggerAt = task.dueDate!.subtract(
|
||||
Duration(minutes: managerForcedOverride.minutesBefore),
|
||||
);
|
||||
if (triggerAt.isAfter(DateTime.now())) {
|
||||
remindersToInsert.add({
|
||||
'company_id': task.companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': staffId, // Lo beccheranno tutti
|
||||
'minutes_before': managerForcedOverride.minutesBefore,
|
||||
'channel': managerForcedOverride.channel,
|
||||
'trigger_at': triggerAt.toIso8601String(),
|
||||
'is_forced':
|
||||
true, // Chiude la possibilità di cancellarlo lato utente
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 5. Sparata unica di Bulk Insert su task_reminders
|
||||
if (remindersToInsert.isNotEmpty) {
|
||||
await _supabase.from('task_reminders').insert(remindersToInsert);
|
||||
}
|
||||
} catch (e) {
|
||||
throw Exception('Errore creazione task: $e');
|
||||
}
|
||||
}
|
||||
|
||||
// --- 4. ELIMINAZIONE DEL TASK ---
|
||||
Future<void> deleteTask(String taskId) async {
|
||||
try {
|
||||
@@ -202,10 +376,116 @@ class TaskRepository {
|
||||
// 2. Inseriamo le nuove assegnazioni (se ce ne sono)
|
||||
if (staffIds.isNotEmpty) {
|
||||
final List<Map<String, dynamic>> assignments = staffIds
|
||||
.map((staffId) => {'task_id': taskId, 'staff_id': staffId})
|
||||
.map(
|
||||
(staffId) => {
|
||||
'task_id': taskId,
|
||||
'staff_id': staffId,
|
||||
'company_id': GetIt.I.get<SessionCubit>().state.company!.id!,
|
||||
},
|
||||
)
|
||||
.toList();
|
||||
|
||||
await _supabase.from(Tables.taskAssignments).insert(assignments);
|
||||
}
|
||||
}
|
||||
|
||||
// --- IL MOTORE DELLA MAGIA ---
|
||||
|
||||
Future<void> generateTaskReminders({
|
||||
required String taskId,
|
||||
required String companyId,
|
||||
required List<String> assignedStaffIds,
|
||||
required DateTime? taskDueDate,
|
||||
}) async {
|
||||
if (assignedStaffIds.isEmpty) return;
|
||||
|
||||
try {
|
||||
// 1. Recuperiamo i default di TUTTI i collaboratori coinvolti in un colpo solo
|
||||
final response = await _supabase
|
||||
.from('staff_task_reminder_defaults')
|
||||
.select()
|
||||
.eq('company_id', companyId)
|
||||
.inFilter('staff_id', assignedStaffIds);
|
||||
|
||||
final List<Map<String, dynamic>> remindersToInsert = [];
|
||||
|
||||
for (var staffId in assignedStaffIds) {
|
||||
// Cerchiamo le preferenze di questo specifico membro dello staff
|
||||
final staffDefaults = response.where(
|
||||
(row) => row['staff_id'] == staffId,
|
||||
);
|
||||
|
||||
if (staffDefaults.isEmpty) {
|
||||
// STRATEGIA FALLBACK: Se l'utente non ha mai configurato i suoi default,
|
||||
// creiamo un reminder standard (es. una push 15 min prima) per non lasciarlo scoperto.
|
||||
if (taskDueDate != null) {
|
||||
remindersToInsert.add({
|
||||
'company_id': companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': staffId,
|
||||
'minutes_before': 15,
|
||||
'channel': 'push',
|
||||
'trigger_at': taskDueDate
|
||||
.subtract(const Duration(minutes: 15))
|
||||
.toIso8601String(),
|
||||
});
|
||||
}
|
||||
|
||||
// E spariamo la push di creazione immediata come comportamento standard
|
||||
_triggerImmediateNotification(staffId, taskId, 'push_creation');
|
||||
continue;
|
||||
}
|
||||
|
||||
// 2. GESTIONE NOTIFICHE ISTANTANEE (EVENT-DRIVEN)
|
||||
// Prendiamo la prima riga delle impostazioni dell'utente (tanto le colonne nuove sono speculari)
|
||||
final userSetting = staffDefaults.first;
|
||||
if (userSetting['notify_on_creation_push'] == true) {
|
||||
_triggerImmediateNotification(staffId, taskId, 'push_creation');
|
||||
}
|
||||
if (userSetting['notify_on_creation_email'] == true) {
|
||||
_triggerImmediateNotification(staffId, taskId, 'email_creation');
|
||||
}
|
||||
|
||||
// 3. GESTIONE REMINDER TEMPORIZZATI (TIME-DRIVEN)
|
||||
if (taskDueDate != null) {
|
||||
for (var rule in staffDefaults) {
|
||||
final minutesBefore = rule['minutes_before'] as int;
|
||||
final triggerAt = taskDueDate.subtract(
|
||||
Duration(minutes: minutesBefore),
|
||||
);
|
||||
|
||||
// Se il task scade tra 5 minuti e il reminder è impostato a 1 ora prima,
|
||||
// il trigger_at sarebbe nel passato. Lo inseriamo solo se è nel futuro!
|
||||
if (triggerAt.isAfter(DateTime.now())) {
|
||||
remindersToInsert.add({
|
||||
'company_id': companyId,
|
||||
'task_id': taskId,
|
||||
'staff_id': staffId,
|
||||
'minutes_before': minutesBefore,
|
||||
'channel': rule['channel'],
|
||||
'trigger_at': triggerAt.toIso8601String(),
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 4. Bulk Insert dei reminder temporizzati nella coda operativa
|
||||
if (remindersToInsert.isNotEmpty) {
|
||||
await _supabase.from('task_reminders').insert(remindersToInsert);
|
||||
}
|
||||
} catch (e) {
|
||||
debugPrint('Errore nella generazione dei reminder: $e');
|
||||
}
|
||||
}
|
||||
|
||||
void _triggerImmediateNotification(
|
||||
String staffId,
|
||||
String taskId,
|
||||
String type,
|
||||
) {
|
||||
// Questa funzione chiamerà direttamente l'Edge Function di Supabase
|
||||
// per far squillare il telefono o mandare la mail ADESSO.
|
||||
// La implementeremo appena il backend sarà pronto!
|
||||
}
|
||||
}
|
||||
|
||||
65
lib/features/tasks/models/reminder_default_model.dart
Normal file
65
lib/features/tasks/models/reminder_default_model.dart
Normal file
@@ -0,0 +1,65 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class ReminderDefaultModel extends Equatable {
|
||||
final String? id;
|
||||
final String companyId;
|
||||
final String staffId;
|
||||
final int minutesBefore;
|
||||
final String channel; // 'push' o 'email'
|
||||
|
||||
const ReminderDefaultModel({
|
||||
this.id,
|
||||
required this.companyId,
|
||||
required this.staffId,
|
||||
required this.minutesBefore,
|
||||
required this.channel,
|
||||
});
|
||||
|
||||
ReminderDefaultModel copyWith({
|
||||
String? id,
|
||||
String? companyId,
|
||||
String? staffId,
|
||||
int? minutesBefore,
|
||||
String? channel,
|
||||
}) {
|
||||
return ReminderDefaultModel(
|
||||
id: id ?? this.id,
|
||||
companyId: companyId ?? this.companyId,
|
||||
staffId: staffId ?? this.staffId,
|
||||
minutesBefore: minutesBefore ?? this.minutesBefore,
|
||||
channel: channel ?? this.channel,
|
||||
);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toMap() {
|
||||
return {
|
||||
if (id != null) 'id': id,
|
||||
'company_id': companyId,
|
||||
'staff_id': staffId,
|
||||
'minutes_before': minutesBefore,
|
||||
'channel': channel,
|
||||
};
|
||||
}
|
||||
|
||||
factory ReminderDefaultModel.fromMap(Map<String, dynamic> map) {
|
||||
return ReminderDefaultModel(
|
||||
id: map['id'] as String?,
|
||||
companyId: map['company_id'] as String,
|
||||
staffId: map['staff_id'] as String,
|
||||
minutesBefore: map['minutes_before'] as int,
|
||||
channel: map['channel'] as String,
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
List<Object?> get props => [id, companyId, staffId, minutesBefore, channel];
|
||||
|
||||
// Helper per la UI: formatta i minuti in qualcosa di leggibile (es. "1 ora prima")
|
||||
String get friendlyTime {
|
||||
if (minutesBefore < 60) return '$minutesBefore minuti prima';
|
||||
if (minutesBefore == 60) return '1 ora prima';
|
||||
if (minutesBefore < 1440) return '${minutesBefore ~/ 60} ore prima';
|
||||
if (minutesBefore == 1440) return '1 giorno prima';
|
||||
return '${minutesBefore ~/ 1440} giorni prima';
|
||||
}
|
||||
}
|
||||
22
lib/features/tasks/models/task_reminder_config.dart
Normal file
22
lib/features/tasks/models/task_reminder_config.dart
Normal file
@@ -0,0 +1,22 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class TaskReminderConfig extends Equatable {
|
||||
final int minutesBefore;
|
||||
final String channel; // 'push' o 'email'
|
||||
|
||||
const TaskReminderConfig({
|
||||
required this.minutesBefore,
|
||||
required this.channel,
|
||||
});
|
||||
|
||||
String get friendlyTime {
|
||||
if (minutesBefore < 60) return '$minutesBefore minuti prima';
|
||||
if (minutesBefore == 60) return '1 ora prima';
|
||||
if (minutesBefore < 1440) return '${minutesBefore ~/ 60} ore prima';
|
||||
if (minutesBefore == 1440) return '1 giorno prima';
|
||||
return '${minutesBefore ~/ 1440} giorni prima';
|
||||
}
|
||||
|
||||
@override
|
||||
List<Object?> get props => [minutesBefore, channel];
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:flux/core/blocs/session/session_cubit.dart';
|
||||
import 'package:flux/features/tasks/blocs/task_form_cubit.dart';
|
||||
import 'package:get_it/get_it.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
|
||||
class TaskFormScreen extends StatefulWidget {
|
||||
@@ -31,6 +33,62 @@ class _TaskFormScreenState extends State<TaskFormScreen> {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
void _showAddReminderDialog(BuildContext context, TaskFormCubit cubit) {
|
||||
int minutes = 15;
|
||||
String channel = 'push';
|
||||
|
||||
showDialog(
|
||||
context: context,
|
||||
builder: (dialogContext) {
|
||||
return AlertDialog(
|
||||
title: const Text('Aggiungi Promemoria'),
|
||||
content: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
DropdownButtonFormField<int>(
|
||||
initialValue: minutes,
|
||||
decoration: const InputDecoration(labelText: 'Preavviso'),
|
||||
items: const [
|
||||
DropdownMenuItem(value: 5, child: Text('5 minuti prima')),
|
||||
DropdownMenuItem(value: 15, child: Text('15 minuti prima')),
|
||||
DropdownMenuItem(value: 60, child: Text('1 ora prima')),
|
||||
DropdownMenuItem(value: 1440, child: Text('1 giorno prima')),
|
||||
],
|
||||
onChanged: (v) => {if (v != null) minutes = v},
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
DropdownButtonFormField<String>(
|
||||
initialValue: channel,
|
||||
decoration: const InputDecoration(labelText: 'Canale'),
|
||||
items: const [
|
||||
DropdownMenuItem(value: 'push', child: Text('Notifica Push')),
|
||||
DropdownMenuItem(value: 'email', child: Text('Email')),
|
||||
],
|
||||
onChanged: (v) => {if (v != null) channel = v},
|
||||
),
|
||||
],
|
||||
),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.pop(dialogContext),
|
||||
child: const Text('Annulla'),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
cubit.addReminderRule(minutes, channel);
|
||||
Navigator.pop(dialogContext);
|
||||
},
|
||||
child: const Text(
|
||||
'Inserisci',
|
||||
style: TextStyle(color: Colors.orange),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BlocConsumer<TaskFormCubit, TaskFormState>(
|
||||
@@ -79,7 +137,13 @@ class _TaskFormScreenState extends State<TaskFormScreen> {
|
||||
else
|
||||
TextButton.icon(
|
||||
onPressed: state.isFormValid
|
||||
? () => cubit.saveTask(currentUserId: 'TODO_USER_ID')
|
||||
? () => cubit.saveTask(
|
||||
currentUserId: GetIt.I
|
||||
.get<SessionCubit>()
|
||||
.state
|
||||
.currentStaffMember!
|
||||
.id!,
|
||||
)
|
||||
: null,
|
||||
icon: const Icon(Icons.save),
|
||||
label: const Text('Salva'),
|
||||
@@ -162,84 +226,181 @@ class _TaskFormScreenState extends State<TaskFormScreen> {
|
||||
TaskFormState state,
|
||||
TaskFormCubit cubit,
|
||||
) {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Card(
|
||||
elevation: 0,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
side: BorderSide(
|
||||
color: Theme.of(context).dividerColor.withValues(alpha: 0.2),
|
||||
return FocusTraversalGroup(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Card(
|
||||
elevation: 0,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
side: BorderSide(
|
||||
color: Theme.of(context).dividerColor.withValues(alpha: 0.2),
|
||||
),
|
||||
),
|
||||
child: SwitchListTile(
|
||||
title: const Text(
|
||||
'Task Globale Aziendale',
|
||||
style: TextStyle(fontWeight: FontWeight.bold),
|
||||
),
|
||||
subtitle: const Text(
|
||||
'Visibile a tutta l\'azienda, non legato a un negozio specifico.',
|
||||
),
|
||||
value: state.isGlobal,
|
||||
activeThumbColor: Colors.orange,
|
||||
onChanged: (val) => cubit.toggleGlobalScope(val),
|
||||
),
|
||||
),
|
||||
child: SwitchListTile(
|
||||
title: const Text(
|
||||
'Task Globale Aziendale',
|
||||
style: TextStyle(fontWeight: FontWeight.bold),
|
||||
),
|
||||
subtitle: const Text(
|
||||
'Visibile a tutta l\'azienda, non legato a un negozio specifico.',
|
||||
),
|
||||
value: state.isGlobal,
|
||||
activeThumbColor: Colors.orange,
|
||||
onChanged: (val) => cubit.toggleGlobalScope(val),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 24),
|
||||
const SizedBox(height: 24),
|
||||
|
||||
// Addio initialValue, benvenuto controller!
|
||||
TextFormField(
|
||||
controller: _titleController,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Titolo del Task*',
|
||||
border: OutlineInputBorder(),
|
||||
prefixIcon: Icon(Icons.title),
|
||||
// Addio initialValue, benvenuto controller!
|
||||
TextFormField(
|
||||
controller: _titleController,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Titolo del Task*',
|
||||
border: OutlineInputBorder(),
|
||||
prefixIcon: Icon(Icons.title),
|
||||
),
|
||||
onChanged: cubit.updateTitle,
|
||||
),
|
||||
onChanged: cubit.updateTitle,
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
TextFormField(
|
||||
controller: _descController,
|
||||
maxLines: 4,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Descrizione (opzionale)',
|
||||
border: OutlineInputBorder(),
|
||||
alignLabelWithHint: true,
|
||||
const SizedBox(height: 16),
|
||||
TextFormField(
|
||||
controller: _descController,
|
||||
maxLines: 4,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Descrizione (opzionale)',
|
||||
border: OutlineInputBorder(),
|
||||
alignLabelWithHint: true,
|
||||
),
|
||||
onChanged: cubit.updateDescription,
|
||||
),
|
||||
onChanged: cubit.updateDescription,
|
||||
),
|
||||
const SizedBox(height: 24),
|
||||
const SizedBox(height: 24),
|
||||
|
||||
// --- SCADENZA ---
|
||||
ListTile(
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
side: BorderSide(color: Theme.of(context).dividerColor),
|
||||
// --- SCADENZA ---
|
||||
ListTile(
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
side: BorderSide(color: Theme.of(context).dividerColor),
|
||||
),
|
||||
leading: const Icon(Icons.calendar_today, color: Colors.orange),
|
||||
title: Text(
|
||||
state.dueDate != null
|
||||
// Formattiamo aggiungendo gli zeri (es. 05/09/2026 alle 09:05)
|
||||
? 'Scadenza: ${state.dueDate!.day.toString().padLeft(2, '0')}/${state.dueDate!.month.toString().padLeft(2, '0')}/${state.dueDate!.year} alle ${state.dueDate!.hour.toString().padLeft(2, '0')}:${state.dueDate!.minute.toString().padLeft(2, '0')}'
|
||||
: 'Nessuna scadenza impostata',
|
||||
),
|
||||
trailing: state.dueDate != null
|
||||
? IconButton(
|
||||
icon: const Icon(Icons.close),
|
||||
onPressed: () => cubit.updateDueDate(null),
|
||||
)
|
||||
: null,
|
||||
onTap: () async {
|
||||
// 1. Chiediamo prima la Data
|
||||
final date = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: state.dueDate ?? DateTime.now(),
|
||||
firstDate: DateTime.now(),
|
||||
lastDate: DateTime(2100),
|
||||
);
|
||||
|
||||
// Se l'utente chiude il calendario senza scegliere, ci fermiamo
|
||||
if (date == null || !context.mounted) return;
|
||||
|
||||
// 2. Chiediamo subito dopo l'Orario
|
||||
final time = await showTimePicker(
|
||||
context: context,
|
||||
initialTime: state.dueDate != null
|
||||
? TimeOfDay.fromDateTime(state.dueDate!)
|
||||
: const TimeOfDay(hour: 9, minute: 0), // Default ore 09:00
|
||||
);
|
||||
|
||||
// Se l'utente chiude l'orologio senza scegliere, ci fermiamo
|
||||
if (time == null) return;
|
||||
|
||||
// 3. Fondiamo Data e Ora in un nuovo oggetto DateTime
|
||||
final finalDateTime = DateTime(
|
||||
date.year,
|
||||
date.month,
|
||||
date.day,
|
||||
time.hour,
|
||||
time.minute,
|
||||
);
|
||||
|
||||
// Aggiorniamo lo stato tramite il Cubit
|
||||
cubit.updateDueDate(finalDateTime);
|
||||
},
|
||||
),
|
||||
leading: const Icon(Icons.calendar_today, color: Colors.orange),
|
||||
title: Text(
|
||||
state.dueDate != null
|
||||
? 'Scadenza: ${state.dueDate!.day}/${state.dueDate!.month}/${state.dueDate!.year}'
|
||||
: 'Nessuna scadenza impostata',
|
||||
),
|
||||
trailing: state.dueDate != null
|
||||
? IconButton(
|
||||
icon: const Icon(Icons.close),
|
||||
onPressed: () => cubit.updateDueDate(null),
|
||||
)
|
||||
: null,
|
||||
onTap: () async {
|
||||
final date = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: state.dueDate ?? DateTime.now(),
|
||||
firstDate: DateTime.now(),
|
||||
lastDate: DateTime(2100),
|
||||
);
|
||||
if (date != null) cubit.updateDueDate(date);
|
||||
},
|
||||
),
|
||||
],
|
||||
if (state.dueDate != null) ...[
|
||||
const SizedBox(height: 24),
|
||||
Text(
|
||||
'Promemoria del Task',
|
||||
style: Theme.of(
|
||||
context,
|
||||
).textTheme.titleMedium?.copyWith(fontWeight: FontWeight.bold),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Card(
|
||||
elevation: 0,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
side: BorderSide(
|
||||
color: Theme.of(context).dividerColor.withValues(alpha: 0.3),
|
||||
),
|
||||
),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
child: Column(
|
||||
children: [
|
||||
// Elenco dei promemoria attuali del form
|
||||
ListView.builder(
|
||||
shrinkWrap: true,
|
||||
physics: const NeverScrollableScrollPhysics(),
|
||||
itemCount: state.reminders.length,
|
||||
itemBuilder: (context, index) {
|
||||
final reminder = state.reminders[index];
|
||||
final isPush = reminder.channel == 'push';
|
||||
|
||||
return ListTile(
|
||||
dense: true,
|
||||
leading: Icon(
|
||||
isPush
|
||||
? Icons.notifications_active_outlined
|
||||
: Icons.mail_outline,
|
||||
color: isPush ? Colors.orange : Colors.blue,
|
||||
),
|
||||
title: Text(
|
||||
reminder.friendlyTime,
|
||||
style: const TextStyle(fontWeight: FontWeight.w600),
|
||||
),
|
||||
trailing: IconButton(
|
||||
icon: const Icon(
|
||||
Icons.close,
|
||||
size: 18,
|
||||
color: Colors.redAccent,
|
||||
),
|
||||
onPressed: () => cubit.removeReminderRule(index),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
const Divider(),
|
||||
// Tasto di aggiunta rapida promemoria
|
||||
TextButton.icon(
|
||||
onPressed: () => _showAddReminderDialog(context, cubit),
|
||||
icon: const Icon(Icons.add, size: 18),
|
||||
label: const Text('Aggiungi un promemoria a questo task'),
|
||||
style: TextButton.styleFrom(
|
||||
foregroundColor: Colors.orange,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user