|
|
|
@ -8,6 +8,8 @@ import 'package:music_player_miao/widget/text_field.dart';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CommentView extends StatefulWidget {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
_CommentViewState createState() => _CommentViewState();
|
|
|
|
|
|
|
|
|
@ -39,23 +41,27 @@ class _CommentViewState extends State<CommentView> {
|
|
|
|
|
musicId: '1',
|
|
|
|
|
pageNo: '0',
|
|
|
|
|
pageSize: '10',
|
|
|
|
|
Authorization: AppData().currentToken);
|
|
|
|
|
Authorization: AppData().currentToken,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// 检查 rows 是否为空
|
|
|
|
|
if (bean1.rows == null) {
|
|
|
|
|
print('No comments found');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
|
comments = bean1.rows!.map((rows) => rows.content!).toList();
|
|
|
|
|
commentTimes = bean1.rows!.map((rows) => rows.time!).toList();
|
|
|
|
|
commentHeader = bean1.rows!.map((rows) => rows.avatar!).toList();
|
|
|
|
|
commentName = bean1.rows!.map((rows) => rows.username!).toList();
|
|
|
|
|
comments = bean1.rows!.map((rows) => rows.content ?? 'No content').toList();
|
|
|
|
|
commentTimes = bean1.rows!.map((rows) => rows.time ?? 'Unknown time').toList();
|
|
|
|
|
commentHeader = bean1.rows!.map((rows) => rows.avatar ?? 'Default avatar').toList();
|
|
|
|
|
commentName = bean1.rows!.map((rows) => rows.username ?? 'Anonymous').toList();
|
|
|
|
|
playlistCount = comments.length;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
if (error != null) {
|
|
|
|
|
print('Response data: $error');
|
|
|
|
|
} else {
|
|
|
|
|
print('Error fetching songlist data: $error');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -164,17 +170,22 @@ class _CommentViewState extends State<CommentView> {
|
|
|
|
|
),
|
|
|
|
|
IconButton(
|
|
|
|
|
onPressed: () {
|
|
|
|
|
// setState(() {
|
|
|
|
|
// ascendingOrder = !ascendingOrder;
|
|
|
|
|
// comments.sort((a, b) {
|
|
|
|
|
// int compare = ascendingOrder
|
|
|
|
|
// ? commentTimes.indexOf(a).compareTo(
|
|
|
|
|
// commentTimes.indexOf(b))
|
|
|
|
|
// : commentTimes.indexOf(b).compareTo(
|
|
|
|
|
// commentTimes.indexOf(a));
|
|
|
|
|
// return compare;
|
|
|
|
|
// });
|
|
|
|
|
// });
|
|
|
|
|
setState(() {
|
|
|
|
|
ascendingOrder = !ascendingOrder;
|
|
|
|
|
|
|
|
|
|
// 使用时间排序索引列表
|
|
|
|
|
List<int> sortedIndexes = List<int>.generate(comments.length, (i) => i);
|
|
|
|
|
sortedIndexes.sort((a, b) {
|
|
|
|
|
DateTime timeA = DateTime.parse(commentTimes[a]);
|
|
|
|
|
DateTime timeB = DateTime.parse(commentTimes[b]);
|
|
|
|
|
return ascendingOrder ? timeA.compareTo(timeB) : timeB.compareTo(timeA);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
comments = [for (var i in sortedIndexes) comments[i]];
|
|
|
|
|
commentTimes = [for (var i in sortedIndexes) commentTimes[i]];
|
|
|
|
|
commentHeader = [for (var i in sortedIndexes) commentHeader[i]];
|
|
|
|
|
commentName = [for (var i in sortedIndexes) commentName[i]];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
ascendingOrder
|
|
|
|
@ -284,21 +295,35 @@ class _CommentViewState extends State<CommentView> {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void submitComment() {
|
|
|
|
|
String comment = commentController.text;
|
|
|
|
|
if (comment.isNotEmpty) {
|
|
|
|
|
DateTime currentTime = DateTime.now();
|
|
|
|
|
String formattedTime = "${currentTime.year}/${currentTime
|
|
|
|
|
.month}/${currentTime.day} ${currentTime.hour}:${currentTime.minute}";
|
|
|
|
|
void submitComment() async {
|
|
|
|
|
String comment = commentController.text.trim();
|
|
|
|
|
if (comment.isEmpty) {
|
|
|
|
|
print('Comment cannot be empty');
|
|
|
|
|
Get.snackbar('错误', '评论不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print('Submitting comment with content: $comment');
|
|
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
|
comments.add(comment);
|
|
|
|
|
commentTimes.add(formattedTime);
|
|
|
|
|
commentName.add(AppData().currentUsername);
|
|
|
|
|
commentHeader.add(AppData().currentAvatar);
|
|
|
|
|
try {
|
|
|
|
|
UniversalBean bean = await commentMusic().comment(
|
|
|
|
|
musicId: widget.initialSongIndex,
|
|
|
|
|
content: comment,
|
|
|
|
|
Authorization: AppData().currentToken,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// 处理响应结果
|
|
|
|
|
if (bean.code == 200) {
|
|
|
|
|
print('Comment submitted successfully');
|
|
|
|
|
commentController.clear();
|
|
|
|
|
playlistCount++;
|
|
|
|
|
});
|
|
|
|
|
_fetchSonglistData(); // 刷新评论列表
|
|
|
|
|
} else {
|
|
|
|
|
print('Failed to submit comment: ${bean.msg}');
|
|
|
|
|
Get.snackbar('错误', bean.msg ?? '评论提交失败');
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
print('Error submitting comment: $error');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|