mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
212 lines
9.1 KiB
Dart
212 lines
9.1 KiB
Dart
import 'package:PiliPalaX/common/widgets/stat/danmu.dart';
|
|
import 'package:PiliPalaX/common/widgets/stat/view.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:PiliPalaX/common/constants.dart';
|
|
import 'package:PiliPalaX/common/widgets/badge.dart';
|
|
import 'package:PiliPalaX/common/widgets/network_img_layer.dart';
|
|
import 'package:PiliPalaX/http/search.dart';
|
|
import 'package:PiliPalaX/models/video/later.dart';
|
|
import 'package:PiliPalaX/utils/utils.dart';
|
|
import 'package:scrollable_positioned_list/scrollable_positioned_list.dart';
|
|
|
|
class MediaListPanel extends StatefulWidget {
|
|
const MediaListPanel({
|
|
super.key,
|
|
required this.mediaList,
|
|
this.changeMediaList,
|
|
this.panelTitle,
|
|
this.bvid,
|
|
required this.loadMoreMedia,
|
|
required this.count,
|
|
});
|
|
|
|
final List<MediaVideoItemModel> mediaList;
|
|
final Function? changeMediaList;
|
|
final String? panelTitle;
|
|
final String? bvid;
|
|
final VoidCallback loadMoreMedia;
|
|
final int count;
|
|
|
|
@override
|
|
State<MediaListPanel> createState() => _MediaListPanelState();
|
|
}
|
|
|
|
class _MediaListPanelState extends State<MediaListPanel> {
|
|
final _scrollController = ItemScrollController();
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
int index =
|
|
widget.mediaList.indexWhere((item) => item.bvid == widget.bvid);
|
|
if (index != -1 && index != 0) {
|
|
try {
|
|
_scrollController.jumpTo(index: index);
|
|
} catch (_) {}
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return DecoratedBox(
|
|
decoration: BoxDecoration(
|
|
color: Theme.of(context).colorScheme.surface,
|
|
),
|
|
child: Column(
|
|
children: [
|
|
AppBar(
|
|
toolbarHeight: 45,
|
|
automaticallyImplyLeading: false,
|
|
titleSpacing: 16,
|
|
title: Text(widget.panelTitle ?? '稍后再看'),
|
|
actions: [
|
|
IconButton(
|
|
icon: const Icon(Icons.close, size: 20),
|
|
onPressed: Get.back,
|
|
),
|
|
const SizedBox(width: 14),
|
|
],
|
|
),
|
|
Expanded(
|
|
child: Material(
|
|
color: Theme.of(context).colorScheme.surface,
|
|
child: Obx(
|
|
() => ScrollablePositionedList.builder(
|
|
itemScrollController: _scrollController,
|
|
itemCount: widget.mediaList.length,
|
|
itemBuilder: ((context, index) {
|
|
var item = widget.mediaList[index];
|
|
if (index == widget.mediaList.length - 1 &&
|
|
widget.mediaList.length < widget.count) {
|
|
widget.loadMoreMedia();
|
|
}
|
|
return InkWell(
|
|
onTap: () async {
|
|
Get.back();
|
|
String bvid = item.bvid!;
|
|
int? aid = item.id;
|
|
String cover = item.cover ?? '';
|
|
final int cid =
|
|
await SearchHttp.ab2c(aid: aid, bvid: bvid);
|
|
widget.changeMediaList?.call(bvid, cid, aid, cover);
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 10,
|
|
vertical: 8,
|
|
),
|
|
child: LayoutBuilder(
|
|
builder: (context, boxConstraints) {
|
|
const double width = 120;
|
|
return Container(
|
|
constraints: const BoxConstraints(minHeight: 88),
|
|
height: width / StyleString.aspectRatio,
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
AspectRatio(
|
|
aspectRatio: StyleString.aspectRatio,
|
|
child: LayoutBuilder(
|
|
builder: (BuildContext context,
|
|
BoxConstraints boxConstraints) {
|
|
final double maxWidth =
|
|
boxConstraints.maxWidth;
|
|
final double maxHeight =
|
|
boxConstraints.maxHeight;
|
|
return Stack(
|
|
children: [
|
|
NetworkImgLayer(
|
|
src: item.cover ?? '',
|
|
width: maxWidth,
|
|
height: maxHeight,
|
|
),
|
|
PBadge(
|
|
text: Utils.timeFormat(
|
|
item.duration!),
|
|
right: 6.0,
|
|
bottom: 6.0,
|
|
type: 'gray',
|
|
),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
),
|
|
Expanded(
|
|
child: Padding(
|
|
padding: const EdgeInsets.fromLTRB(
|
|
10, 0, 6, 0),
|
|
child: Column(
|
|
crossAxisAlignment:
|
|
CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
item.title as String,
|
|
textAlign: TextAlign.start,
|
|
maxLines: 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: TextStyle(
|
|
color: item.bvid == widget.bvid
|
|
? Theme.of(context)
|
|
.colorScheme
|
|
.primary
|
|
: null,
|
|
),
|
|
),
|
|
const Spacer(),
|
|
Text(
|
|
item.upper?.name as String,
|
|
style: TextStyle(
|
|
fontSize: Theme.of(context)
|
|
.textTheme
|
|
.labelMedium!
|
|
.fontSize,
|
|
color: Theme.of(context)
|
|
.colorScheme
|
|
.outline,
|
|
),
|
|
),
|
|
const SizedBox(height: 2),
|
|
Row(
|
|
children: [
|
|
statView(
|
|
context: context,
|
|
theme: 'gray',
|
|
view: item.cntInfo!['play']
|
|
as int,
|
|
),
|
|
const SizedBox(width: 8),
|
|
statDanMu(
|
|
context: context,
|
|
theme: 'gray',
|
|
danmu: item.cntInfo!['danmaku']
|
|
as int,
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|