ente/lib/ui/search_tab.dart

113 lines
3.5 KiB
Dart
Raw Normal View History

2023-02-25 08:00:42 +00:00
import "package:flutter/material.dart";
import "package:photos/models/search/search_result.dart";
2023-02-25 08:00:42 +00:00
import "package:photos/models/search/search_types.dart";
import "package:photos/states/search_results_state.dart";
import "package:photos/ui/common/loading_widget.dart";
import "package:photos/ui/viewer/search/result/no_result_widget.dart";
2023-02-25 08:00:42 +00:00
import "package:photos/ui/viewer/search/search_section.dart";
import "package:photos/ui/viewer/search/search_suggestions.dart";
import "package:photos/ui/viewer/search/search_widget_new.dart";
2023-02-23 17:14:56 +00:00
late Future<List<List<SearchResult>>> allSectionsExamples;
2023-02-23 17:14:56 +00:00
class SearchTab extends StatefulWidget {
const SearchTab({Key? key}) : super(key: key);
2023-02-25 08:00:42 +00:00
2023-02-23 17:14:56 +00:00
@override
State<SearchTab> createState() => _SearchTabState();
}
class _SearchTabState extends State<SearchTab> {
2023-02-25 08:00:42 +00:00
// Focus nodes are necessary
var _searchResults = <SearchResult>[];
@override
void didChangeDependencies() {
super.didChangeDependencies();
_searchResults = InheritedSearchResults.of(context).results;
}
2023-02-25 08:00:42 +00:00
2023-02-23 17:14:56 +00:00
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.only(top: 8),
child: _searchResults.isEmpty
? isSearchQueryEmpty
? const AllSearchSections()
: const NoResultWidget()
: SearchSuggestionsWidget(_searchResults),
2023-02-25 08:00:42 +00:00
);
}
2023-02-23 17:14:56 +00:00
}
class AllSearchSections extends StatefulWidget {
const AllSearchSections({super.key});
@override
State<AllSearchSections> createState() => _AllSearchSectionsState();
}
class _AllSearchSectionsState extends State<AllSearchSections> {
late List<Future<List<SearchResult>>> sectionExamples;
static const _limit = 7;
@override
void initState() {
super.initState();
sectionExamples = <Future<List<SearchResult>>>[];
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
for (SectionType sectionType in SectionType.values) {
if (sectionType == SectionType.face ||
sectionType == SectionType.content) {
continue;
}
sectionExamples.add(sectionType.getData(limit: _limit, context: context));
}
2023-10-09 12:47:44 +00:00
allSectionsExamples = Future.wait<List<SearchResult>>(sectionExamples);
}
@override
Widget build(BuildContext context) {
// Return a ListViewBuilder for value search_types.dart SectionType,
// render search section for each value
final searchTypes = SectionType.values.toList(growable: true);
// remove face and content sectionType
searchTypes.remove(SectionType.face);
searchTypes.remove(SectionType.content);
return Expanded(
child: Stack(
children: [
FutureBuilder(
future: allSectionsExamples,
builder: (context, snapshot) {
if (snapshot.hasData) {
return ListView.builder(
padding: const EdgeInsets.only(bottom: 180),
physics: const BouncingScrollPhysics(),
itemCount: searchTypes.length,
itemBuilder: (context, index) {
return SearchSection(
sectionType: searchTypes[index],
examples: snapshot.data!.elementAt(index),
limit: _limit,
);
},
);
} else if (snapshot.hasError) {
//todo: Show something went wrong here
return const EnteLoadingWidget();
} else {
return const EnteLoadingWidget();
}
},
),
],
),
);
}
}