lemmur-app-android/lib/pages/user.dart

82 lines
2.4 KiB
Dart
Raw Normal View History

2020-09-08 21:08:50 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
2021-04-05 20:14:39 +02:00
import 'package:lemmy_api_client/v3.dart';
2020-09-08 21:08:50 +02:00
2021-02-24 20:52:18 +01:00
import '../hooks/logged_in_action.dart';
2021-03-18 19:24:29 +01:00
import '../util/share.dart';
2020-09-08 21:08:50 +02:00
import '../widgets/user_profile.dart';
2021-02-24 20:52:18 +01:00
import 'write_message.dart';
2020-09-08 21:08:50 +02:00
2020-09-30 19:05:00 +02:00
/// Page showing posts, comments, and general info about a user.
2020-09-08 21:08:50 +02:00
class UserPage extends HookWidget {
final int? userId;
final String instanceHost;
2021-04-05 20:14:39 +02:00
final Future<FullPersonView> _userDetails;
2020-09-08 21:08:50 +02:00
UserPage({required this.userId, required this.instanceHost})
: _userDetails = LemmyApiV3(instanceHost).run(GetPersonDetails(
2021-04-05 20:14:39 +02:00
personId: userId, savedOnly: true, sort: SortType.active));
2020-09-30 23:43:21 +02:00
UserPage.fromName({required this.instanceHost, required String username})
: userId = null,
2021-04-05 20:14:39 +02:00
_userDetails = LemmyApiV3(instanceHost).run(GetPersonDetails(
2021-01-24 20:01:55 +01:00
username: username, savedOnly: true, sort: SortType.active));
2020-09-08 21:08:50 +02:00
@override
Widget build(BuildContext context) {
final userDetailsSnap = useFuture(_userDetails);
2020-09-08 21:08:50 +02:00
2020-09-16 23:22:04 +02:00
final body = () {
2020-09-30 23:43:21 +02:00
if (userDetailsSnap.hasData) {
return UserProfile.fromFullPersonView(userDetailsSnap.data!);
2020-09-30 23:43:21 +02:00
} else if (userDetailsSnap.hasError) {
2021-01-03 19:43:39 +01:00
return const Center(child: Text('Could not find that user.'));
2020-09-08 22:56:45 +02:00
} else {
return const Center(child: CircularProgressIndicator.adaptive());
2020-09-08 22:56:45 +02:00
}
}();
2020-09-08 21:08:50 +02:00
return Scaffold(
extendBodyBehindAppBar: true,
appBar: AppBar(
actions: [
2020-09-30 23:43:21 +02:00
if (userDetailsSnap.hasData) ...[
SendMessageButton(userDetailsSnap.data!.personView.person),
2020-09-08 21:08:50 +02:00
IconButton(
2021-01-03 19:43:39 +01:00
icon: const Icon(Icons.share),
2021-03-20 15:50:49 +01:00
onPressed: () => share(
userDetailsSnap.data!.personView.person.actorId,
2021-03-18 19:24:29 +01:00
context: context,
),
2021-02-24 20:52:18 +01:00
),
2020-09-08 21:08:50 +02:00
]
],
),
2020-09-08 22:56:45 +02:00
body: body,
2020-09-08 21:08:50 +02:00
);
}
}
2021-02-24 20:52:18 +01:00
class SendMessageButton extends HookWidget {
2021-04-05 20:14:39 +02:00
final PersonSafe user;
2021-02-24 20:52:18 +01:00
const SendMessageButton(this.user);
@override
Widget build(BuildContext context) {
final loggedInAction = useLoggedInAction(user.instanceHost);
return IconButton(
icon: const Icon(Icons.email),
onPressed: loggedInAction(
(token) => Navigator.of(context).push(
WriteMessagePage.sendRoute(
instanceHost: user.instanceHost,
recipient: user,
),
),
),
2021-02-24 20:52:18 +01:00
);
}
}