2020-09-08 21:08:50 +02:00
|
|
|
import 'package:esys_flutter_share/esys_flutter_share.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
import 'package:lemmy_api_client/lemmy_api_client.dart';
|
|
|
|
|
|
|
|
import '../widgets/user_profile.dart';
|
|
|
|
|
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 instanceUrl;
|
2020-09-30 23:43:21 +02:00
|
|
|
final Future<UserDetails> _userDetails;
|
2020-09-08 21:08:50 +02:00
|
|
|
|
|
|
|
UserPage({@required this.userId, @required this.instanceUrl})
|
|
|
|
: assert(userId != null),
|
|
|
|
assert(instanceUrl != null),
|
2020-09-30 23:43:21 +02:00
|
|
|
_userDetails = LemmyApi(instanceUrl).v1.getUserDetails(
|
|
|
|
userId: userId, savedOnly: true, sort: SortType.active);
|
|
|
|
|
2020-09-12 17:03:00 +02:00
|
|
|
UserPage.fromName({@required this.instanceUrl, @required String username})
|
2020-09-12 00:26:54 +02:00
|
|
|
: assert(instanceUrl != null),
|
|
|
|
assert(username != null),
|
|
|
|
userId = null,
|
2020-09-30 23:43:21 +02:00
|
|
|
_userDetails = LemmyApi(instanceUrl).v1.getUserDetails(
|
|
|
|
username: username, savedOnly: true, sort: SortType.active);
|
2020-09-08 21:08:50 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-09-30 23:43:21 +02:00
|
|
|
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.fromUserDetails(userDetailsSnap.data);
|
|
|
|
} else if (userDetailsSnap.hasError) {
|
2020-09-08 22:56:45 +02:00
|
|
|
return Center(child: Text('Could not find that user.'));
|
|
|
|
} else {
|
|
|
|
return Center(child: CircularProgressIndicator());
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
2020-09-08 21:08:50 +02:00
|
|
|
return Scaffold(
|
|
|
|
extendBodyBehindAppBar: true,
|
|
|
|
appBar: AppBar(
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
shadowColor: Colors.transparent,
|
|
|
|
actions: [
|
2020-09-30 23:43:21 +02:00
|
|
|
if (userDetailsSnap.hasData) ...[
|
2020-09-08 21:08:50 +02:00
|
|
|
IconButton(
|
2020-09-08 21:17:17 +02:00
|
|
|
icon: Icon(Icons.email),
|
2020-09-08 21:08:50 +02:00
|
|
|
onPressed: () {}, // TODO: go to messaging page
|
|
|
|
),
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.share),
|
2020-09-30 23:43:21 +02:00
|
|
|
onPressed: () => Share.text('Share user',
|
|
|
|
userDetailsSnap.data.user.actorId, 'text/plain'),
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|