mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-07-19 18:47:52 +02:00
c36497e87c
- Cache SharedPreferences instance in DownloadHistoryNotifier and DownloadQueueNotifier - Precompile regex for folder sanitization and year extraction - Use indexWhere instead of firstWhere with placeholder object - Use selective watch for downloadQueueProvider (queuedCount, items) - Pass Track directly to _buildTrackTile instead of index lookup - Pass historyItems as parameter to _buildRecentAccess - Add extended metadata (genre, label, copyright) support for MP3
185 lines
5.7 KiB
Dart
185 lines
5.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:spotiflac_android/services/cover_cache_manager.dart';
|
|
import 'package:spotiflac_android/models/track.dart';
|
|
import 'package:spotiflac_android/providers/track_provider.dart';
|
|
import 'package:spotiflac_android/providers/download_queue_provider.dart';
|
|
import 'package:spotiflac_android/providers/settings_provider.dart';
|
|
|
|
class SearchScreen extends ConsumerStatefulWidget {
|
|
final String query;
|
|
|
|
const SearchScreen({super.key, required this.query});
|
|
|
|
@override
|
|
ConsumerState<SearchScreen> createState() => _SearchScreenState();
|
|
}
|
|
|
|
class _SearchScreenState extends ConsumerState<SearchScreen> {
|
|
late TextEditingController _searchController;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_searchController = TextEditingController(text: widget.query);
|
|
if (widget.query.isNotEmpty) {
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
final settings = ref.read(settingsProvider);
|
|
ref.read(trackProvider.notifier).search(widget.query, metadataSource: settings.metadataSource);
|
|
});
|
|
}
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_searchController.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
void _search() {
|
|
final query = _searchController.text.trim();
|
|
if (query.isNotEmpty) {
|
|
final settings = ref.read(settingsProvider);
|
|
ref.read(trackProvider.notifier).search(query, metadataSource: settings.metadataSource);
|
|
}
|
|
}
|
|
|
|
void _downloadTrack(Track track) {
|
|
final settings = ref.read(settingsProvider);
|
|
ref.read(downloadQueueProvider.notifier).addToQueue(
|
|
track,
|
|
settings.defaultService,
|
|
);
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(content: Text('Added "${track.name}" to queue')),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final trackState = ref.watch(trackProvider);
|
|
final colorScheme = Theme.of(context).colorScheme;
|
|
final tracks = trackState.tracks;
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: TextField(
|
|
controller: _searchController,
|
|
style: TextStyle(color: colorScheme.onSurface),
|
|
decoration: InputDecoration(
|
|
hintText: 'Search tracks...',
|
|
hintStyle: TextStyle(color: colorScheme.onSurfaceVariant),
|
|
border: InputBorder.none,
|
|
enabledBorder: InputBorder.none,
|
|
focusedBorder: InputBorder.none,
|
|
),
|
|
onSubmitted: (_) => _search(),
|
|
autofocus: widget.query.isEmpty,
|
|
),
|
|
actions: [
|
|
IconButton(
|
|
icon: const Icon(Icons.search),
|
|
onPressed: _search,
|
|
),
|
|
],
|
|
),
|
|
body: Column(
|
|
children: [
|
|
if (trackState.isLoading)
|
|
LinearProgressIndicator(color: colorScheme.primary),
|
|
if (trackState.error != null)
|
|
Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Text(
|
|
trackState.error!,
|
|
style: TextStyle(color: colorScheme.error),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: tracks.isEmpty
|
|
? _buildEmptyState(colorScheme)
|
|
: ListView.builder(
|
|
itemCount: tracks.length,
|
|
itemBuilder: (context, index) =>
|
|
_buildTrackTile(tracks[index], colorScheme),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildEmptyState(ColorScheme colorScheme) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(
|
|
Icons.search,
|
|
size: 64,
|
|
color: colorScheme.onSurfaceVariant,
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'Search for tracks',
|
|
style: Theme.of(context).textTheme.bodyLarge?.copyWith(
|
|
color: colorScheme.onSurfaceVariant,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildTrackTile(Track track, ColorScheme colorScheme) {
|
|
return ListTile(
|
|
leading: track.coverUrl != null
|
|
? ClipRRect(
|
|
borderRadius: BorderRadius.circular(8),
|
|
child: CachedNetworkImage(
|
|
imageUrl: track.coverUrl!,
|
|
width: 48,
|
|
height: 48,
|
|
fit: BoxFit.cover,
|
|
cacheManager: CoverCacheManager.instance,
|
|
),
|
|
)
|
|
: Container(
|
|
width: 48,
|
|
height: 48,
|
|
decoration: BoxDecoration(
|
|
color: colorScheme.surfaceContainerHighest,
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
child: Icon(Icons.music_note, color: colorScheme.onSurfaceVariant),
|
|
),
|
|
title: Text(track.name, maxLines: 1, overflow: TextOverflow.ellipsis),
|
|
subtitle: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
track.artistName,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: TextStyle(color: colorScheme.onSurfaceVariant),
|
|
),
|
|
Text(
|
|
track.albumName,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: Theme.of(context).textTheme.bodySmall?.copyWith(
|
|
color: colorScheme.onSurfaceVariant.withValues(alpha: 0.7),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
trailing: IconButton(
|
|
icon: Icon(Icons.download, color: colorScheme.primary),
|
|
onPressed: () => _downloadTrack(track),
|
|
),
|
|
onTap: () => _downloadTrack(track),
|
|
);
|
|
}
|
|
}
|