3e905db906
ExpansionTile per aggregated quarantine row — collapsed shows track,
artist · album, and "{N} reports: {top reason}". Expanded reveals the
nested per-user reports with their reasons + optional notes.
Three-dot menu offers Resolve / Delete file / Delete via Lidarr; both
deletes route through TypedConfirmSheet which requires the user to
type "DELETE" before the action button enables.
Adds AdminQuarantineController with optimistic-removal + rollback,
mirroring AdminRequestsController's pattern.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
58 lines
2.1 KiB
Dart
58 lines
2.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../shared/widgets/main_app_bar_actions.dart';
|
|
import '../theme/theme_extension.dart';
|
|
import 'admin_providers.dart';
|
|
import 'widgets/admin_quarantine_row.dart';
|
|
|
|
class AdminQuarantineScreen extends ConsumerWidget {
|
|
const AdminQuarantineScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final fs = Theme.of(context).extension<FabledSwordTheme>()!;
|
|
final items = ref.watch(adminQuarantineProvider);
|
|
return Scaffold(
|
|
backgroundColor: fs.obsidian,
|
|
appBar: AppBar(
|
|
backgroundColor: fs.obsidian,
|
|
elevation: 0,
|
|
title: Text('Quarantine', style: TextStyle(color: fs.parchment)),
|
|
actions: const [MainAppBarActions(currentRoute: '/admin/quarantine')],
|
|
),
|
|
body: SafeArea(
|
|
child: items.when(
|
|
loading: () => const Center(child: CircularProgressIndicator()),
|
|
error: (e, _) =>
|
|
Center(child: Text('$e', style: TextStyle(color: fs.error))),
|
|
data: (rows) {
|
|
if (rows.isEmpty) {
|
|
return Center(
|
|
child: Text('No quarantined tracks.',
|
|
style: TextStyle(color: fs.ash)),
|
|
);
|
|
}
|
|
final notifier = ref.read(adminQuarantineProvider.notifier);
|
|
return RefreshIndicator(
|
|
onRefresh: () async =>
|
|
ref.refresh(adminQuarantineProvider.future),
|
|
child: ListView.builder(
|
|
itemCount: rows.length,
|
|
itemBuilder: (_, i) => AdminQuarantineRow(
|
|
key: Key('admin_quarantine_row_${rows[i].trackId}'),
|
|
item: rows[i],
|
|
onResolve: () => notifier.resolve(rows[i].trackId),
|
|
onDeleteFile: () => notifier.deleteFile(rows[i].trackId),
|
|
onDeleteViaLidarr: () =>
|
|
notifier.deleteViaLidarr(rows[i].trackId),
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|