mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
119 lines
4.7 KiB
Dart
119 lines
4.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:PiliPalaX/common/skeleton/video_card_h.dart';
|
|
import 'package:PiliPalaX/common/widgets/animated_dialog.dart';
|
|
import 'package:PiliPalaX/common/widgets/http_error.dart';
|
|
import 'package:PiliPalaX/common/widgets/overlay_pop.dart';
|
|
import 'package:PiliPalaX/common/widgets/video_card_h.dart';
|
|
import '../../../../common/constants.dart';
|
|
import '../../../../utils/grid.dart';
|
|
import './controller.dart';
|
|
|
|
class RelatedVideoPanel extends StatefulWidget {
|
|
const RelatedVideoPanel({super.key, required this.heroTag});
|
|
final String heroTag;
|
|
@override
|
|
State<RelatedVideoPanel> createState() => _RelatedVideoPanelState();
|
|
}
|
|
|
|
class _RelatedVideoPanelState extends State<RelatedVideoPanel>
|
|
with AutomaticKeepAliveClientMixin {
|
|
late RelatedController _relatedController;
|
|
late Future _futureBuilder;
|
|
|
|
@override
|
|
bool get wantKeepAlive => true;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_relatedController = Get.put(RelatedController(), tag: widget.heroTag);
|
|
_futureBuilder = _relatedController.queryRelatedVideo();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
super.build(context);
|
|
return SliverPadding(
|
|
padding: const EdgeInsets.all(StyleString.safeSpace),
|
|
sliver: FutureBuilder(
|
|
future: _futureBuilder,
|
|
builder: (BuildContext context, AsyncSnapshot snapshot) {
|
|
if (snapshot.connectionState == ConnectionState.done) {
|
|
if (snapshot.data == null) {
|
|
return const SliverToBoxAdapter(child: SizedBox());
|
|
}
|
|
if (snapshot.data!['status'] && snapshot.hasData) {
|
|
RxList relatedVideoList = _relatedController.relatedVideoList;
|
|
// 请求成功
|
|
return Obx(
|
|
() => SliverGrid(
|
|
gridDelegate: SliverGridDelegateWithExtentAndRatio(
|
|
mainAxisSpacing: StyleString.safeSpace,
|
|
crossAxisSpacing: StyleString.safeSpace,
|
|
maxCrossAxisExtent: Grid.maxRowWidth * 2,
|
|
childAspectRatio: StyleString.aspectRatio * 2.3,
|
|
mainAxisExtent: 0),
|
|
delegate: SliverChildBuilderDelegate((context, index) {
|
|
if (index == relatedVideoList.length) {
|
|
return SizedBox(
|
|
height: MediaQuery.of(context).padding.bottom);
|
|
} else {
|
|
return Material(
|
|
child: VideoCardH(
|
|
videoItem: relatedVideoList[index],
|
|
showPubdate: true,
|
|
longPress: () {
|
|
try {
|
|
_relatedController.popupDialog =
|
|
_createPopupDialog(_relatedController
|
|
.relatedVideoList[index]);
|
|
Overlay.of(context)
|
|
.insert(_relatedController.popupDialog!);
|
|
} catch (err) {
|
|
return {};
|
|
}
|
|
},
|
|
longPressEnd: () {
|
|
_relatedController.popupDialog?.remove();
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}, childCount: relatedVideoList.length + 1),
|
|
),
|
|
);
|
|
} else {
|
|
// 请求错误
|
|
return HttpError(errMsg: '出错了', fn: () {});
|
|
}
|
|
} else {
|
|
// 骨架屏
|
|
return SliverGrid(
|
|
gridDelegate: SliverGridDelegateWithExtentAndRatio(
|
|
mainAxisSpacing: StyleString.safeSpace,
|
|
crossAxisSpacing: StyleString.safeSpace,
|
|
maxCrossAxisExtent: Grid.maxRowWidth * 2,
|
|
childAspectRatio: StyleString.aspectRatio * 2.3,
|
|
mainAxisExtent: 0),
|
|
delegate: SliverChildBuilderDelegate((context, index) {
|
|
return const VideoCardHSkeleton();
|
|
}, childCount: 5),
|
|
);
|
|
}
|
|
},
|
|
));
|
|
}
|
|
|
|
OverlayEntry _createPopupDialog(videoItem) {
|
|
return OverlayEntry(
|
|
builder: (BuildContext context) => AnimatedDialog(
|
|
closeFn: _relatedController.popupDialog?.remove,
|
|
child: OverlayPop(
|
|
videoItem: videoItem,
|
|
closeFn: _relatedController.popupDialog?.remove),
|
|
),
|
|
);
|
|
}
|
|
}
|