mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
291 lines
10 KiB
Dart
291 lines
10 KiB
Dart
import 'package:PiliPlus/common/widgets/dialog/report_member.dart';
|
|
import 'package:PiliPlus/common/widgets/dynamic_sliver_appbar.dart';
|
|
import 'package:PiliPlus/common/widgets/loading_widget/loading_widget.dart';
|
|
import 'package:PiliPlus/common/widgets/scroll_physics.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/models/space/data.dart';
|
|
import 'package:PiliPlus/pages/member/controller.dart';
|
|
import 'package:PiliPlus/pages/member/widget/user_info_card.dart';
|
|
import 'package:PiliPlus/pages/member_contribute/view.dart';
|
|
import 'package:PiliPlus/pages/member_dynamics/view.dart';
|
|
import 'package:PiliPlus/pages/member_favorite/view.dart';
|
|
import 'package:PiliPlus/pages/member_home/view.dart';
|
|
import 'package:PiliPlus/pages/member_pgc/view.dart';
|
|
import 'package:PiliPlus/utils/extension.dart';
|
|
import 'package:PiliPlus/utils/utils.dart';
|
|
import 'package:extended_nested_scroll_view/extended_nested_scroll_view.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class MemberPage extends StatefulWidget {
|
|
const MemberPage({super.key});
|
|
|
|
@override
|
|
State<MemberPage> createState() => _MemberPageState();
|
|
}
|
|
|
|
class _MemberPageState extends State<MemberPage> {
|
|
late final int _mid;
|
|
late final String _heroTag;
|
|
late final MemberController _userController;
|
|
final _key = GlobalKey<ExtendedNestedScrollViewState>();
|
|
int _offset = 120;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_mid = int.tryParse(Get.parameters['mid']!) ?? -1;
|
|
_heroTag = Utils.makeHeroTag(_mid);
|
|
_userController = Get.put(
|
|
MemberController(mid: _mid),
|
|
tag: _heroTag,
|
|
);
|
|
_userController.scrollController.addListener(listener);
|
|
}
|
|
|
|
void listener() {
|
|
if (_userController.scrollController.hasClients) {
|
|
_userController.showUname.value =
|
|
_userController.scrollController.offset >= _offset;
|
|
}
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_userController.scrollController.removeListener(listener);
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
return Scaffold(
|
|
extendBody: true,
|
|
extendBodyBehindAppBar: true,
|
|
resizeToAvoidBottomInset: false,
|
|
appBar: AppBar(
|
|
forceMaterialTransparency: true,
|
|
title: IgnorePointer(
|
|
child: Obx(
|
|
() => _userController.showUname.value &&
|
|
_userController.username != null
|
|
? Text(_userController.username!)
|
|
: const SizedBox.shrink(),
|
|
),
|
|
),
|
|
actions: [
|
|
IconButton(
|
|
tooltip: '搜索',
|
|
onPressed: () => Get.toNamed(
|
|
'/memberSearch?mid=$_mid&uname=${_userController.username}'),
|
|
icon: const Icon(Icons.search_outlined),
|
|
),
|
|
PopupMenuButton(
|
|
icon: const Icon(Icons.more_vert),
|
|
itemBuilder: (BuildContext context) => <PopupMenuEntry>[
|
|
if (_userController.ownerMid != 0 &&
|
|
_userController.ownerMid != _mid) ...[
|
|
PopupMenuItem(
|
|
onTap: () => _userController.blockUser(context),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
const Icon(Icons.block, size: 19),
|
|
const SizedBox(width: 10),
|
|
Text(_userController.relation.value != 128
|
|
? '加入黑名单'
|
|
: '移除黑名单'),
|
|
],
|
|
),
|
|
),
|
|
if (_userController.isFollowed == 1)
|
|
PopupMenuItem(
|
|
onTap: _userController.onRemoveFan,
|
|
child: const Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(Icons.remove_circle_outline_outlined, size: 19),
|
|
SizedBox(width: 10),
|
|
Text('移除粉丝'),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
PopupMenuItem(
|
|
onTap: () => _userController.shareUser(),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
const Icon(Icons.share_outlined, size: 19),
|
|
const SizedBox(width: 10),
|
|
Text(_userController.ownerMid != _mid ? '分享UP主' : '分享我的主页'),
|
|
],
|
|
),
|
|
),
|
|
if (_userController.ownerMid != null &&
|
|
_userController.mid != _userController.ownerMid) ...[
|
|
const PopupMenuDivider(),
|
|
PopupMenuItem(
|
|
onTap: () {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
clipBehavior: Clip.hardEdge,
|
|
contentPadding: const EdgeInsets.symmetric(
|
|
horizontal: 20,
|
|
vertical: 16,
|
|
),
|
|
content: MemberReportPanel(
|
|
name: _userController.username,
|
|
mid: _mid,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(
|
|
Icons.error_outline,
|
|
size: 19,
|
|
color: theme.colorScheme.error,
|
|
),
|
|
const SizedBox(width: 10),
|
|
Text(
|
|
'举报',
|
|
style: TextStyle(color: theme.colorScheme.error),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
const SizedBox(width: 4),
|
|
],
|
|
),
|
|
body: Obx(
|
|
() => _userController.loadingState.value is Success
|
|
? LayoutBuilder(
|
|
builder: (context, constraints) {
|
|
return ExtendedNestedScrollView(
|
|
key: _key,
|
|
controller: _userController.scrollController,
|
|
onlyOneScrollInBody: true,
|
|
pinnedHeaderSliverHeightBuilder: () {
|
|
return kToolbarHeight +
|
|
MediaQuery.paddingOf(this.context).top.toInt();
|
|
},
|
|
headerSliverBuilder: (context, innerBoxIsScrolled) {
|
|
return [
|
|
_buildAppBar(
|
|
isV: constraints.maxHeight > constraints.maxWidth,
|
|
),
|
|
];
|
|
},
|
|
body: _userController.tab2?.isNotEmpty == true
|
|
? SafeArea(
|
|
top: false,
|
|
bottom: false,
|
|
child: Column(
|
|
children: [
|
|
if ((_userController.tab2?.length ?? 0) > 1)
|
|
_buildTab(theme),
|
|
Expanded(child: _buildBody),
|
|
],
|
|
),
|
|
)
|
|
: const Center(child: Text('EMPTY')),
|
|
);
|
|
},
|
|
)
|
|
: Center(
|
|
child: _buildUserInfo(_userController.loadingState.value),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildTab(ThemeData theme) => Material(
|
|
color: theme.colorScheme.surface,
|
|
child: TabBar(
|
|
controller: _userController.tabController,
|
|
tabs: _userController.tabs,
|
|
onTap: (value) {
|
|
if (_userController.tabController?.indexIsChanging == false) {
|
|
_key.currentState?.outerController.animToTop();
|
|
}
|
|
},
|
|
),
|
|
);
|
|
|
|
Widget get _buildBody => tabBarView(
|
|
controller: _userController.tabController,
|
|
children: _userController.tab2!.map((item) {
|
|
return switch (item.param!) {
|
|
'home' => MemberHome(heroTag: _heroTag),
|
|
'dynamic' => MemberDynamicsPage(mid: _mid),
|
|
'contribute' => Obx(
|
|
() => MemberContribute(
|
|
heroTag: _heroTag,
|
|
initialIndex: _userController.contributeInitialIndex.value,
|
|
mid: _mid,
|
|
),
|
|
),
|
|
'bangumi' => MemberBangumi(
|
|
heroTag: _heroTag,
|
|
mid: _mid,
|
|
),
|
|
'favorite' => MemberFavorite(
|
|
heroTag: _heroTag,
|
|
mid: _mid,
|
|
),
|
|
_ => Center(child: Text(item.title ?? '')),
|
|
};
|
|
}).toList(),
|
|
);
|
|
|
|
Widget _buildAppBar({bool isV = true}) {
|
|
return DynamicSliverAppBar(
|
|
pinned: true,
|
|
primary: false,
|
|
automaticallyImplyLeading: false,
|
|
toolbarHeight: kToolbarHeight + MediaQuery.paddingOf(context).top,
|
|
flexibleSpace: _buildUserInfo(_userController.loadingState.value, isV),
|
|
callback: (value) {
|
|
_offset = (value - 56 - MediaQuery.paddingOf(context).top).toInt();
|
|
listener();
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _buildUserInfo(LoadingState userState, [bool isV = true]) {
|
|
return switch (userState) {
|
|
Loading() => const CircularProgressIndicator(),
|
|
Success(:var response) => response is SpaceData
|
|
? Obx(
|
|
() => UserInfoCard(
|
|
isV: isV,
|
|
isOwner: _userController.mid == _userController.ownerMid,
|
|
relation: _userController.relation.value,
|
|
card: response.card!,
|
|
images: response.images!,
|
|
onFollow: () => _userController.onFollow(context),
|
|
live: _userController.live,
|
|
silence: _userController.silence,
|
|
endTime: _userController.endTime,
|
|
),
|
|
)
|
|
: GestureDetector(
|
|
onTap: _userController.onReload,
|
|
behavior: HitTestBehavior.opaque,
|
|
child: const SizedBox(height: 56, width: double.infinity),
|
|
),
|
|
Error(:var errMsg) => scrollErrorWidget(
|
|
errMsg: errMsg,
|
|
onReload: _userController.onReload,
|
|
),
|
|
};
|
|
}
|
|
}
|