2022-01-19 02:10:05 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import '../components/common/loading.dart';
|
|
|
|
import '../components/common/opaque_box.dart';
|
|
|
|
import '../components/history/date_divider.dart';
|
|
|
|
import '../components/history/search_item.dart';
|
|
|
|
import '../models/history/search.dart';
|
2022-01-25 20:44:00 +01:00
|
|
|
import '../services/datetime.dart';
|
2022-01-19 02:10:05 +01:00
|
|
|
|
|
|
|
class HistoryView extends StatelessWidget {
|
|
|
|
const HistoryView({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
Stream<Map<int, Search>> get searchStream => Search.store
|
2022-01-25 20:44:00 +01:00
|
|
|
.query(finder: Finder(sortOrders: [SortOrder('lastTimestamp', false)]))
|
2022-01-19 02:10:05 +01:00
|
|
|
.onSnapshots(_db)
|
|
|
|
.map(
|
|
|
|
(snapshot) => Map.fromEntries(
|
|
|
|
snapshot.where((snap) => snap.value != null).map(
|
|
|
|
(snap) => MapEntry(
|
|
|
|
snap.key,
|
|
|
|
Search.fromJson(snap.value! as Map<String, Object?>),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2022-01-25 20:44:00 +01:00
|
|
|
Database get _db => GetIt.instance.get<Database>();
|
|
|
|
|
2022-01-19 02:10:05 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return StreamBuilder<Map<int, Search>>(
|
|
|
|
stream: searchStream,
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
if (!snapshot.hasData) return const LoadingScreen();
|
|
|
|
|
|
|
|
final Map<int, Search> data = snapshot.data!;
|
|
|
|
if (data.isEmpty)
|
|
|
|
return const Center(
|
|
|
|
child: Text('The history is empty.\nTry searching for something!'),
|
|
|
|
);
|
|
|
|
|
|
|
|
return OpaqueBox(
|
|
|
|
child: ListView.separated(
|
|
|
|
itemCount: data.length + 1,
|
|
|
|
itemBuilder: historyEntryWithData(data),
|
|
|
|
separatorBuilder:
|
|
|
|
historyEntrySeparatorWithData(data.values.toList()),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget Function(BuildContext, int) historyEntrySeparatorWithData(
|
|
|
|
List<Search> data,
|
|
|
|
) =>
|
|
|
|
(context, index) {
|
|
|
|
final Search search = data[index];
|
2022-01-25 20:44:00 +01:00
|
|
|
final DateTime searchDate = search.timestamp;
|
2022-01-19 02:10:05 +01:00
|
|
|
|
2022-01-25 20:44:00 +01:00
|
|
|
if (index == 0 || !dateIsEqual(data[index - 1].timestamp, searchDate))
|
|
|
|
return TextDivider(text: formatDate(roundToDay(searchDate)));
|
2022-01-19 02:10:05 +01:00
|
|
|
|
|
|
|
return const Divider(height: 0);
|
|
|
|
};
|
2022-01-25 20:44:00 +01:00
|
|
|
|
|
|
|
Widget Function(BuildContext, int) historyEntryWithData(
|
|
|
|
Map<int, Search> data,
|
|
|
|
) =>
|
|
|
|
(context, index) => (index == 0)
|
|
|
|
? const SizedBox.shrink()
|
|
|
|
: SearchItem(
|
|
|
|
search: data.values.toList()[index - 1],
|
|
|
|
objectKey: data.keys.toList()[index - 1],
|
|
|
|
onDelete: () => build(context),
|
|
|
|
);
|
2022-01-19 02:10:05 +01:00
|
|
|
}
|