mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* feat: opus * fix * fix * fix * fix * . * fix * remove * wbi sign * fix * opus content null check Co-authored-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
171 lines
5.8 KiB
Dart
171 lines
5.8 KiB
Dart
import 'package:PiliPlus/pages/dynamics/repost_dyn_panel.dart';
|
|
import 'package:PiliPlus/utils/extension.dart';
|
|
import 'package:PiliPlus/utils/page_utils.dart';
|
|
import 'package:PiliPlus/utils/utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:PiliPlus/http/dynamics.dart';
|
|
import 'package:PiliPlus/models/dynamics/result.dart';
|
|
import 'package:PiliPlus/utils/feed_back.dart';
|
|
|
|
class ActionPanel extends StatefulWidget {
|
|
const ActionPanel({
|
|
super.key,
|
|
required this.item,
|
|
});
|
|
final DynamicItemModel item;
|
|
|
|
@override
|
|
State<ActionPanel> createState() => _ActionPanelState();
|
|
}
|
|
|
|
class _ActionPanelState extends State<ActionPanel> {
|
|
bool isProcessing = false;
|
|
void handleState(Future Function() action) async {
|
|
if (isProcessing.not) {
|
|
isProcessing = true;
|
|
await action();
|
|
isProcessing = false;
|
|
}
|
|
}
|
|
|
|
// 动态点赞
|
|
Future onLikeDynamic() async {
|
|
feedBack();
|
|
final item = widget.item;
|
|
String dynamicId = item.idStr!;
|
|
// 1 已点赞 2 不喜欢 0 未操作
|
|
DynamicStat? like = item.modules.moduleStat?.like;
|
|
int count = like?.count ?? 0;
|
|
bool status = like?.status == true;
|
|
int up = status ? 2 : 1;
|
|
var res = await DynamicsHttp.likeDynamic(dynamicId: dynamicId, up: up);
|
|
if (res['status']) {
|
|
SmartDialog.showToast(!status ? '点赞成功' : '取消赞');
|
|
if (up == 1) {
|
|
item.modules.moduleStat?.like?.count = count + 1;
|
|
item.modules.moduleStat?.like?.status = true;
|
|
} else {
|
|
item.modules.moduleStat?.like?.count = count - 1;
|
|
item.modules.moduleStat?.like?.status = false;
|
|
}
|
|
setState(() {});
|
|
} else {
|
|
SmartDialog.showToast(res['msg']);
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var color = Theme.of(context).colorScheme.outline;
|
|
var primary = Theme.of(context).colorScheme.primary;
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: [
|
|
Expanded(
|
|
flex: 1,
|
|
child: TextButton.icon(
|
|
onPressed: () {
|
|
showModalBottomSheet(
|
|
context: context,
|
|
isScrollControlled: true,
|
|
useSafeArea: true,
|
|
builder: (context) => RepostPanel(
|
|
item: widget.item,
|
|
callback: () {
|
|
int count =
|
|
widget.item.modules.moduleStat?.forward?.count ?? 0;
|
|
widget.item.modules.moduleStat!.forward!.count = count + 1;
|
|
setState(() {});
|
|
},
|
|
),
|
|
);
|
|
},
|
|
icon: Icon(
|
|
FontAwesomeIcons.shareFromSquare,
|
|
size: 16,
|
|
color: color,
|
|
semanticLabel: "转发",
|
|
),
|
|
style: TextButton.styleFrom(
|
|
padding: const EdgeInsets.fromLTRB(15, 0, 15, 0),
|
|
foregroundColor: Theme.of(context).colorScheme.outline,
|
|
),
|
|
label: Text(
|
|
widget.item.modules.moduleStat!.forward!.count != null
|
|
? Utils.numFormat(
|
|
widget.item.modules.moduleStat!.forward!.count)
|
|
: '转发',
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
flex: 1,
|
|
child: TextButton.icon(
|
|
onPressed: () =>
|
|
PageUtils.pushDynDetail(widget.item, 1, action: 'comment'),
|
|
icon: Icon(
|
|
FontAwesomeIcons.comment,
|
|
size: 16,
|
|
color: color,
|
|
semanticLabel: "评论",
|
|
),
|
|
style: TextButton.styleFrom(
|
|
padding: const EdgeInsets.fromLTRB(15, 0, 15, 0),
|
|
foregroundColor: Theme.of(context).colorScheme.outline,
|
|
),
|
|
label: Text(
|
|
widget.item.modules.moduleStat!.comment!.count != null
|
|
? Utils.numFormat(
|
|
widget.item.modules.moduleStat!.comment!.count)
|
|
: '评论',
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
flex: 1,
|
|
child: TextButton.icon(
|
|
onPressed: () => handleState(onLikeDynamic),
|
|
icon: Icon(
|
|
widget.item.modules.moduleStat!.like!.status!
|
|
? FontAwesomeIcons.solidThumbsUp
|
|
: FontAwesomeIcons.thumbsUp,
|
|
size: 16,
|
|
color: widget.item.modules.moduleStat!.like!.status!
|
|
? primary
|
|
: color,
|
|
semanticLabel:
|
|
widget.item.modules.moduleStat!.like!.status! ? "已赞" : "点赞",
|
|
),
|
|
style: TextButton.styleFrom(
|
|
padding: const EdgeInsets.fromLTRB(15, 0, 15, 0),
|
|
foregroundColor: Theme.of(context).colorScheme.outline,
|
|
),
|
|
label: AnimatedSwitcher(
|
|
duration: const Duration(milliseconds: 400),
|
|
transitionBuilder: (Widget child, Animation<double> animation) {
|
|
return ScaleTransition(scale: animation, child: child);
|
|
},
|
|
child: Text(
|
|
widget.item.modules.moduleStat!.like!.count != null
|
|
? Utils.numFormat(
|
|
widget.item.modules.moduleStat!.like!.count)
|
|
: '点赞',
|
|
key: ValueKey<String>(
|
|
widget.item.modules.moduleStat!.like!.count?.toString() ??
|
|
'点赞'),
|
|
style: TextStyle(
|
|
color: widget.item.modules.moduleStat!.like!.status!
|
|
? primary
|
|
: color,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|