284 lines
8.3 KiB
Dart
284 lines
8.3 KiB
Dart
import 'package:briessenchecker/models/checklist.dart';
|
|
import 'package:briessenchecker/models/listitem.dart';
|
|
import 'package:briessenchecker/services/checklist_provider.dart';
|
|
import 'package:briessenchecker/services/dbhelper.dart';
|
|
import 'package:briessenchecker/widgets/item_detail_dialog.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
import '../services/scaffold_messenger.dart';
|
|
import '../widgets/item_list_tile.dart';
|
|
|
|
class DetailChecklistPage extends StatefulWidget {
|
|
const DetailChecklistPage({super.key});
|
|
|
|
static const routeName = '/detail';
|
|
|
|
@override
|
|
State<DetailChecklistPage> createState() => _DetailChecklistPageState();
|
|
}
|
|
|
|
class _DetailChecklistPageState extends State<DetailChecklistPage> {
|
|
String? pageTitle;
|
|
List<int> selectedItemIndexes = [];
|
|
TextEditingController titleController = TextEditingController();
|
|
|
|
Checklist? _checklist;
|
|
late Future<List<Object>> _checklistFutures;
|
|
late final ChecklistProvider _checklistProvider;
|
|
List<int> _checkedItemIds = [];
|
|
List<Item> _items = [];
|
|
int? _selectedItemId;
|
|
bool _titleEditMode = false;
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
_checklistProvider.updateSelectedChecklist(null, silent: true);
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_checklistProvider = Provider.of<ChecklistProvider>(context, listen: false);
|
|
if (_checklistProvider.selectedChecklistId == null) {
|
|
Navigator.of(context).pop();
|
|
}
|
|
_checklistFutures = initFutures(_checklistProvider.selectedChecklistId!);
|
|
}
|
|
|
|
Future<List<Object>> initFutures(int checklistId) async {
|
|
return Future.wait([
|
|
DbHelper.getChecklistById(checklistId),
|
|
DbHelper.getItemsByChecklistId(checklistId),
|
|
DbHelper.fetchcheckedItemIds(checklistId),
|
|
]);
|
|
}
|
|
|
|
Widget _futureBuilder(
|
|
BuildContext context, AsyncSnapshot<List<Object>> snapshot) {
|
|
if (snapshot.hasData) {
|
|
_checklist = snapshot.data!.elementAt(0) as Checklist;
|
|
_items = snapshot.data!.elementAt(1) as List<Item>;
|
|
_checkedItemIds = snapshot.data!.elementAt(2) as List<int>;
|
|
if (pageTitle == null) {
|
|
WidgetsBinding.instance.addPostFrameCallback((_) => setState(() =>
|
|
pageTitle = _checklist!.title == ''
|
|
? 'Unnamed ${_checklist!.id}'
|
|
: _checklist!.title));
|
|
}
|
|
return StreamBuilder(
|
|
stream: DbHelper.itemsChangeEventStream,
|
|
builder: (BuildContext context,
|
|
AsyncSnapshot<List<Map<String, dynamic>>> snapshot) =>
|
|
_streamBuilder(context, snapshot, _checklist, _items),
|
|
);
|
|
} else if (snapshot.hasError) {
|
|
return Text('Ooooops, ${snapshot.error}');
|
|
} else {
|
|
return const Center(child: CircularProgressIndicator());
|
|
}
|
|
}
|
|
|
|
void _addItemTapped() {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => ItemDetailDialog(checklistId: _checklist!.id));
|
|
}
|
|
|
|
void _itemTapped(int index) {
|
|
_selectedItemId = _items.elementAt(index).id;
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => ItemDetailDialog(
|
|
checklistId: _checklist!.id,
|
|
item: _items.elementAt(index),
|
|
)).whenComplete(
|
|
() => _selectedItemId = null,
|
|
);
|
|
}
|
|
|
|
Widget? _itemListBuilder(BuildContext context, int index) {
|
|
Item item = _items.elementAt(index);
|
|
return ItemListTile(
|
|
title: item.title,
|
|
description: item.description,
|
|
onTap: () => _itemTapped(index),
|
|
itemSelectionChanged: (isSelected) =>
|
|
_itemSelectionChanged(isSelected, index),
|
|
selectionMode: selectedItemIndexes.isNotEmpty,
|
|
isChecked: _checkedItemIds.contains(item.id),
|
|
onCheckedChanged: (isChecked) =>
|
|
_onItemCheckedChanged(isChecked, item.id),
|
|
ownerId: item.ownerId,
|
|
);
|
|
}
|
|
|
|
void _itemSelectionChanged(bool isSelected, int index) {
|
|
if (isSelected) {
|
|
setState(() {
|
|
selectedItemIndexes.add(index);
|
|
});
|
|
} else {
|
|
setState(() {
|
|
selectedItemIndexes.remove(index);
|
|
});
|
|
}
|
|
}
|
|
|
|
void _onDeleteItemsPressed() {
|
|
List<int> itemIds = [];
|
|
bool showErrorPrompt = false;
|
|
for (final itemIndex in selectedItemIndexes) {
|
|
itemIds.add(_items.elementAt(itemIndex).id!);
|
|
if (!showErrorPrompt) {
|
|
showErrorPrompt =
|
|
!DbHelper.isOwner(_items.elementAt(itemIndex).ownerId) &&
|
|
!DbHelper.isOwner(_checklist!.ownerId);
|
|
}
|
|
}
|
|
if (showErrorPrompt) {
|
|
Messenger.showError(context, 'Can\'t delete items that aren\'t yours.');
|
|
}
|
|
DbHelper.deleteItemsById(itemIds);
|
|
setState(() {
|
|
selectedItemIndexes = [];
|
|
});
|
|
}
|
|
|
|
Widget get _pageTitleBuilder {
|
|
if (!_titleEditMode) {
|
|
return GestureDetector(
|
|
onTap: () => setState(() => _titleEditMode = true),
|
|
child: Text(pageTitle ?? ''));
|
|
} else {
|
|
titleController.text = pageTitle ?? '';
|
|
return TextField(
|
|
autofocus: true,
|
|
controller: titleController,
|
|
onSubmitted: (value) => _onTitleChanged(
|
|
_checklist!.id,
|
|
titleController.text,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
void _onTitleChanged(int id, String title) {
|
|
setState(() {
|
|
pageTitle = title;
|
|
_titleEditMode = false;
|
|
DbHelper.updateChecklistTitle(id, title);
|
|
});
|
|
}
|
|
|
|
_streamBuilder(
|
|
BuildContext context,
|
|
AsyncSnapshot<List<Map<String, dynamic>>> snapshot,
|
|
Checklist? checklist,
|
|
List<Item> items) {
|
|
if (snapshot.hasData) {
|
|
_items = DbHelper.resToItemList(snapshot.data!);
|
|
}
|
|
return ListView.separated(
|
|
itemCount: _items.length,
|
|
itemBuilder: _itemListBuilder,
|
|
separatorBuilder: (context, index) {
|
|
return const Center(
|
|
child: Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 15.0),
|
|
child: Divider(),
|
|
));
|
|
},
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: _pageTitleBuilder,
|
|
actions: [
|
|
if (!_titleEditMode)
|
|
IconButton(
|
|
onPressed: _onInfoButtonPressed, icon: const Icon(Icons.info)),
|
|
if (_titleEditMode)
|
|
IconButton(
|
|
onPressed: () => _onTitleChanged(
|
|
_checklist!.id,
|
|
titleController.text,
|
|
),
|
|
icon: const Icon(Icons.check),
|
|
),
|
|
if (_titleEditMode)
|
|
IconButton(
|
|
onPressed: () => setState(() => _titleEditMode = false),
|
|
icon: const Icon(Icons.cancel_outlined)),
|
|
],
|
|
),
|
|
body: FutureBuilder(
|
|
future: _checklistFutures,
|
|
builder: _futureBuilder,
|
|
),
|
|
floatingActionButton: _fabBuilder,
|
|
);
|
|
}
|
|
|
|
FloatingActionButton? get _fabBuilder {
|
|
if (_titleEditMode) {
|
|
return null;
|
|
}
|
|
if (selectedItemIndexes.isEmpty) {
|
|
return FloatingActionButton(
|
|
onPressed: _addItemTapped,
|
|
child: const Icon(Icons.add),
|
|
);
|
|
}
|
|
return FloatingActionButton(
|
|
onPressed: _onDeleteItemsPressed,
|
|
backgroundColor: Theme.of(context).colorScheme.error,
|
|
child: Icon(Icons.delete, color: Theme.of(context).colorScheme.onError),
|
|
);
|
|
}
|
|
|
|
_onItemCheckedChanged(bool isChecked, int? id) async {
|
|
if (isChecked) {
|
|
await DbHelper.insertCheckedEntry(_checklist!.id, id!);
|
|
} else {
|
|
await DbHelper.deleteCheckedEntry(_checklist!.id, id!);
|
|
}
|
|
}
|
|
|
|
void _onInfoButtonPressed() {
|
|
TextEditingController desCon = TextEditingController();
|
|
desCon.text = _checklist!.description;
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
title: Text(_checklist!.title),
|
|
content: SizedBox(
|
|
width: 300,
|
|
child: DbHelper.isOwner(_checklist!.ownerId)
|
|
? TextField(
|
|
controller: desCon,
|
|
maxLines: 5,
|
|
decoration: const InputDecoration(
|
|
label: Text('Description'),
|
|
),
|
|
)
|
|
: Text(_checklist!.description),
|
|
),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
child: const Text('Ok'),
|
|
)
|
|
],
|
|
),
|
|
).whenComplete(() {
|
|
DbHelper.updateChecklistDescription(_checklist!.id, desCon.text);
|
|
setState(() => _checklist!.description = desCon.text);
|
|
});
|
|
}
|
|
}
|