mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
211 lines
6.5 KiB
Dart
211 lines
6.5 KiB
Dart
import 'package:PiliPlus/common/widgets/scroll_physics.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/models/common/dynamic/dynamics_type.dart';
|
|
import 'package:PiliPlus/models/common/dynamic/up_panel_position.dart';
|
|
import 'package:PiliPlus/models/dynamics/up.dart';
|
|
import 'package:PiliPlus/pages/common/common_page.dart';
|
|
import 'package:PiliPlus/pages/dynamics/controller.dart';
|
|
import 'package:PiliPlus/pages/dynamics/widgets/up_panel.dart';
|
|
import 'package:PiliPlus/pages/dynamics_create/view.dart';
|
|
import 'package:PiliPlus/pages/dynamics_tab/view.dart';
|
|
import 'package:PiliPlus/pages/main/controller.dart';
|
|
import 'package:PiliPlus/utils/extension/get_ext.dart';
|
|
import 'package:flutter/material.dart' hide DraggableScrollableSheet;
|
|
import 'package:get/get.dart';
|
|
|
|
class DynamicsPage extends StatefulWidget {
|
|
const DynamicsPage({super.key});
|
|
|
|
@override
|
|
State<DynamicsPage> createState() => _DynamicsPageState();
|
|
}
|
|
|
|
class _DynamicsPageState extends CommonPageState<DynamicsPage>
|
|
with AutomaticKeepAliveClientMixin {
|
|
final _dynamicsController = Get.putOrFind(DynamicsController.new);
|
|
UpPanelPosition get upPanelPosition => _dynamicsController.upPanelPosition;
|
|
late final MainController _mainController = Get.find<MainController>();
|
|
|
|
@override
|
|
bool get wantKeepAlive => true;
|
|
|
|
Widget _createDynamicBtn(ThemeData theme, {bool isRight = true}) => Center(
|
|
child: Container(
|
|
width: 34,
|
|
height: 34,
|
|
margin: EdgeInsets.only(left: !isRight ? 16 : 0, right: isRight ? 16 : 0),
|
|
child: IconButton(
|
|
tooltip: '发布动态',
|
|
style: ButtonStyle(
|
|
padding: const WidgetStatePropertyAll(EdgeInsets.zero),
|
|
backgroundColor: WidgetStatePropertyAll(
|
|
theme.colorScheme.secondaryContainer,
|
|
),
|
|
),
|
|
onPressed: () {
|
|
if (_dynamicsController.accountService.isLogin.value) {
|
|
CreateDynPanel.onCreateDyn(context);
|
|
}
|
|
},
|
|
icon: Icon(
|
|
Icons.add,
|
|
size: 18,
|
|
color: theme.colorScheme.onSecondaryContainer,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
|
|
Widget upPanelPart(ThemeData theme) {
|
|
final isTop = upPanelPosition == .top;
|
|
final needBg = upPanelPosition.index > 2;
|
|
return Material(
|
|
type: needBg ? .canvas : .transparency,
|
|
color: needBg ? theme.colorScheme.surface : null,
|
|
child: SizedBox(
|
|
width: isTop ? null : 64,
|
|
height: isTop ? 76 : null,
|
|
child: NotificationListener<ScrollEndNotification>(
|
|
onNotification: (notification) {
|
|
final metrics = notification.metrics;
|
|
if (metrics.pixels >= metrics.maxScrollExtent - 300) {
|
|
_dynamicsController.onLoadMoreUp();
|
|
}
|
|
return false;
|
|
},
|
|
child: Obx(() => _buildUpPanel(_dynamicsController.upState.value)),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildUpPanel(LoadingState<FollowUpModel> upState) {
|
|
return switch (upState) {
|
|
Loading() => const SizedBox.shrink(),
|
|
Success<FollowUpModel>() => UpPanel(
|
|
dynamicsController: _dynamicsController,
|
|
),
|
|
Error() => Center(
|
|
child: IconButton(
|
|
icon: const Icon(Icons.refresh),
|
|
onPressed: () => _dynamicsController
|
|
..upState.value = LoadingState<FollowUpModel>.loading()
|
|
..queryFollowUp(),
|
|
),
|
|
),
|
|
};
|
|
}
|
|
|
|
bool get checkPage =>
|
|
_mainController.navigationBars[0] != .dynamics &&
|
|
_mainController.selectedIndex.value == 0;
|
|
|
|
@override
|
|
bool onNotificationType1(UserScrollNotification notification) {
|
|
if (checkPage) {
|
|
return false;
|
|
}
|
|
return super.onNotificationType1(notification);
|
|
}
|
|
|
|
@override
|
|
bool onNotificationType2(ScrollNotification notification) {
|
|
if (checkPage) {
|
|
return false;
|
|
}
|
|
return super.onNotificationType2(notification);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
super.build(context);
|
|
final theme = Theme.of(context);
|
|
|
|
Widget? drawer;
|
|
Widget? endDrawer;
|
|
|
|
Widget? leading;
|
|
List<Widget>? actions;
|
|
|
|
Widget child = tabBarView(
|
|
controller: _dynamicsController.tabController,
|
|
children: DynamicsTabType.values
|
|
.map((e) => DynamicsTabPage(dynamicsType: e))
|
|
.toList(),
|
|
);
|
|
|
|
switch (upPanelPosition) {
|
|
case UpPanelPosition.top:
|
|
child = Column(
|
|
children: [
|
|
upPanelPart(theme),
|
|
Expanded(child: child),
|
|
],
|
|
);
|
|
actions = [_createDynamicBtn(theme)];
|
|
case UpPanelPosition.leftFixed:
|
|
child = Row(
|
|
children: [
|
|
upPanelPart(theme),
|
|
Expanded(child: child),
|
|
],
|
|
);
|
|
actions = [_createDynamicBtn(theme)];
|
|
case UpPanelPosition.rightFixed:
|
|
child = Row(
|
|
children: [
|
|
Expanded(child: child),
|
|
upPanelPart(theme),
|
|
],
|
|
);
|
|
actions = [_createDynamicBtn(theme)];
|
|
case UpPanelPosition.leftDrawer:
|
|
drawer = upPanelPart(theme);
|
|
actions = [_createDynamicBtn(theme)];
|
|
case UpPanelPosition.rightDrawer:
|
|
endDrawer = upPanelPart(theme);
|
|
leading = _createDynamicBtn(theme, isRight: false);
|
|
}
|
|
|
|
return Scaffold(
|
|
resizeToAvoidBottomInset: false,
|
|
backgroundColor: Colors.transparent,
|
|
appBar: AppBar(
|
|
primary: false,
|
|
leading: leading,
|
|
leadingWidth: 50,
|
|
toolbarHeight: 50,
|
|
backgroundColor: Colors.transparent,
|
|
title: SizedBox(
|
|
height: 50,
|
|
child: TabBar(
|
|
dividerHeight: 0,
|
|
isScrollable: true,
|
|
tabAlignment: .center,
|
|
dividerColor: Colors.transparent,
|
|
labelColor: theme.colorScheme.primary,
|
|
indicatorColor: theme.colorScheme.primary,
|
|
controller: _dynamicsController.tabController,
|
|
unselectedLabelColor: theme.colorScheme.onSurface,
|
|
labelStyle:
|
|
TabBarTheme.of(context).labelStyle?.copyWith(fontSize: 13) ??
|
|
const TextStyle(fontSize: 13),
|
|
tabs: DynamicsTabType.values
|
|
.map((e) => Tab(text: e.label))
|
|
.toList(),
|
|
onTap: (index) {
|
|
if (!_dynamicsController.tabController.indexIsChanging) {
|
|
_dynamicsController.animateToTop();
|
|
}
|
|
},
|
|
),
|
|
),
|
|
actions: actions,
|
|
),
|
|
drawer: drawer,
|
|
endDrawer: endDrawer,
|
|
body: onBuild(child),
|
|
);
|
|
}
|
|
}
|