mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-08 16:27:31 +00:00
If you used a previous commit from this branch, this is a breaking change, because it changes the type of a configuration field. but since this is still in development, it should be fine. Signed-off-by: Blake Leonard <me@blakes.dev>
63 lines
2.3 KiB
Dart
63 lines
2.3 KiB
Dart
import 'package:file_picker/file_picker.dart';
|
|
import 'package:file_selector/file_selector.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:spotube/collections/spotube_icons.dart';
|
|
import 'package:spotube/components/settings/section_card_with_heading.dart';
|
|
import 'package:spotube/extensions/context.dart';
|
|
import 'package:spotube/provider/user_preferences/user_preferences_provider.dart';
|
|
import 'package:spotube/utils/platform.dart';
|
|
|
|
class SettingsDownloadsSection extends HookConsumerWidget {
|
|
const SettingsDownloadsSection({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, ref) {
|
|
final preferencesNotifier = ref.watch(userPreferencesProvider.notifier);
|
|
final preferences = ref.watch(userPreferencesProvider);
|
|
|
|
final pickDownloadLocation = useCallback(() async {
|
|
if (kIsMobile || kIsMacOS) {
|
|
final dirStr = await FilePicker.platform.getDirectoryPath(
|
|
initialDirectory: preferences.downloadLocation,
|
|
);
|
|
if (dirStr == null) return;
|
|
preferencesNotifier.setDownloadLocation(dirStr);
|
|
} else {
|
|
String? dirStr = await getDirectoryPath(
|
|
initialDirectory: preferences.downloadLocation,
|
|
);
|
|
if (dirStr == null) return;
|
|
preferencesNotifier.setDownloadLocation(dirStr);
|
|
}
|
|
}, [preferences.downloadLocation]);
|
|
|
|
return SectionCardWithHeading(
|
|
heading: context.l10n.downloads,
|
|
children: [
|
|
ListTile(
|
|
leading: const Icon(SpotubeIcons.download),
|
|
title: Text(context.l10n.download_location),
|
|
subtitle: Text(preferences.downloadLocation),
|
|
trailing: FilledButton(
|
|
onPressed: pickDownloadLocation,
|
|
child: const Icon(SpotubeIcons.folder),
|
|
),
|
|
onTap: pickDownloadLocation,
|
|
),
|
|
ListTile(
|
|
leading: const Icon(SpotubeIcons.folder),
|
|
title: Text(context.l10n.local_library),
|
|
subtitle: Text(context.l10n.local_library_description),
|
|
onTap: () {
|
|
GoRouter.of(context).push("/settings/local_library");
|
|
},
|
|
trailing: const Icon(SpotubeIcons.angleRight),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|