mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
feat: slide to dismiss subreply page
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -2111,6 +2111,19 @@ List<SettingsModel> get extraSettings => [
|
|||||||
GStorage.collapsibleVideoPage = value;
|
GStorage.collapsibleVideoPage = value;
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
SettingsModel(
|
||||||
|
settingsType: SettingsType.sw1tch,
|
||||||
|
title: '侧滑关闭二级评论页面',
|
||||||
|
leading: Transform.rotate(
|
||||||
|
angle: pi * 1.5,
|
||||||
|
child: Icon(Icons.touch_app),
|
||||||
|
),
|
||||||
|
setKey: SettingBoxKey.slideDismissReplyPage,
|
||||||
|
defaultVal: Platform.isIOS,
|
||||||
|
onChanged: (value) {
|
||||||
|
GStorage.slideDismissReplyPage = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
SettingsModel(
|
SettingsModel(
|
||||||
settingsType: SettingsType.sw1tch,
|
settingsType: SettingsType.sw1tch,
|
||||||
enableFeedback: true,
|
enableFeedback: true,
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import 'package:PiliPlus/pages/video/detail/reply/widgets/reply_item_grpc.dart';
|
|||||||
import 'package:PiliPlus/pages/video/detail/reply_new/reply_page.dart';
|
import 'package:PiliPlus/pages/video/detail/reply_new/reply_page.dart';
|
||||||
import 'package:PiliPlus/utils/extension.dart';
|
import 'package:PiliPlus/utils/extension.dart';
|
||||||
import 'package:PiliPlus/utils/global_data.dart';
|
import 'package:PiliPlus/utils/global_data.dart';
|
||||||
|
import 'package:PiliPlus/utils/storage.dart';
|
||||||
import 'package:PiliPlus/utils/utils.dart';
|
import 'package:PiliPlus/utils/utils.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
@@ -57,6 +58,7 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel>
|
|||||||
late final _savedReplies = {};
|
late final _savedReplies = {};
|
||||||
late final itemPositionsListener = ItemPositionsListener.create();
|
late final itemPositionsListener = ItemPositionsListener.create();
|
||||||
late final _key = GlobalKey<ScaffoldState>();
|
late final _key = GlobalKey<ScaffoldState>();
|
||||||
|
late final _listKey = GlobalKey();
|
||||||
|
|
||||||
dynamic get firstFloor =>
|
dynamic get firstFloor =>
|
||||||
widget.firstFloor ?? _videoReplyReplyController.firstFloor;
|
widget.firstFloor ?? _videoReplyReplyController.firstFloor;
|
||||||
@@ -114,133 +116,200 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel>
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Offset? _downPos;
|
||||||
|
bool? _isSliding;
|
||||||
|
late final Rx<double> padding = 0.0.obs;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return GStorage.slideDismissReplyPage
|
||||||
key: _key,
|
? GestureDetector(
|
||||||
resizeToAvoidBottomInset: false,
|
onPanDown: (event) {
|
||||||
body: Column(
|
_downPos = event.localPosition;
|
||||||
children: [
|
},
|
||||||
widget.source == 'videoDetail'
|
onPanUpdate: (event) {
|
||||||
? Container(
|
if (_isSliding == false) {
|
||||||
height: 45,
|
return;
|
||||||
decoration: BoxDecoration(
|
} else if (_isSliding == null) {
|
||||||
border: Border(
|
if (_downPos != null && _downPos!.dx <= 25) {
|
||||||
bottom: BorderSide(
|
Offset cumulativeDelta = event.localPosition - _downPos!;
|
||||||
width: 1,
|
if (cumulativeDelta.dx.abs() > 3 * cumulativeDelta.dy.abs()) {
|
||||||
color: Theme.of(context).dividerColor.withOpacity(0.1),
|
_isSliding = true;
|
||||||
|
setState(() {
|
||||||
|
padding.value = event.localPosition.dx;
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
_isSliding = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (_isSliding == true) {
|
||||||
|
setState(() {
|
||||||
|
padding.value = event.localPosition.dx;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onPanCancel: () {
|
||||||
|
if (_isSliding == true) {
|
||||||
|
if (padding.value >= 100) {
|
||||||
|
Get.back();
|
||||||
|
} else {
|
||||||
|
setState(() {
|
||||||
|
padding.value = 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_downPos = null;
|
||||||
|
_isSliding = null;
|
||||||
|
},
|
||||||
|
onPanEnd: (event) {
|
||||||
|
if (_isSliding == true) {
|
||||||
|
if (padding.value >= 100) {
|
||||||
|
Get.back();
|
||||||
|
} else {
|
||||||
|
setState(() {
|
||||||
|
padding.value = 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_downPos = null;
|
||||||
|
_isSliding = null;
|
||||||
|
},
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.only(top: padding.value),
|
||||||
|
child: _buildPage,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: _buildPage;
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget get _buildPage => Scaffold(
|
||||||
|
key: _key,
|
||||||
|
resizeToAvoidBottomInset: false,
|
||||||
|
body: Column(
|
||||||
|
children: [
|
||||||
|
widget.source == 'videoDetail'
|
||||||
|
? Container(
|
||||||
|
height: 45,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
border: Border(
|
||||||
|
bottom: BorderSide(
|
||||||
|
width: 1,
|
||||||
|
color:
|
||||||
|
Theme.of(context).dividerColor.withOpacity(0.1),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
padding: const EdgeInsets.only(left: 12, right: 2),
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: <Widget>[
|
||||||
|
Text(widget.isDialogue ? '对话列表' : '评论详情'),
|
||||||
|
IconButton(
|
||||||
|
tooltip: '关闭',
|
||||||
|
icon: const Icon(Icons.close, size: 20),
|
||||||
|
onPressed: Get.back,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: Divider(
|
||||||
|
height: 1,
|
||||||
|
color: Theme.of(context).dividerColor.withOpacity(0.1),
|
||||||
),
|
),
|
||||||
padding: const EdgeInsets.only(left: 12, right: 2),
|
Expanded(
|
||||||
child: Row(
|
child: ClipRect(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
child: refreshIndicator(
|
||||||
children: <Widget>[
|
onRefresh: () async {
|
||||||
Text(widget.isDialogue ? '对话列表' : '评论详情'),
|
await _videoReplyReplyController.onRefresh();
|
||||||
IconButton(
|
},
|
||||||
tooltip: '关闭',
|
child: Obx(
|
||||||
icon: const Icon(Icons.close, size: 20),
|
() => Stack(
|
||||||
onPressed: Get.back,
|
children: [
|
||||||
),
|
ScrollablePositionedList.builder(
|
||||||
],
|
key: _listKey,
|
||||||
),
|
itemPositionsListener: itemPositionsListener,
|
||||||
)
|
itemCount: _itemCount(
|
||||||
: Divider(
|
_videoReplyReplyController.loadingState.value),
|
||||||
height: 1,
|
itemScrollController:
|
||||||
color: Theme.of(context).dividerColor.withOpacity(0.1),
|
_videoReplyReplyController.itemScrollCtr,
|
||||||
),
|
physics: const AlwaysScrollableScrollPhysics(),
|
||||||
Expanded(
|
itemBuilder: (context, index) {
|
||||||
child: ClipRect(
|
if (widget.isDialogue) {
|
||||||
child: refreshIndicator(
|
|
||||||
onRefresh: () async {
|
|
||||||
await _videoReplyReplyController.onRefresh();
|
|
||||||
},
|
|
||||||
child: Obx(
|
|
||||||
() => Stack(
|
|
||||||
children: [
|
|
||||||
ScrollablePositionedList.builder(
|
|
||||||
itemPositionsListener: itemPositionsListener,
|
|
||||||
itemCount: _itemCount(
|
|
||||||
_videoReplyReplyController.loadingState.value),
|
|
||||||
itemScrollController:
|
|
||||||
_videoReplyReplyController.itemScrollCtr,
|
|
||||||
physics: const AlwaysScrollableScrollPhysics(),
|
|
||||||
itemBuilder: (context, index) {
|
|
||||||
if (widget.isDialogue) {
|
|
||||||
return _buildBody(
|
|
||||||
_videoReplyReplyController.loadingState.value,
|
|
||||||
index);
|
|
||||||
} else if (firstFloor != null) {
|
|
||||||
if (index == 0) {
|
|
||||||
return GlobalData().grpcReply
|
|
||||||
? ReplyItemGrpc(
|
|
||||||
replyItem: firstFloor,
|
|
||||||
replyLevel: '2',
|
|
||||||
showReplyRow: false,
|
|
||||||
replyType: widget.replyType,
|
|
||||||
needDivider: false,
|
|
||||||
onReply: () {
|
|
||||||
_onReply(firstFloor, -1);
|
|
||||||
},
|
|
||||||
upMid: _videoReplyReplyController.upMid,
|
|
||||||
isTop: widget.isTop,
|
|
||||||
onViewImage: widget.onViewImage,
|
|
||||||
onDismissed: widget.onDismissed,
|
|
||||||
callback: _getImageCallback,
|
|
||||||
)
|
|
||||||
: ReplyItem(
|
|
||||||
replyItem: firstFloor,
|
|
||||||
replyLevel: '2',
|
|
||||||
showReplyRow: false,
|
|
||||||
replyType: widget.replyType,
|
|
||||||
needDivider: false,
|
|
||||||
onReply: () {
|
|
||||||
_onReply(firstFloor, -1);
|
|
||||||
},
|
|
||||||
onViewImage: widget.onViewImage,
|
|
||||||
onDismissed: widget.onDismissed,
|
|
||||||
callback: _getImageCallback,
|
|
||||||
);
|
|
||||||
} else if (index == 1) {
|
|
||||||
return Divider(
|
|
||||||
height: 20,
|
|
||||||
color: Theme.of(context)
|
|
||||||
.dividerColor
|
|
||||||
.withOpacity(0.1),
|
|
||||||
thickness: 6,
|
|
||||||
);
|
|
||||||
} else if (index == 2) {
|
|
||||||
return _sortWidget;
|
|
||||||
} else {
|
|
||||||
return _buildBody(
|
return _buildBody(
|
||||||
_videoReplyReplyController.loadingState.value,
|
_videoReplyReplyController.loadingState.value,
|
||||||
index - 3);
|
index);
|
||||||
}
|
} else if (firstFloor != null) {
|
||||||
} else {
|
if (index == 0) {
|
||||||
if (index == 0) {
|
return GlobalData().grpcReply
|
||||||
return _sortWidget;
|
? ReplyItemGrpc(
|
||||||
|
replyItem: firstFloor,
|
||||||
|
replyLevel: '2',
|
||||||
|
showReplyRow: false,
|
||||||
|
replyType: widget.replyType,
|
||||||
|
needDivider: false,
|
||||||
|
onReply: () {
|
||||||
|
_onReply(firstFloor, -1);
|
||||||
|
},
|
||||||
|
upMid: _videoReplyReplyController.upMid,
|
||||||
|
isTop: widget.isTop,
|
||||||
|
onViewImage: widget.onViewImage,
|
||||||
|
onDismissed: widget.onDismissed,
|
||||||
|
callback: _getImageCallback,
|
||||||
|
)
|
||||||
|
: ReplyItem(
|
||||||
|
replyItem: firstFloor,
|
||||||
|
replyLevel: '2',
|
||||||
|
showReplyRow: false,
|
||||||
|
replyType: widget.replyType,
|
||||||
|
needDivider: false,
|
||||||
|
onReply: () {
|
||||||
|
_onReply(firstFloor, -1);
|
||||||
|
},
|
||||||
|
onViewImage: widget.onViewImage,
|
||||||
|
onDismissed: widget.onDismissed,
|
||||||
|
callback: _getImageCallback,
|
||||||
|
);
|
||||||
|
} else if (index == 1) {
|
||||||
|
return Divider(
|
||||||
|
height: 20,
|
||||||
|
color: Theme.of(context)
|
||||||
|
.dividerColor
|
||||||
|
.withOpacity(0.1),
|
||||||
|
thickness: 6,
|
||||||
|
);
|
||||||
|
} else if (index == 2) {
|
||||||
|
return _sortWidget;
|
||||||
|
} else {
|
||||||
|
return _buildBody(
|
||||||
|
_videoReplyReplyController
|
||||||
|
.loadingState.value,
|
||||||
|
index - 3);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return _buildBody(
|
if (index == 0) {
|
||||||
_videoReplyReplyController.loadingState.value,
|
return _sortWidget;
|
||||||
index - 1);
|
} else {
|
||||||
|
return _buildBody(
|
||||||
|
_videoReplyReplyController
|
||||||
|
.loadingState.value,
|
||||||
|
index - 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
},
|
),
|
||||||
),
|
if (!widget.isDialogue &&
|
||||||
if (!widget.isDialogue &&
|
_videoReplyReplyController.loadingState.value
|
||||||
_videoReplyReplyController.loadingState.value
|
is Success)
|
||||||
is Success)
|
_header,
|
||||||
_header,
|
],
|
||||||
],
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
],
|
||||||
],
|
),
|
||||||
),
|
);
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget get _sortWidget => Container(
|
Widget get _sortWidget => Container(
|
||||||
height: 40,
|
height: 40,
|
||||||
|
|||||||
@@ -391,6 +391,9 @@ class GStorage {
|
|||||||
static bool collapsibleVideoPage = GStorage.setting
|
static bool collapsibleVideoPage = GStorage.setting
|
||||||
.get(SettingBoxKey.collapsibleVideoPage, defaultValue: true);
|
.get(SettingBoxKey.collapsibleVideoPage, defaultValue: true);
|
||||||
|
|
||||||
|
static bool slideDismissReplyPage = GStorage.setting
|
||||||
|
.get(SettingBoxKey.slideDismissReplyPage, defaultValue: Platform.isIOS);
|
||||||
|
|
||||||
static List<double> get dynamicDetailRatio => List<double>.from(setting
|
static List<double> get dynamicDetailRatio => List<double>.from(setting
|
||||||
.get(SettingBoxKey.dynamicDetailRatio, defaultValue: [60.0, 40.0]));
|
.get(SettingBoxKey.dynamicDetailRatio, defaultValue: [60.0, 40.0]));
|
||||||
|
|
||||||
@@ -645,6 +648,7 @@ class SettingBoxKey {
|
|||||||
springDescription = 'springDescription',
|
springDescription = 'springDescription',
|
||||||
collapsibleVideoPage = 'collapsibleVideoPage',
|
collapsibleVideoPage = 'collapsibleVideoPage',
|
||||||
enableHttp2 = 'enableHttp2',
|
enableHttp2 = 'enableHttp2',
|
||||||
|
slideDismissReplyPage = 'slideDismissReplyPage',
|
||||||
|
|
||||||
// Sponsor Block
|
// Sponsor Block
|
||||||
enableSponsorBlock = 'enableSponsorBlock',
|
enableSponsorBlock = 'enableSponsorBlock',
|
||||||
|
|||||||
Reference in New Issue
Block a user