import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import '../../models/track.dart'; import '../../player/player_provider.dart'; import '../../shared/widgets/track_actions/track_actions_button.dart'; import '../../theme/theme_extension.dart'; import 'cached_indicator.dart'; class TrackRow extends ConsumerWidget { const TrackRow({ required this.track, required this.onTap, this.trailing, this.actions = true, super.key, }); final TrackRef track; final VoidCallback onTap; final Widget? trailing; /// Render the 3-dot TrackActionsButton at the end of the row. Default /// true; pass false in surfaces that don't want the menu (e.g. when /// showing a static read-only list). final bool actions; @override Widget build(BuildContext context, WidgetRef ref) { final fs = Theme.of(context).extension()!; final mins = (track.durationSec ~/ 60).toString().padLeft(2, '0'); final secs = (track.durationSec % 60).toString().padLeft(2, '0'); // Watch the currently-playing media item so the row's accent // highlight tracks playback state. Matches _QueueRow's visual // treatment in queue_screen.dart so the "you are here" cue is // consistent across album / playlist / queue surfaces. final currentId = ref.watch(mediaItemProvider).value?.id; final isCurrent = currentId != null && currentId == track.id; return Container( decoration: BoxDecoration( color: isCurrent ? fs.iron : null, border: isCurrent ? Border(left: BorderSide(color: fs.accent, width: 2)) : null, ), child: InkWell( onTap: onTap, child: Padding( padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 6), child: Row(children: [ if (track.trackNumber != null) SizedBox( width: 22, child: Text( track.trackNumber.toString(), style: TextStyle(color: fs.ash, fontSize: 13), ), ), Expanded( child: Column( crossAxisAlignment: CrossAxisAlignment.start, mainAxisSize: MainAxisSize.min, children: [ Text( track.title, maxLines: 1, overflow: TextOverflow.ellipsis, style: TextStyle( color: isCurrent ? fs.accent : fs.parchment, fontSize: 14, fontWeight: isCurrent ? FontWeight.w500 : FontWeight.w400, ), ), // Skip the artist line entirely when empty so the row // height collapses to a single line of title — keeps // dense album views from looking padded. if (track.artistName.isNotEmpty) Text( track.artistName, maxLines: 1, overflow: TextOverflow.ellipsis, style: TextStyle(color: fs.ash, fontSize: 12), ), ], ), ), CachedIndicator(trackId: track.id), Text('$mins:$secs', style: TextStyle(color: fs.ash, fontSize: 12)), if (trailing != null) Padding( padding: const EdgeInsets.only(left: 8), child: trailing!, ), if (actions) TrackActionsButton(track: track), ]), ), ), ); } }