835592f073
Mechanical sweep across 30 files: every Material Icons.* replaced with the signed-off Lucide equivalent + a flutter_lucide import per file. Zero Material Icons.* remain in lib/; no unused imports. Judgment-call mappings: album->disc_3, library_music->library_big, playlist_play->list_video, graphic_eq->audio_lines, system_update->download, restore->archive_restore, download_done->circle_check_big. track_actions_sheet like menu row: collapsed `liked ? favorite : favorite_border` to a single LucideIcons.heart (the row's Like/Unlike text label conveys state). Icon-only LikeButton + the notification keep the filled-vs-outline shape per the design decision. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
103 lines
3.2 KiB
Dart
103 lines
3.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_lucide/flutter_lucide.dart';
|
|
|
|
import '../../models/admin_quarantine_item.dart';
|
|
import '../../theme/theme_extension.dart';
|
|
import 'typed_confirm_sheet.dart';
|
|
|
|
class AdminQuarantineRow extends StatelessWidget {
|
|
const AdminQuarantineRow({
|
|
super.key,
|
|
required this.item,
|
|
required this.onResolve,
|
|
required this.onDeleteFile,
|
|
required this.onDeleteViaLidarr,
|
|
});
|
|
|
|
final AdminQuarantineItem item;
|
|
final VoidCallback onResolve;
|
|
final VoidCallback onDeleteFile;
|
|
final VoidCallback onDeleteViaLidarr;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final fs = Theme.of(context).extension<FabledSwordTheme>()!;
|
|
return ExpansionTile(
|
|
key: Key('admin_quarantine_tile_${item.trackId}'),
|
|
title: Text(
|
|
item.trackTitle,
|
|
style: TextStyle(
|
|
color: fs.parchment,
|
|
fontFamily: 'Fraunces',
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
subtitle: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text('${item.artistName} · ${item.albumTitle}',
|
|
style: TextStyle(color: fs.ash)),
|
|
Text(
|
|
'${item.reportCount} '
|
|
'${item.reportCount == 1 ? "report" : "reports"} · ${item.topReasonSummary}',
|
|
style: TextStyle(color: fs.error, fontSize: 12),
|
|
),
|
|
],
|
|
),
|
|
trailing: PopupMenuButton<String>(
|
|
key: Key('admin_quarantine_menu_${item.trackId}'),
|
|
icon: Icon(LucideIcons.ellipsis_vertical, color: fs.parchment),
|
|
onSelected: (action) async {
|
|
switch (action) {
|
|
case 'resolve':
|
|
onResolve();
|
|
break;
|
|
case 'delete_file':
|
|
if (await TypedConfirmSheet.show(
|
|
context,
|
|
title: 'Delete file?',
|
|
message:
|
|
'Permanently delete the local file for "${item.trackTitle}". '
|
|
'Cannot be undone.',
|
|
)) {
|
|
onDeleteFile();
|
|
}
|
|
break;
|
|
case 'delete_lidarr':
|
|
if (await TypedConfirmSheet.show(
|
|
context,
|
|
title: 'Delete via Lidarr?',
|
|
message:
|
|
'Ask Lidarr to delete the file for "${item.trackTitle}".',
|
|
)) {
|
|
onDeleteViaLidarr();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
itemBuilder: (_) => const [
|
|
PopupMenuItem(value: 'resolve', child: Text('Resolve')),
|
|
PopupMenuItem(value: 'delete_file', child: Text('Delete file')),
|
|
PopupMenuItem(
|
|
value: 'delete_lidarr', child: Text('Delete via Lidarr')),
|
|
],
|
|
),
|
|
childrenPadding: const EdgeInsets.only(left: 16, right: 16, bottom: 8),
|
|
children: [
|
|
for (final report in item.reports)
|
|
ListTile(
|
|
dense: true,
|
|
title: Text(
|
|
'${report.username} — ${report.reason}',
|
|
style: TextStyle(color: fs.parchment, fontSize: 13),
|
|
),
|
|
subtitle: report.notes != null
|
|
? Text(report.notes!,
|
|
style: TextStyle(color: fs.ash, fontSize: 12))
|
|
: null,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|