2019-07-05 09:40:43 +00:00
|
|
|
import 'package:comunic/enums/post_target.dart';
|
2019-06-10 12:47:27 +00:00
|
|
|
import 'package:comunic/helpers/posts_helper.dart';
|
2019-06-10 12:24:34 +00:00
|
|
|
import 'package:comunic/helpers/users_helper.dart';
|
|
|
|
import 'package:comunic/models/advanced_user_info.dart';
|
2019-06-15 06:16:47 +00:00
|
|
|
import 'package:comunic/ui/routes/other_friends_lists_route.dart';
|
2019-06-15 14:01:58 +00:00
|
|
|
import 'package:comunic/ui/routes/user_access_denied_route.dart';
|
2019-06-10 12:24:34 +00:00
|
|
|
import 'package:comunic/ui/widgets/network_image_widget.dart';
|
2019-07-05 09:40:43 +00:00
|
|
|
import 'package:comunic/ui/widgets/post_create_form_widget.dart';
|
2019-06-10 12:47:27 +00:00
|
|
|
import 'package:comunic/ui/widgets/posts_list_widget.dart';
|
2020-04-16 07:17:10 +00:00
|
|
|
import 'package:comunic/ui/widgets/scroll_watcher.dart';
|
2019-06-15 06:16:47 +00:00
|
|
|
import 'package:comunic/utils/conversations_utils.dart';
|
2019-06-10 12:24:34 +00:00
|
|
|
import 'package:comunic/utils/intl_utils.dart';
|
|
|
|
import 'package:comunic/utils/ui_utils.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
/// User page route
|
|
|
|
///
|
|
|
|
/// @author Pierre HUBERT
|
|
|
|
|
|
|
|
enum _PageStatus { LOADING, ERROR, READY }
|
|
|
|
|
2019-06-15 06:16:47 +00:00
|
|
|
enum _MenuOptions { FRIENDS_LIST }
|
|
|
|
|
2019-06-10 12:24:34 +00:00
|
|
|
class UserPageRoute extends StatefulWidget {
|
|
|
|
final int userID;
|
|
|
|
|
|
|
|
const UserPageRoute({Key key, @required this.userID})
|
|
|
|
: assert(userID != null),
|
|
|
|
super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
_UserPageRouteState createState() => _UserPageRouteState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _UserPageRouteState extends State<UserPageRoute> {
|
|
|
|
// Helpers
|
|
|
|
final usersHelper = UsersHelper();
|
2019-06-10 12:47:27 +00:00
|
|
|
final PostsHelper _postsHelper = PostsHelper();
|
2019-06-10 12:24:34 +00:00
|
|
|
|
|
|
|
// Objects members
|
|
|
|
final double _appBarHeight = 256.0;
|
|
|
|
_PageStatus _status = _PageStatus.LOADING;
|
|
|
|
AdvancedUserInfo _userInfo;
|
2019-07-05 09:40:43 +00:00
|
|
|
GlobalKey<RefreshIndicatorState> _refreshIndicatorKey =
|
|
|
|
GlobalKey<RefreshIndicatorState>();
|
2019-06-10 12:24:34 +00:00
|
|
|
|
2020-04-16 07:17:10 +00:00
|
|
|
// Scroll detection (to load more user posts automatically)
|
|
|
|
final _postListKey = GlobalKey<PostsListWidgetState>();
|
|
|
|
ScrollWatcher _scrollWatcher;
|
|
|
|
|
2019-06-10 12:24:34 +00:00
|
|
|
_setStatus(_PageStatus s) => setState(() => _status = s);
|
|
|
|
|
2020-04-16 07:17:10 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_scrollWatcher = ScrollWatcher(
|
|
|
|
onReachBottom: () => _postListKey.currentState.reachedPostsBottom());
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2019-06-10 12:24:34 +00:00
|
|
|
@override
|
|
|
|
void didChangeDependencies() {
|
|
|
|
super.didChangeDependencies();
|
|
|
|
_getUserInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _getUserInfo() async {
|
|
|
|
_setStatus(_PageStatus.LOADING);
|
|
|
|
|
|
|
|
try {
|
|
|
|
final user = await usersHelper.getAdvancedInfo(widget.userID);
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
_userInfo = user;
|
|
|
|
});
|
|
|
|
|
|
|
|
_setStatus(_PageStatus.READY);
|
2019-06-15 14:01:58 +00:00
|
|
|
} on GetUserAdvancedUserError catch (e) {
|
2019-06-10 12:24:34 +00:00
|
|
|
_setStatus(_PageStatus.ERROR);
|
2019-06-15 14:01:58 +00:00
|
|
|
|
|
|
|
if (e.cause == GetUserAdvancedInformationErrorCause.NOT_AUTHORIZED)
|
|
|
|
Navigator.of(context).pushReplacement(
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (c) => UserAccessDeniedRoute(
|
2020-04-16 07:17:10 +00:00
|
|
|
userID: widget.userID,
|
|
|
|
),
|
2019-06-15 14:01:58 +00:00
|
|
|
),
|
|
|
|
);
|
2019-06-10 12:24:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
if (_status == _PageStatus.LOADING) return buildLoadingPage();
|
|
|
|
|
|
|
|
if (_status == _PageStatus.ERROR) return _buildError();
|
|
|
|
|
|
|
|
return Scaffold(
|
2019-06-15 14:06:20 +00:00
|
|
|
body: RefreshIndicator(
|
2019-07-05 09:40:43 +00:00
|
|
|
key: _refreshIndicatorKey,
|
2019-06-15 14:06:20 +00:00
|
|
|
child: CustomScrollView(
|
|
|
|
slivers: <Widget>[_buildHeader(), _buildBody()],
|
2019-07-05 09:40:43 +00:00
|
|
|
physics: AlwaysScrollableScrollPhysics(),
|
2020-04-16 07:17:10 +00:00
|
|
|
controller: _scrollWatcher,
|
2019-06-15 14:06:20 +00:00
|
|
|
),
|
|
|
|
onRefresh: _getUserInfo,
|
2019-06-10 12:24:34 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Error card
|
|
|
|
Widget _buildError() {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: Text(tr("Error")),
|
|
|
|
),
|
|
|
|
body: Center(
|
|
|
|
child:
|
|
|
|
buildErrorCard(tr("Could not get user information!"), actions: [
|
|
|
|
FlatButton(
|
|
|
|
onPressed: _getUserInfo,
|
|
|
|
child: Text(
|
|
|
|
tr("Retry").toUpperCase(),
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
])),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildHeader() {
|
|
|
|
return SliverAppBar(
|
|
|
|
expandedHeight: _appBarHeight,
|
|
|
|
floating: false,
|
|
|
|
pinned: true,
|
|
|
|
snap: false,
|
|
|
|
flexibleSpace: FlexibleSpaceBar(
|
|
|
|
title: Text(_userInfo.displayName),
|
|
|
|
background: Stack(
|
|
|
|
fit: StackFit.expand,
|
|
|
|
children: <Widget>[
|
|
|
|
NetworkImageWidget(
|
|
|
|
url: _userInfo.accountImageURL,
|
|
|
|
height: _appBarHeight,
|
2019-06-15 06:16:47 +00:00
|
|
|
roundedEdges: false,
|
2019-06-10 12:24:34 +00:00
|
|
|
),
|
|
|
|
// This gradient ensures that the toolbar icons are distinct
|
|
|
|
// against the background image.
|
|
|
|
const DecoratedBox(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
gradient: LinearGradient(
|
|
|
|
begin: Alignment(0.0, -1.0),
|
|
|
|
end: Alignment(0.0, -0.4),
|
|
|
|
colors: <Color>[Color(0x60000000), Color(0x00000000)],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
const DecoratedBox(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
gradient: LinearGradient(
|
|
|
|
begin: Alignment(0.0, 0.4),
|
|
|
|
end: Alignment(0.0, 0.9),
|
|
|
|
colors: <Color>[Color(0x00000000), Color(0x60000000)],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2019-06-15 06:16:47 +00:00
|
|
|
actions: <Widget>[
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(
|
|
|
|
Icons.chat,
|
|
|
|
),
|
|
|
|
onPressed: () {
|
|
|
|
openPrivateConversation(context, widget.userID);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
PopupMenuButton<_MenuOptions>(
|
|
|
|
itemBuilder: (c) => [
|
2020-04-16 07:17:10 +00:00
|
|
|
PopupMenuItem(
|
|
|
|
child: Text(tr("Friends")),
|
|
|
|
enabled: _userInfo != null,
|
|
|
|
value: _MenuOptions.FRIENDS_LIST,
|
|
|
|
)
|
|
|
|
],
|
2019-06-15 06:16:47 +00:00
|
|
|
onSelected: _selectedMenuOption,
|
|
|
|
),
|
|
|
|
],
|
2019-06-10 12:24:34 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildBody() {
|
|
|
|
return SliverList(
|
2019-06-10 12:47:27 +00:00
|
|
|
delegate: SliverChildListDelegate(
|
|
|
|
<Widget>[
|
2019-07-05 09:40:43 +00:00
|
|
|
// Posts create form
|
|
|
|
_userInfo.canPostTexts
|
|
|
|
? PostCreateFormWidget(
|
|
|
|
postTarget: PostTarget.USER_PAGE,
|
|
|
|
targetID: _userInfo.id,
|
|
|
|
onCreated: _postCreated,
|
|
|
|
)
|
|
|
|
: Container(),
|
|
|
|
|
|
|
|
// Posts list
|
2019-06-10 12:47:27 +00:00
|
|
|
PostsListWidget(
|
2020-04-16 07:17:10 +00:00
|
|
|
key: _postListKey,
|
2019-06-10 12:47:27 +00:00
|
|
|
getPostsList: () => _postsHelper.getUserPosts(widget.userID),
|
2020-04-16 07:17:10 +00:00
|
|
|
getOlder: (from) =>
|
|
|
|
_postsHelper.getUserPosts(widget.userID, from: from),
|
2019-06-10 12:47:27 +00:00
|
|
|
showPostsTarget: false,
|
|
|
|
buildListView: false,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2019-06-10 12:24:34 +00:00
|
|
|
);
|
|
|
|
}
|
2019-06-15 06:16:47 +00:00
|
|
|
|
|
|
|
/// Method called each time a menu option is selected
|
|
|
|
void _selectedMenuOption(_MenuOptions value) {
|
|
|
|
switch (value) {
|
|
|
|
case _MenuOptions.FRIENDS_LIST:
|
|
|
|
Navigator.of(context).push(
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (c) => OtherUserFriendsListRoute(
|
2020-04-16 07:17:10 +00:00
|
|
|
user: _userInfo,
|
|
|
|
),
|
2019-06-15 06:16:47 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-07-05 09:40:43 +00:00
|
|
|
|
|
|
|
/// Method called once a post has been created
|
|
|
|
void _postCreated() {
|
|
|
|
_refreshIndicatorKey.currentState.show();
|
|
|
|
}
|
2019-06-10 12:24:34 +00:00
|
|
|
}
|