119 lines
5.7 KiB
Dart
119 lines
5.7 KiB
Dart
// Copyright 2020 Ben Hills and the project contributors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:pinepods_mobile/bloc/settings/settings_bloc.dart';
|
|
import 'package:pinepods_mobile/entities/app_settings.dart';
|
|
import 'package:pinepods_mobile/l10n/L.dart';
|
|
import 'package:pinepods_mobile/ui/widgets/action_text.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_dialogs/flutter_dialogs.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class SearchProviderWidget extends StatefulWidget {
|
|
final ValueChanged<String?>? onChanged;
|
|
|
|
const SearchProviderWidget({
|
|
super.key,
|
|
this.onChanged,
|
|
});
|
|
|
|
@override
|
|
State<SearchProviderWidget> createState() => _SearchProviderWidgetState();
|
|
}
|
|
|
|
class _SearchProviderWidgetState extends State<SearchProviderWidget> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var settingsBloc = Provider.of<SettingsBloc>(context);
|
|
|
|
return StreamBuilder<AppSettings>(
|
|
stream: settingsBloc.settings,
|
|
initialData: AppSettings.sensibleDefaults(),
|
|
builder: (context, snapshot) {
|
|
return snapshot.data!.searchProviders.length > 1
|
|
? Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
ListTile(
|
|
title: Text(L.of(context)!.search_provider_label),
|
|
subtitle: Text(snapshot.data!.searchProvider == 'itunes' ? 'iTunes' : 'PodcastIndex'),
|
|
onTap: () {
|
|
showPlatformDialog<void>(
|
|
context: context,
|
|
useRootNavigator: false,
|
|
builder: (BuildContext context) {
|
|
return AlertDialog(
|
|
title: Semantics(
|
|
header: true,
|
|
child: Text(L.of(context)!.search_provider_label,
|
|
style: Theme.of(context).textTheme.titleMedium, textAlign: TextAlign.center),
|
|
),
|
|
content: StatefulBuilder(
|
|
builder: (BuildContext context, StateSetter setState) {
|
|
return Column(mainAxisSize: MainAxisSize.min, children: <Widget>[
|
|
RadioListTile<String>(
|
|
title: const Text('iTunes'),
|
|
value: 'itunes',
|
|
dense: true,
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 0.0),
|
|
groupValue: snapshot.data!.searchProvider,
|
|
onChanged: (String? value) {
|
|
setState(() {
|
|
settingsBloc.setSearchProvider(value ?? 'itunes');
|
|
|
|
if (widget.onChanged != null) {
|
|
widget.onChanged!(value);
|
|
}
|
|
|
|
Navigator.pop(context);
|
|
});
|
|
},
|
|
),
|
|
RadioListTile<String>(
|
|
title: const Text('PodcastIndex'),
|
|
value: 'podcastindex',
|
|
dense: true,
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 0.0),
|
|
groupValue: snapshot.data!.searchProvider,
|
|
onChanged: (String? value) {
|
|
setState(() {
|
|
settingsBloc.setSearchProvider(value ?? 'podcastindex');
|
|
|
|
if (widget.onChanged != null) {
|
|
widget.onChanged!(value);
|
|
}
|
|
|
|
Navigator.pop(context);
|
|
});
|
|
},
|
|
),
|
|
SimpleDialogOption(
|
|
padding: const EdgeInsets.symmetric(vertical: 16.0, horizontal: 24.0),
|
|
// child: Text(L.of(context)!.close_button_label),
|
|
child: Align(
|
|
alignment: Alignment.centerRight,
|
|
child: TextButton(
|
|
child: ActionText(L.of(context)!.close_button_label),
|
|
onPressed: () {
|
|
Navigator.pop(context, '');
|
|
},
|
|
),
|
|
),
|
|
),
|
|
]);
|
|
},
|
|
));
|
|
},
|
|
);
|
|
},
|
|
),
|
|
],
|
|
)
|
|
: Container();
|
|
});
|
|
}
|
|
}
|