- search schmearch
This commit is contained in:
@ -1,20 +1,25 @@
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
|
||||
import 'package:f0ckapp/services/api_service.dart';
|
||||
import 'package:f0ckapp/models/suggestion_model.dart';
|
||||
import 'package:f0ckapp/providers/media_provider.dart';
|
||||
|
||||
class CustomSearchDelegate extends SearchDelegate<String> {
|
||||
Timer? _debounceTimer;
|
||||
List<Suggestion>? _suggestions;
|
||||
bool _isLoading = false;
|
||||
String? _error;
|
||||
String _lastFetchedQuery = "";
|
||||
|
||||
@override
|
||||
List<Widget> buildActions(BuildContext context) {
|
||||
return [
|
||||
IconButton(
|
||||
icon: Icon(Icons.clear),
|
||||
icon: const Icon(Icons.clear),
|
||||
onPressed: () {
|
||||
query = '';
|
||||
_clearResults();
|
||||
showSuggestions(context);
|
||||
},
|
||||
),
|
||||
@ -24,8 +29,11 @@ class CustomSearchDelegate extends SearchDelegate<String> {
|
||||
@override
|
||||
Widget buildLeading(BuildContext context) {
|
||||
return IconButton(
|
||||
icon: Icon(Icons.arrow_back),
|
||||
onPressed: () => close(context, 'null'),
|
||||
icon: const Icon(Icons.arrow_back),
|
||||
onPressed: () {
|
||||
_debounceTimer?.cancel();
|
||||
close(context, 'null');
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
@ -36,35 +44,58 @@ class CustomSearchDelegate extends SearchDelegate<String> {
|
||||
|
||||
@override
|
||||
Widget buildSuggestions(BuildContext context) {
|
||||
if (query.isEmpty) {
|
||||
return Container(padding: EdgeInsets.all(16.0), child: Text(''));
|
||||
}
|
||||
|
||||
final Future<List<Suggestion>> futureSuggestions = Future.delayed(
|
||||
Duration(milliseconds: 300),
|
||||
() => fetchSuggestions(query),
|
||||
);
|
||||
|
||||
return FutureBuilder<List<Suggestion>>(
|
||||
future: futureSuggestions,
|
||||
builder: (BuildContext context, AsyncSnapshot<List<Suggestion>> snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||
return Center(child: CircularProgressIndicator());
|
||||
}
|
||||
if (snapshot.hasError) {
|
||||
return Center(child: Text("Fehler: ${snapshot.error}"));
|
||||
}
|
||||
if (!snapshot.hasData || snapshot.data!.isEmpty) {
|
||||
return Center(child: Text("Keine Vorschläge gefunden."));
|
||||
return StatefulBuilder(
|
||||
builder: (BuildContext context, void Function(void Function()) setState) {
|
||||
if (query.isEmpty) {
|
||||
_debounceTimer?.cancel();
|
||||
return Container(padding: const EdgeInsets.all(16.0), child: const Text(''));
|
||||
}
|
||||
|
||||
if (query != _lastFetchedQuery) {
|
||||
_debounceTimer?.cancel();
|
||||
_isLoading = true;
|
||||
_error = null;
|
||||
_suggestions = null;
|
||||
|
||||
_debounceTimer = Timer(Duration(milliseconds: 500), () async {
|
||||
try {
|
||||
final List<Suggestion> results = await fetchSuggestions(query);
|
||||
_lastFetchedQuery = query;
|
||||
setState(() {
|
||||
_suggestions = results;
|
||||
_isLoading = false;
|
||||
});
|
||||
} catch (e) {
|
||||
_lastFetchedQuery = query;
|
||||
setState(() {
|
||||
_error = e.toString();
|
||||
_suggestions = [];
|
||||
_isLoading = false;
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
return Center(child: _buildLoadingIndicator());
|
||||
}
|
||||
|
||||
if (_isLoading) {
|
||||
return Center(child: _buildLoadingIndicator());
|
||||
}
|
||||
|
||||
if (_error != null) {
|
||||
return Center(child: Text("Fehler: $_error"));
|
||||
}
|
||||
|
||||
if (_suggestions == null || _suggestions!.isEmpty) {
|
||||
return Center(child: const Text("Keine Ergebnisse gefunden."));
|
||||
}
|
||||
|
||||
final List<Suggestion> suggestions = snapshot.data!;
|
||||
return Consumer(
|
||||
builder: (BuildContext context, WidgetRef ref, Widget? child) {
|
||||
return ListView.builder(
|
||||
itemCount: suggestions.length,
|
||||
itemCount: _suggestions!.length,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
final Suggestion suggestion = suggestions[index];
|
||||
final Suggestion suggestion = _suggestions![index];
|
||||
return ListTile(
|
||||
title: Text(suggestion.tag),
|
||||
subtitle: Text(
|
||||
@ -83,4 +114,32 @@ class CustomSearchDelegate extends SearchDelegate<String> {
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildLoadingIndicator() {
|
||||
return Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
const CircularProgressIndicator(strokeWidth: 3.0),
|
||||
const SizedBox(height: 12),
|
||||
const Text(
|
||||
'Vorschläge werden geladen...',
|
||||
style: TextStyle(fontStyle: FontStyle.italic),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
void _clearResults() {
|
||||
_debounceTimer?.cancel();
|
||||
_suggestions = null;
|
||||
_isLoading = false;
|
||||
_error = null;
|
||||
_lastFetchedQuery = "";
|
||||
}
|
||||
|
||||
@override
|
||||
void close(BuildContext context, String result) {
|
||||
_debounceTimer?.cancel();
|
||||
super.close(context, result);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user