Files
plezy/lib/screens/settings/trakt_settings_screen.dart
T

166 lines
6.3 KiB
Dart

import 'package:flutter/material.dart';
import 'package:material_symbols_icons/symbols.dart';
import 'package:provider/provider.dart';
import '../../i18n/strings.g.dart';
import '../../models/trackers/device_code.dart';
import '../../providers/trakt_account_provider.dart';
import '../../services/settings_service.dart';
import '../../services/trackers/tracker_constants.dart';
import '../../services/trakt/trakt_scrobble_service.dart';
import '../../services/trakt/trakt_sync_service.dart';
import '../../utils/dialogs.dart';
import '../../widgets/app_icon.dart';
import '../../widgets/device_code_dialog.dart';
import '../../widgets/focused_scroll_scaffold.dart';
import '../../widgets/settings_section.dart';
import 'tracker_connect_launcher.dart';
import 'tracker_library_filter_screen.dart';
Future<void> startTraktConnection(BuildContext context) {
final account = context.read<TraktAccountProvider>();
final name = t.trakt.title;
return launchTrackerConnect<DeviceCode>(
context,
isBusyOrConnected: account.isConnecting || account.isConnected,
serviceName: name,
connect: (cb) => account.connect(onCodeReady: cb),
onCancel: account.cancelConnect,
buildDialog: (code, cancel) => DeviceCodeDialog(code: code, serviceName: name, onCancel: cancel),
urlFor: (code) => code.verificationUrlComplete ?? code.verificationUrl,
);
}
class TraktSettingsScreen extends StatefulWidget {
const TraktSettingsScreen({super.key});
@override
State<TraktSettingsScreen> createState() => _TraktSettingsScreenState();
}
class _TraktSettingsScreenState extends State<TraktSettingsScreen> {
SettingsService? _settings;
bool _scrobbleEnabled = true;
bool _watchedSyncEnabled = true;
bool _loaded = false;
@override
void initState() {
super.initState();
_loadSettings();
}
Future<void> _loadSettings() async {
final s = await SettingsService.getInstance();
if (!mounted) return;
setState(() {
_settings = s;
_scrobbleEnabled = s.getEnableTraktScrobble();
_watchedSyncEnabled = s.getEnableTraktWatchedSync();
_loaded = true;
});
}
Future<void> _disconnect(TraktAccountProvider account) async {
final confirmed = await showConfirmDialog(
context,
title: t.trakt.disconnectConfirm,
message: t.trakt.disconnectConfirmBody,
confirmText: t.common.disconnect,
isDestructive: true,
);
if (!confirmed) return;
await account.disconnect();
// build()'s post-frame handler pops the screen once the provider rebuilds
// with isConnected == false — don't pop here too.
}
@override
Widget build(BuildContext context) {
if (!_loaded) {
return FocusedScrollScaffold(
title: Text(t.trakt.title),
slivers: const [SliverFillRemaining(child: Center(child: CircularProgressIndicator()))],
);
}
return Consumer<TraktAccountProvider>(
builder: (context, account, _) {
// Safety net: if we end up here while not connected (e.g. refresh failed
// in the background and cleared the session), bail out. The settings
// tile is the only supported entry point for the unauthed flow.
if (!account.isConnected) {
WidgetsBinding.instance.addPostFrameCallback((_) {
if (mounted) Navigator.of(context).pop();
});
return FocusedScrollScaffold(
title: Text(t.trakt.title),
slivers: const [SliverFillRemaining(child: SizedBox.shrink())],
);
}
final username = account.username;
return FocusedScrollScaffold(
title: Text(t.trakt.title),
slivers: [
SliverList(
delegate: SliverChildListDelegate([
ListTile(
leading: const AppIcon(Symbols.account_circle_rounded, fill: 1),
title: Text(username != null ? t.trakt.connectedAs(username: username) : t.trakt.connected),
subtitle: Text(t.trakt.connected),
),
SettingsSectionHeader(t.settings.behavior),
SwitchListTile(
secondary: const AppIcon(Symbols.auto_timer, fill: 1),
title: Text(t.trakt.scrobble),
subtitle: Text(t.trakt.scrobbleDescription),
value: _scrobbleEnabled,
onChanged: (value) async {
setState(() => _scrobbleEnabled = value);
await _settings!.setEnableTraktScrobble(value);
await TraktScrobbleService.instance.setEnabled(value);
},
),
SwitchListTile(
secondary: const AppIcon(Symbols.check_circle_rounded, fill: 1),
title: Text(t.trakt.watchedSync),
subtitle: Text(t.trakt.watchedSyncDescription),
value: _watchedSyncEnabled,
onChanged: (value) async {
setState(() => _watchedSyncEnabled = value);
await _settings!.setEnableTraktWatchedSync(value);
await TraktSyncService.instance.setEnabled(value);
},
),
ListTile(
leading: const AppIcon(Symbols.filter_list_rounded, fill: 1),
title: Text(t.trackers.libraryFilter.title),
subtitle: Text(TrackerLibraryFilterScreen.subtitleFor(_settings!, TrackerService.trakt)),
trailing: const AppIcon(Symbols.chevron_right_rounded, fill: 1),
onTap: () async {
await Navigator.of(context).push(
MaterialPageRoute<void>(
builder: (_) => const TrackerLibraryFilterScreen(service: TrackerService.trakt),
),
);
if (mounted) setState(() {});
},
),
const Divider(height: 32),
ListTile(
leading: AppIcon(Symbols.link_off_rounded, fill: 1, color: Theme.of(context).colorScheme.error),
title: Text(t.common.disconnect, style: TextStyle(color: Theme.of(context).colorScheme.error)),
onTap: () => _disconnect(account),
),
const SizedBox(height: 24),
]),
),
],
);
},
);
}
}