84 lines
2.8 KiB
Dart
84 lines
2.8 KiB
Dart
import 'package:aves/theme/icons.dart';
|
|
import 'package:aves/widgets/common/extensions/build_context.dart';
|
|
import 'package:aves/widgets/common/identity/empty.dart';
|
|
import 'package:aves/widgets/common/identity/highlight_title.dart';
|
|
import 'package:aves/widgets/common/providers/media_query_data_provider.dart';
|
|
import 'package:aves/widgets/common/search/delegate.dart';
|
|
import 'package:aves/widgets/settings/settings_definition.dart';
|
|
import 'package:collection/collection.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class SettingsSearchDelegate extends AvesSearchDelegate {
|
|
final List<SettingsSection> sections;
|
|
|
|
static const pageRouteName = '/settings/search';
|
|
|
|
SettingsSearchDelegate({
|
|
required super.searchFieldLabel,
|
|
required this.sections,
|
|
}) : super(
|
|
routeName: pageRouteName,
|
|
);
|
|
|
|
@override
|
|
Widget buildSuggestions(BuildContext context) {
|
|
final upQuery = query.toUpperCase().trim();
|
|
if (upQuery.isEmpty) return const SizedBox();
|
|
|
|
bool testKey(String key) => key.toUpperCase().contains(upQuery);
|
|
|
|
final loader = Future.wait(sections.map((section) async {
|
|
final allTiles = await section.tiles(context);
|
|
final filteredTiles = testKey(section.title(context)) ? allTiles : allTiles.where((v) => testKey(v.title(context))).toList();
|
|
if (filteredTiles.isEmpty) return null;
|
|
|
|
return (context) {
|
|
return <Widget>[
|
|
Padding(
|
|
// match header layout in Settings page
|
|
padding: const EdgeInsets.symmetric(horizontal: 18, vertical: 13),
|
|
child: Row(
|
|
children: [
|
|
section.icon(context),
|
|
const SizedBox(width: 8),
|
|
Expanded(
|
|
child: HighlightTitle(
|
|
title: section.title(context),
|
|
showHighlight: false,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
...filteredTiles.map((v) => v.build(context)),
|
|
];
|
|
};
|
|
}));
|
|
|
|
return MediaQueryDataProvider(
|
|
child: SafeArea(
|
|
child: FutureBuilder<List<List<Widget> Function(BuildContext)?>>(
|
|
future: loader,
|
|
builder: (context, snapshot) {
|
|
final loaders = snapshot.data;
|
|
if (loaders == null) return const SizedBox();
|
|
|
|
final children = loaders.whereNotNull().expand((builder) => builder(context)).toList();
|
|
return children.isEmpty
|
|
? EmptyContent(
|
|
icon: AIcons.settings,
|
|
text: context.l10n.settingsSearchEmpty,
|
|
)
|
|
: ListView(
|
|
padding: const EdgeInsets.all(8),
|
|
children: children,
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget buildResults(BuildContext context) => buildSuggestions(context);
|
|
}
|