mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-07-29 23:38:50 +02:00
Every settings-style page carried the same 40-line SliverAppBar block; titles, custom leadings (discard-confirm back handlers), and action buttons are preserved through the widget's slots.
211 lines
7.9 KiB
Dart
211 lines
7.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:spotiflac_android/l10n/l10n.dart';
|
|
import 'package:spotiflac_android/providers/settings_provider.dart';
|
|
import 'package:spotiflac_android/utils/artist_utils.dart';
|
|
import 'package:spotiflac_android/screens/settings/metadata_provider_priority_page.dart';
|
|
import 'package:spotiflac_android/widgets/settings_group.dart';
|
|
import 'package:spotiflac_android/widgets/settings_sliver_app_bar.dart';
|
|
|
|
class MetadataSettingsPage extends ConsumerWidget {
|
|
const MetadataSettingsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final settings = ref.watch(settingsProvider);
|
|
|
|
return PopScope(
|
|
canPop: true,
|
|
child: Scaffold(
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
SettingsSliverAppBar(title: context.l10n.settingsMetadata),
|
|
|
|
SliverToBoxAdapter(
|
|
child: SettingsSectionHeader(title: context.l10n.sectionDownload),
|
|
),
|
|
SliverToBoxAdapter(
|
|
child: SettingsGroup(
|
|
children: [
|
|
SettingsSwitchItem(
|
|
icon: Icons.sell_outlined,
|
|
title: context.l10n.optionsEmbedMetadata,
|
|
subtitle: settings.embedMetadata
|
|
? context.l10n.optionsEmbedMetadataSubtitleOn
|
|
: context.l10n.optionsEmbedMetadataSubtitleOff,
|
|
value: settings.embedMetadata,
|
|
onChanged: (v) =>
|
|
ref.read(settingsProvider.notifier).setEmbedMetadata(v),
|
|
showDivider: settings.embedMetadata,
|
|
),
|
|
if (settings.embedMetadata) ...[
|
|
SettingsItem(
|
|
icon: Icons.people_alt_outlined,
|
|
title: context.l10n.optionsArtistTagMode,
|
|
subtitle: _getArtistTagModeLabel(
|
|
context,
|
|
settings.artistTagMode,
|
|
),
|
|
onTap: () =>
|
|
_showArtistTagModePicker(context, ref, settings.artistTagMode),
|
|
),
|
|
SettingsSwitchItem(
|
|
icon: Icons.image,
|
|
title: context.l10n.optionsMaxQualityCover,
|
|
subtitle: context.l10n.optionsMaxQualityCoverSubtitle,
|
|
value: settings.maxQualityCover,
|
|
onChanged: (v) => ref
|
|
.read(settingsProvider.notifier)
|
|
.setMaxQualityCover(v),
|
|
),
|
|
SettingsSwitchItem(
|
|
icon: Icons.graphic_eq,
|
|
title: context.l10n.optionsReplayGain,
|
|
subtitle: settings.embedReplayGain
|
|
? context.l10n.optionsReplayGainSubtitleOn
|
|
: context.l10n.optionsReplayGainSubtitleOff,
|
|
value: settings.embedReplayGain,
|
|
onChanged: (v) => ref
|
|
.read(settingsProvider.notifier)
|
|
.setEmbedReplayGain(v),
|
|
showDivider: false,
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
|
|
SliverToBoxAdapter(
|
|
child: SettingsSectionHeader(
|
|
title: context.l10n.sectionMetadataProviders,
|
|
),
|
|
),
|
|
SliverToBoxAdapter(
|
|
child: SettingsGroup(
|
|
children: [
|
|
SettingsItem(
|
|
icon: Icons.source_outlined,
|
|
title: context.l10n.metadataProvidersTitle,
|
|
subtitle: context.l10n.metadataProvidersSubtitle,
|
|
onTap: () => Navigator.push(
|
|
context,
|
|
MaterialPageRoute<void>(
|
|
builder: (_) => const MetadataProviderPriorityPage(),
|
|
),
|
|
),
|
|
showDivider: false,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
SliverToBoxAdapter(
|
|
child: SettingsSectionHeader(
|
|
title: context.l10n.sectionDuplicates,
|
|
),
|
|
),
|
|
SliverToBoxAdapter(
|
|
child: SettingsGroup(
|
|
children: [
|
|
SettingsSwitchItem(
|
|
icon: Icons.filter_list_outlined,
|
|
title: context.l10n.downloadDeduplication,
|
|
subtitle: settings.deduplicateDownloads
|
|
? context.l10n.downloadDeduplicationEnabled
|
|
: context.l10n.downloadDeduplicationDisabled,
|
|
value: settings.deduplicateDownloads,
|
|
onChanged: (value) => ref
|
|
.read(settingsProvider.notifier)
|
|
.setDeduplicateDownloads(value),
|
|
showDivider: false,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
const SliverToBoxAdapter(child: SizedBox(height: 32)),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
String _getArtistTagModeLabel(BuildContext context, String mode) {
|
|
switch (mode) {
|
|
case artistTagModeSplitVorbis:
|
|
return context.l10n.optionsArtistTagModeSplitVorbis;
|
|
default:
|
|
return context.l10n.optionsArtistTagModeJoined;
|
|
}
|
|
}
|
|
|
|
void _showArtistTagModePicker(
|
|
BuildContext context,
|
|
WidgetRef ref,
|
|
String currentMode,
|
|
) {
|
|
final colorScheme = Theme.of(context).colorScheme;
|
|
showModalBottomSheet<void>(
|
|
context: context,
|
|
useRootNavigator: true,
|
|
backgroundColor: colorScheme.surfaceContainerHigh,
|
|
shape: const RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.vertical(top: Radius.circular(28)),
|
|
),
|
|
builder: (context) => SafeArea(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.fromLTRB(24, 24, 24, 8),
|
|
child: Text(
|
|
context.l10n.optionsArtistTagMode,
|
|
style: Theme.of(context).textTheme.titleLarge
|
|
?.copyWith(fontWeight: FontWeight.bold),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.fromLTRB(24, 0, 24, 16),
|
|
child: Text(
|
|
context.l10n.optionsArtistTagModeDescription,
|
|
style: Theme.of(context).textTheme.bodyMedium
|
|
?.copyWith(color: colorScheme.onSurfaceVariant),
|
|
),
|
|
),
|
|
ListTile(
|
|
leading: const Icon(Icons.segment_outlined),
|
|
title: Text(context.l10n.optionsArtistTagModeJoined),
|
|
subtitle: Text(context.l10n.optionsArtistTagModeJoinedSubtitle),
|
|
trailing: currentMode == artistTagModeJoined
|
|
? const Icon(Icons.check)
|
|
: null,
|
|
onTap: () {
|
|
ref
|
|
.read(settingsProvider.notifier)
|
|
.setArtistTagMode(artistTagModeJoined);
|
|
Navigator.pop(context);
|
|
},
|
|
),
|
|
ListTile(
|
|
leading: const Icon(Icons.library_music_outlined),
|
|
title: Text(context.l10n.optionsArtistTagModeSplitVorbis),
|
|
subtitle: Text(context.l10n.optionsArtistTagModeSplitVorbisSubtitle),
|
|
trailing: currentMode == artistTagModeSplitVorbis
|
|
? const Icon(Icons.check)
|
|
: null,
|
|
onTap: () {
|
|
ref
|
|
.read(settingsProvider.notifier)
|
|
.setArtistTagMode(artistTagModeSplitVorbis);
|
|
Navigator.pop(context);
|
|
},
|
|
),
|
|
const SizedBox(height: 16),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|