2024-05-09 09:46:23 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2024-05-12 00:08:54 +02:00
|
|
|
import 'package:cpd/database/habit.dart';
|
2024-05-19 22:08:04 +02:00
|
|
|
import 'package:cpd/widgets/edithabitDialog.dart';
|
2024-05-28 21:59:44 +02:00
|
|
|
import '../database/todo_interface.dart';
|
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
class MyListView extends StatelessWidget {
|
2024-05-12 00:08:54 +02:00
|
|
|
final List<Habit> habits;
|
2024-05-28 21:59:44 +02:00
|
|
|
final ToDoInterface todoDB;
|
2024-05-12 22:55:54 +02:00
|
|
|
final Function fetchTodos;
|
2024-05-14 23:51:15 +02:00
|
|
|
final Function(int) updateCounter;
|
2024-05-12 22:55:54 +02:00
|
|
|
|
2024-05-13 23:31:03 +02:00
|
|
|
MyListView({super.key,
|
|
|
|
required this.habits,
|
|
|
|
required this.todoDB,
|
|
|
|
required this.fetchTodos,
|
|
|
|
required this.updateCounter});
|
2024-05-09 23:13:43 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-05-16 21:27:52 +02:00
|
|
|
int completedCount = habits.where((habit) => habit.isComplete).length;
|
2024-05-12 22:55:54 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
return ListView.builder(
|
|
|
|
shrinkWrap: true,
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
itemCount: habits.length,
|
|
|
|
itemBuilder: (BuildContext context, int index) {
|
2024-05-12 00:08:54 +02:00
|
|
|
final todo = habits[index];
|
2024-05-12 22:55:54 +02:00
|
|
|
String newTitle = todo.title;
|
|
|
|
String? newSubtitle = todo.subtitle;
|
2024-05-19 22:08:04 +02:00
|
|
|
IconData newIcon = todo.icon;
|
2024-05-12 00:08:54 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 5, horizontal: 10),
|
|
|
|
child: Card(
|
|
|
|
color: index % 2 == 0 ? Colors.green[300] : Colors.green[100],
|
|
|
|
child: Dismissible(
|
2024-05-09 17:37:41 +02:00
|
|
|
key: Key(habits[index].title),
|
2024-05-09 09:46:23 +02:00
|
|
|
background: Container(
|
2024-05-09 23:13:43 +02:00
|
|
|
color: Colors.blue,
|
2024-05-09 09:46:23 +02:00
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
child: const Padding(
|
|
|
|
padding: EdgeInsets.only(left: 16),
|
2024-05-09 23:13:43 +02:00
|
|
|
child: Icon(Icons.edit),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
secondaryBackground: Container(
|
|
|
|
color: Colors.red,
|
|
|
|
alignment: Alignment.centerRight,
|
|
|
|
child: const Padding(
|
|
|
|
padding: EdgeInsets.only(right: 16),
|
|
|
|
child: Icon(Icons.delete),
|
2024-05-09 09:46:23 +02:00
|
|
|
),
|
|
|
|
),
|
2024-05-12 00:08:54 +02:00
|
|
|
onDismissed: (direction) async {
|
2024-05-09 23:13:43 +02:00
|
|
|
// Löschen
|
|
|
|
if (direction == DismissDirection.endToStart) {
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2024-05-13 23:31:03 +02:00
|
|
|
SnackBar(
|
|
|
|
content: Text("${habits[index].title} was dismissed"))
|
2024-05-09 23:13:43 +02:00
|
|
|
);
|
2024-05-12 22:55:54 +02:00
|
|
|
await todoDB.delete(todo.id);
|
|
|
|
fetchTodos();
|
2024-05-09 23:13:43 +02:00
|
|
|
}
|
|
|
|
// Bearbeiten
|
2024-05-12 22:55:54 +02:00
|
|
|
else if (direction == DismissDirection.startToEnd) {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
2024-05-19 22:08:04 +02:00
|
|
|
builder: (context) => EditHabitDialog(
|
|
|
|
todo: todo,
|
|
|
|
todoDB: todoDB,
|
|
|
|
fetchTodos: fetchTodos,
|
|
|
|
)
|
2024-05-12 22:55:54 +02:00
|
|
|
|
|
|
|
);
|
2024-05-09 23:13:43 +02:00
|
|
|
}
|
2024-05-09 09:46:23 +02:00
|
|
|
},
|
|
|
|
child: ListTile(
|
2024-05-19 22:08:04 +02:00
|
|
|
title: Text(newTitle),
|
2024-05-28 21:59:44 +02:00
|
|
|
subtitle: Text(newSubtitle),
|
2024-05-19 22:08:04 +02:00
|
|
|
trailing: Icon(newIcon),
|
2024-05-09 09:46:23 +02:00
|
|
|
leading: Checkbox(
|
2024-05-12 00:08:54 +02:00
|
|
|
value: todo.isComplete,
|
2024-05-09 09:46:23 +02:00
|
|
|
onChanged: (value) {
|
2024-05-16 21:27:52 +02:00
|
|
|
if (value != null) {
|
|
|
|
todoDB.updateCompletionStatus(todo.id, value);
|
|
|
|
fetchTodos();
|
|
|
|
completedCount += value ? 1 : -1;
|
|
|
|
updateCounter(completedCount);
|
|
|
|
}
|
2024-05-19 22:08:04 +02:00
|
|
|
},
|
2024-05-09 09:46:23 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2024-05-19 22:08:04 +02:00
|
|
|
},
|
2024-05-09 09:46:23 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|