2024-07-26 08:53:05 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2024-09-07 09:45:44 +00:00
|
|
|
import 'package:gap/gap.dart';
|
2024-07-26 08:53:05 +00:00
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart';
|
|
|
|
import 'package:solian/controllers/post_list_controller.dart';
|
|
|
|
import 'package:solian/exts.dart';
|
|
|
|
import 'package:solian/models/account.dart';
|
|
|
|
import 'package:solian/models/attachment.dart';
|
|
|
|
import 'package:solian/models/pagination.dart';
|
2024-07-26 10:23:51 +00:00
|
|
|
import 'package:solian/models/post.dart';
|
2024-09-08 04:32:21 +00:00
|
|
|
import 'package:solian/providers/account_status.dart';
|
2024-07-26 14:37:08 +00:00
|
|
|
import 'package:solian/providers/relation.dart';
|
2024-07-26 08:53:05 +00:00
|
|
|
import 'package:solian/services.dart';
|
|
|
|
import 'package:solian/theme.dart';
|
|
|
|
import 'package:solian/widgets/account/account_avatar.dart';
|
2024-09-08 04:32:21 +00:00
|
|
|
import 'package:solian/widgets/account/account_heading.dart';
|
2024-07-26 08:53:05 +00:00
|
|
|
import 'package:solian/widgets/app_bar_leading.dart';
|
2024-07-26 10:23:51 +00:00
|
|
|
import 'package:solian/widgets/attachments/attachment_list.dart';
|
|
|
|
import 'package:solian/widgets/posts/post_list.dart';
|
2024-07-31 17:21:27 +00:00
|
|
|
import 'package:solian/widgets/posts/post_warped_list.dart';
|
2024-07-26 08:53:05 +00:00
|
|
|
import 'package:solian/widgets/sized_container.dart';
|
|
|
|
|
|
|
|
class AccountProfilePage extends StatefulWidget {
|
|
|
|
final String name;
|
|
|
|
|
|
|
|
const AccountProfilePage({super.key, required this.name});
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<AccountProfilePage> createState() => _AccountProfilePageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _AccountProfilePageState extends State<AccountProfilePage> {
|
2024-07-26 14:37:08 +00:00
|
|
|
late final RelationshipProvider _relationshipProvider;
|
2024-07-26 08:53:05 +00:00
|
|
|
late final PostListController _postController;
|
|
|
|
final PagingController<int, Attachment> _albumPagingController =
|
|
|
|
PagingController(firstPageKey: 0);
|
|
|
|
|
|
|
|
bool _isBusy = true;
|
2024-07-26 14:37:08 +00:00
|
|
|
bool _isMakingFriend = false;
|
2024-07-26 09:35:54 +00:00
|
|
|
bool _showMature = false;
|
2024-07-26 08:53:05 +00:00
|
|
|
|
|
|
|
Account? _userinfo;
|
2024-07-26 10:23:51 +00:00
|
|
|
List<Post> _pinnedPosts = List.empty();
|
|
|
|
int _totalUpvote = 0, _totalDownvote = 0;
|
2024-07-26 08:53:05 +00:00
|
|
|
|
2024-08-03 06:00:52 +00:00
|
|
|
Future<void> _getUserinfo() async {
|
2024-07-26 08:53:05 +00:00
|
|
|
setState(() => _isBusy = true);
|
|
|
|
|
2024-07-26 10:23:51 +00:00
|
|
|
var client = ServiceFinder.configureClient('auth');
|
|
|
|
var resp = await client.get('/users/${widget.name}');
|
|
|
|
if (resp.statusCode != 200) {
|
|
|
|
context.showErrorDialog(resp.bodyString).then((_) {
|
|
|
|
Navigator.pop(context);
|
|
|
|
});
|
|
|
|
} else {
|
2024-07-26 08:53:05 +00:00
|
|
|
_userinfo = Account.fromJson(resp.body);
|
2024-07-26 10:23:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
client = ServiceFinder.configureClient('interactive');
|
|
|
|
resp = await client.get('/users/${widget.name}');
|
|
|
|
if (resp.statusCode != 200) {
|
|
|
|
context.showErrorDialog(resp.bodyString).then((_) {
|
|
|
|
Navigator.pop(context);
|
|
|
|
});
|
2024-07-26 08:53:05 +00:00
|
|
|
} else {
|
2024-07-26 10:23:51 +00:00
|
|
|
_totalUpvote = resp.body['total_upvote'];
|
|
|
|
_totalDownvote = resp.body['total_downvote'];
|
|
|
|
}
|
|
|
|
|
2024-07-26 14:37:08 +00:00
|
|
|
setState(() => _isBusy = false);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> getPinnedPosts() async {
|
|
|
|
final client = ServiceFinder.configureClient('interactive');
|
|
|
|
final resp = await client.get('/users/${widget.name}/pin');
|
2024-07-26 10:23:51 +00:00
|
|
|
if (resp.statusCode != 200) {
|
2024-07-26 08:53:05 +00:00
|
|
|
context.showErrorDialog(resp.bodyString).then((_) {
|
|
|
|
Navigator.pop(context);
|
|
|
|
});
|
2024-07-26 10:23:51 +00:00
|
|
|
} else {
|
2024-07-26 14:37:08 +00:00
|
|
|
setState(() {
|
|
|
|
_pinnedPosts =
|
|
|
|
resp.body.map((x) => Post.fromJson(x)).toList().cast<Post>();
|
|
|
|
});
|
2024-07-26 08:53:05 +00:00
|
|
|
}
|
2024-07-26 14:37:08 +00:00
|
|
|
}
|
2024-07-26 10:23:51 +00:00
|
|
|
|
2024-07-26 14:37:08 +00:00
|
|
|
int get _userSocialCreditPoints {
|
2024-09-07 17:48:01 +00:00
|
|
|
return _totalUpvote * 2 - _totalDownvote + _postController.postTotal.value;
|
2024-07-26 08:53:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2024-07-26 14:37:08 +00:00
|
|
|
_relationshipProvider = Get.find();
|
2024-07-26 08:53:05 +00:00
|
|
|
_postController = PostListController(author: widget.name);
|
|
|
|
_albumPagingController.addPageRequestListener((pageKey) async {
|
|
|
|
final client = ServiceFinder.configureClient('files');
|
2024-09-07 17:48:01 +00:00
|
|
|
final resp = await client.get(
|
|
|
|
'/attachments?take=10&offset=$pageKey&author=${widget.name}&original=true',
|
|
|
|
);
|
2024-07-26 08:53:05 +00:00
|
|
|
if (resp.statusCode == 200) {
|
|
|
|
final result = PaginationResult.fromJson(resp.body);
|
2024-07-26 09:35:54 +00:00
|
|
|
final out = result.data
|
|
|
|
?.map((e) => Attachment.fromJson(e))
|
|
|
|
.where((x) => x.mimetype.split('/').firstOrNull == 'image')
|
|
|
|
.toList();
|
|
|
|
if (out != null && result.data!.length >= 10) {
|
2024-07-26 08:53:05 +00:00
|
|
|
_albumPagingController.appendPage(out, pageKey + out.length);
|
|
|
|
} else if (out != null) {
|
|
|
|
_albumPagingController.appendLastPage(out);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_albumPagingController.error = resp.bodyString;
|
|
|
|
}
|
|
|
|
});
|
2024-07-26 14:37:08 +00:00
|
|
|
|
2024-08-03 06:00:52 +00:00
|
|
|
_getUserinfo();
|
2024-07-26 14:37:08 +00:00
|
|
|
getPinnedPosts();
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildStatisticsEntry(String label, String content) {
|
|
|
|
return Expanded(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
label,
|
|
|
|
style: Theme.of(context).textTheme.bodySmall,
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
content,
|
|
|
|
style: Theme.of(context).textTheme.bodyLarge,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
2024-07-26 08:53:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
if (_isBusy || _userinfo == null) {
|
|
|
|
return const Center(child: CircularProgressIndicator());
|
|
|
|
}
|
|
|
|
|
|
|
|
return Material(
|
|
|
|
color: Theme.of(context).colorScheme.surface,
|
|
|
|
child: DefaultTabController(
|
2024-09-08 04:32:21 +00:00
|
|
|
length: 3,
|
2024-07-26 08:53:05 +00:00
|
|
|
child: NestedScrollView(
|
|
|
|
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
|
|
|
|
return [
|
|
|
|
SliverAppBar(
|
|
|
|
centerTitle: false,
|
|
|
|
floating: true,
|
|
|
|
toolbarHeight: SolianTheme.toolbarHeight(context),
|
|
|
|
leadingWidth: 24,
|
2024-07-26 09:35:54 +00:00
|
|
|
automaticallyImplyLeading: false,
|
2024-07-26 08:53:05 +00:00
|
|
|
flexibleSpace: Row(
|
|
|
|
children: [
|
2024-09-07 09:45:44 +00:00
|
|
|
AppBarLeadingButton.adaptive(context) ?? const Gap(8),
|
|
|
|
const Gap(8),
|
2024-07-26 08:53:05 +00:00
|
|
|
if (_userinfo != null)
|
|
|
|
AccountAvatar(content: _userinfo!.avatar, radius: 16),
|
2024-09-07 09:45:44 +00:00
|
|
|
const Gap(12),
|
2024-07-26 08:53:05 +00:00
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
if (_userinfo != null)
|
|
|
|
Text(
|
|
|
|
_userinfo!.nick,
|
|
|
|
style: Theme.of(context).textTheme.bodyLarge,
|
|
|
|
),
|
|
|
|
if (_userinfo != null)
|
|
|
|
Text(
|
|
|
|
'@${_userinfo!.name}',
|
|
|
|
style: Theme.of(context).textTheme.bodySmall,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2024-07-26 14:37:08 +00:00
|
|
|
if (_userinfo != null &&
|
|
|
|
!_relationshipProvider.hasFriend(_userinfo!))
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(Icons.person_add),
|
|
|
|
onPressed: _isMakingFriend
|
|
|
|
? null
|
|
|
|
: () async {
|
|
|
|
setState(() => _isMakingFriend = true);
|
|
|
|
try {
|
2024-08-03 06:00:52 +00:00
|
|
|
await _relationshipProvider
|
|
|
|
.makeFriend(widget.name);
|
|
|
|
context.showSnackbar(
|
|
|
|
'accountFriendRequestSent'.tr,
|
|
|
|
);
|
2024-07-26 14:37:08 +00:00
|
|
|
} catch (e) {
|
|
|
|
context.showErrorDialog(e);
|
|
|
|
} finally {
|
|
|
|
setState(() => _isMakingFriend = false);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
else
|
|
|
|
const IconButton(
|
|
|
|
icon: Icon(Icons.handshake),
|
|
|
|
onPressed: null,
|
|
|
|
),
|
2024-07-26 08:53:05 +00:00
|
|
|
SizedBox(
|
|
|
|
width: SolianTheme.isLargeScreen(context) ? 8 : 16,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
bottom: TabBar(
|
|
|
|
tabs: [
|
2024-09-08 04:32:21 +00:00
|
|
|
Tab(text: 'profilePage'.tr),
|
2024-07-26 08:53:05 +00:00
|
|
|
Tab(text: 'profilePosts'.tr),
|
|
|
|
Tab(text: 'profileAlbum'.tr),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
];
|
|
|
|
},
|
|
|
|
body: TabBarView(
|
|
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
|
|
children: [
|
2024-09-08 04:32:21 +00:00
|
|
|
Column(
|
|
|
|
children: [
|
|
|
|
const Gap(16),
|
|
|
|
AccountHeadingWidget(
|
|
|
|
name: _userinfo!.name,
|
|
|
|
nick: _userinfo!.nick,
|
|
|
|
desc: _userinfo!.description,
|
|
|
|
badges: _userinfo!.badges,
|
|
|
|
banner: _userinfo!.banner,
|
|
|
|
avatar: _userinfo!.avatar,
|
|
|
|
status: Get.find<StatusProvider>()
|
|
|
|
.getSomeoneStatus(_userinfo!.name),
|
|
|
|
detail: _userinfo,
|
|
|
|
profile: _userinfo!.profile,
|
|
|
|
extraWidgets: const [],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2024-07-26 08:53:05 +00:00
|
|
|
RefreshIndicator(
|
2024-07-26 14:37:08 +00:00
|
|
|
onRefresh: () => Future.wait([
|
|
|
|
_postController.reloadAllOver(),
|
|
|
|
getPinnedPosts(),
|
|
|
|
]),
|
2024-07-26 08:53:05 +00:00
|
|
|
child: CustomScrollView(slivers: [
|
2024-07-26 10:23:51 +00:00
|
|
|
SliverToBoxAdapter(
|
2024-07-26 14:37:08 +00:00
|
|
|
child: Column(
|
2024-07-26 10:23:51 +00:00
|
|
|
children: [
|
2024-07-26 14:37:08 +00:00
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
2024-07-26 10:23:51 +00:00
|
|
|
children: [
|
2024-07-26 14:37:08 +00:00
|
|
|
_buildStatisticsEntry(
|
|
|
|
'totalSocialCreditPoints'.tr,
|
|
|
|
_userinfo != null
|
|
|
|
? _userSocialCreditPoints.toString()
|
|
|
|
: 0.toString(),
|
2024-07-26 10:23:51 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2024-09-07 09:45:44 +00:00
|
|
|
const Gap(16),
|
2024-07-26 14:37:08 +00:00
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
2024-07-26 10:23:51 +00:00
|
|
|
children: [
|
2024-07-26 14:37:08 +00:00
|
|
|
Obx(
|
|
|
|
() => _buildStatisticsEntry(
|
|
|
|
'totalPostCount'.tr,
|
|
|
|
_postController.postTotal.value.toString(),
|
|
|
|
),
|
2024-07-26 10:23:51 +00:00
|
|
|
),
|
2024-07-26 14:37:08 +00:00
|
|
|
_buildStatisticsEntry(
|
|
|
|
'totalUpvote'.tr,
|
|
|
|
_totalUpvote.toString(),
|
|
|
|
),
|
|
|
|
_buildStatisticsEntry(
|
|
|
|
'totalDownvote'.tr,
|
2024-07-26 10:23:51 +00:00
|
|
|
_totalDownvote.toString(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
).paddingOnly(top: 16, bottom: 12),
|
|
|
|
),
|
|
|
|
const SliverToBoxAdapter(
|
|
|
|
child: Divider(thickness: 0.3, height: 0.3),
|
|
|
|
),
|
|
|
|
SliverList.separated(
|
|
|
|
itemCount: _pinnedPosts.length,
|
|
|
|
itemBuilder: (context, idx) {
|
|
|
|
final element = _pinnedPosts[idx];
|
|
|
|
return Material(
|
|
|
|
color:
|
|
|
|
Theme.of(context).colorScheme.surfaceContainerLow,
|
|
|
|
child: PostListEntryWidget(
|
2024-08-03 06:00:52 +00:00
|
|
|
backgroundColor:
|
|
|
|
Theme.of(context).colorScheme.surfaceContainerLow,
|
2024-07-26 10:23:51 +00:00
|
|
|
item: element,
|
|
|
|
isClickable: true,
|
|
|
|
isNestedClickable: true,
|
|
|
|
isShowEmbed: true,
|
|
|
|
onUpdate: () {
|
|
|
|
_postController.reloadAllOver();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
separatorBuilder: (context, idx) =>
|
|
|
|
const Divider(thickness: 0.3, height: 0.3),
|
|
|
|
),
|
2024-07-26 08:53:05 +00:00
|
|
|
if (_userinfo == null)
|
|
|
|
const SliverFillRemaining(
|
|
|
|
child: Center(child: CircularProgressIndicator()),
|
|
|
|
),
|
|
|
|
if (_userinfo != null)
|
2024-07-31 17:21:27 +00:00
|
|
|
PostWarpedListWidget(
|
2024-07-26 10:23:51 +00:00
|
|
|
isPinned: false,
|
2024-07-26 08:53:05 +00:00
|
|
|
controller: _postController.pagingController,
|
2024-08-04 10:13:59 +00:00
|
|
|
onUpdate: () => _postController.reloadAllOver(),
|
2024-07-26 08:53:05 +00:00
|
|
|
),
|
|
|
|
]),
|
|
|
|
),
|
|
|
|
CenteredContainer(
|
|
|
|
child: RefreshIndicator(
|
|
|
|
onRefresh: () =>
|
|
|
|
Future.sync(() => _albumPagingController.refresh()),
|
|
|
|
child: PagedGridView<int, Attachment>(
|
2024-07-26 09:35:54 +00:00
|
|
|
padding: EdgeInsets.zero,
|
2024-07-26 08:53:05 +00:00
|
|
|
pagingController: _albumPagingController,
|
|
|
|
gridDelegate:
|
|
|
|
const SliverGridDelegateWithFixedCrossAxisCount(
|
|
|
|
crossAxisCount: 3,
|
|
|
|
mainAxisSpacing: 8.0,
|
|
|
|
crossAxisSpacing: 8.0,
|
|
|
|
),
|
|
|
|
builderDelegate: PagedChildBuilderDelegate<Attachment>(
|
|
|
|
itemBuilder: (BuildContext context, item, int index) {
|
|
|
|
const radius = BorderRadius.all(Radius.circular(8));
|
|
|
|
return Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
border: Border.all(
|
|
|
|
color: Theme.of(context).dividerColor,
|
|
|
|
width: 0.3,
|
|
|
|
),
|
|
|
|
borderRadius: radius,
|
|
|
|
),
|
|
|
|
child: ClipRRect(
|
|
|
|
borderRadius: radius,
|
2024-07-26 09:35:54 +00:00
|
|
|
child: AttachmentListEntry(
|
2024-07-26 08:53:05 +00:00
|
|
|
item: item,
|
2024-07-27 12:27:29 +00:00
|
|
|
isDense: true,
|
2024-07-26 08:53:05 +00:00
|
|
|
parentId: 'album',
|
2024-07-26 09:35:54 +00:00
|
|
|
showMature: _showMature,
|
|
|
|
onReveal: (value) {
|
|
|
|
setState(() => _showMature = value);
|
|
|
|
},
|
2024-07-26 08:53:05 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
2024-07-26 09:35:54 +00:00
|
|
|
).paddingAll(16),
|
2024-07-26 08:53:05 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|