1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/screens/user_page_sections/user_posts_section.dart

51 lines
1.4 KiB
Dart
Raw Normal View History

2021-03-17 16:04:45 +00:00
import 'package:comunic/enums/post_target.dart';
import 'package:comunic/helpers/posts_helper.dart';
import 'package:comunic/models/advanced_user_info.dart';
import 'package:comunic/ui/widgets/post_create_form_widget.dart';
import 'package:comunic/ui/widgets/posts_list_widget.dart';
import 'package:flutter/material.dart';
/// User posts
///
/// @author Pierre Hubert
class UserPostsSection extends StatefulWidget {
final AdvancedUserInfo user;
const UserPostsSection({
Key key,
@required this.user,
}) : assert(user != null),
super(key: key);
@override
_UserPostsSectionState createState() => _UserPostsSectionState();
}
class _UserPostsSectionState extends State<UserPostsSection> {
int get _userID => widget.user.id;
final _postsKey = GlobalKey<PostsListWidgetState>();
@override
Widget build(BuildContext context) => PostsListWidget(
key: _postsKey,
2021-03-17 16:04:45 +00:00
topWidgets: [
widget.user.canPostTexts
? PostCreateFormWidget(
postTarget: PostTarget.USER_PAGE,
targetID: _userID,
onCreated: _postCreated,
)
: Container()
],
getPostsList: () => PostsHelper().getUserPosts(_userID),
getOlder: (from) => PostsHelper().getUserPosts(_userID, from: from),
showPostsTarget: false,
);
void _postCreated() {
_postsKey.currentState.loadPostsList(getOlder: false);
}
}