fix: tv ux improvements

close #348
This commit is contained in:
edde746
2026-01-31 06:22:04 +01:00
parent b20d35d690
commit b27f92f32d
7 changed files with 279 additions and 67 deletions
+62 -57
View File
@@ -6,7 +6,7 @@ import '../../providers/user_profile_provider.dart';
import '../../utils/provider_extensions.dart';
import '../../utils/snackbar_helper.dart';
import 'profile_list_tile.dart';
import '../../widgets/desktop_app_bar.dart';
import '../../widgets/focused_scroll_scaffold.dart';
import '../libraries/state_messages.dart';
import '../../i18n/strings.g.dart';
@@ -17,83 +17,88 @@ class ProfileSwitchScreen extends StatelessWidget {
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Scaffold(
body: CustomScrollView(
slivers: [
CustomAppBar(title: Text(t.screens.switchProfile)),
SliverFillRemaining(
child: Consumer<UserProfileProvider>(
builder: (context, userProvider, child) {
final users = userProvider.home?.users ?? [];
return Consumer<UserProfileProvider>(
builder: (context, userProvider, child) {
final users = userProvider.home?.users ?? [];
if (userProvider.isLoading) {
return const Center(child: CircularProgressIndicator());
}
if (userProvider.error != null) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
userProvider.error!,
style: TextStyle(color: theme.colorScheme.error),
textAlign: TextAlign.center,
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () {
userProvider.refreshCurrentUser();
},
child: Text(t.common.retry),
),
],
),
);
}
if (users.isEmpty) {
return const EmptyStateWidget(
message: 'No profiles available',
subtitle: 'Contact your Plex administrator to add profiles',
icon: Symbols.person_off_rounded,
);
}
return ListView.builder(
itemCount: users.length,
padding: const EdgeInsets.all(16),
itemBuilder: (context, index) {
return FocusedScrollScaffold(
title: Text(t.screens.switchProfile),
slivers: [
if (userProvider.isLoading)
const SliverFillRemaining(child: Center(child: CircularProgressIndicator()))
else if (userProvider.error != null)
SliverFillRemaining(
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
userProvider.error!,
style: TextStyle(color: theme.colorScheme.error),
textAlign: TextAlign.center,
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () {
userProvider.refreshCurrentUser();
},
child: Text(t.common.retry),
),
],
),
),
)
else if (users.isEmpty)
const SliverFillRemaining(
child: EmptyStateWidget(
message: 'No profiles available',
subtitle: 'Contact your Plex administrator to add profiles',
icon: Symbols.person_off_rounded,
),
)
else
SliverList(
delegate: SliverChildBuilderDelegate(
(context, index) {
final user = users[index];
final isCurrentUser = user.uuid == userProvider.currentUser?.uuid;
final isFirstSelectable = !isCurrentUser &&
!users.take(index).any((u) => u.uuid != userProvider.currentUser?.uuid);
return Padding(
padding: const EdgeInsets.only(bottom: 8),
padding: EdgeInsets.only(
left: 16,
right: 16,
top: index == 0 ? 16 : 0,
bottom: 8,
),
child: Card(
child: ProfileListTile(
user: user,
isCurrentUser: isCurrentUser,
autofocus: isFirstSelectable,
onTap: () => _switchToUser(context, user),
),
),
);
},
);
},
),
),
],
),
childCount: users.length,
),
),
],
);
},
);
}
void _switchToUser(BuildContext context, PlexHomeUser user) async {
final userProvider = context.userProfile;
final navigator = Navigator.of(context);
final success = await userProvider.switchToUser(user, context);
if (success && context.mounted) {
Navigator.of(context).pop();
} else if (!success && context.mounted) {
if (success) {
navigator.pop();
} else if (context.mounted) {
showErrorSnackBar(context, t.errors.failedToSwitchProfile(displayName: user.displayName));
}
}