import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:PiliPalaX/models/video_detail_res.dart'; import 'package:PiliPalaX/pages/video/detail/index.dart'; class SeasonPanel extends StatefulWidget { const SeasonPanel({ super.key, required this.ugcSeason, this.cid, required this.changeFuc, required this.heroTag, required this.showEpisodes, required this.pages, }); final UgcSeason ugcSeason; final int? cid; final Function changeFuc; final String heroTag; final Function showEpisodes; final List? pages; @override State createState() => _SeasonPanelState(); } class _SeasonPanelState extends State { List? episodes; late int cid; int? _index; int currentIndex = 0; late VideoDetailController _videoDetailController; @override void initState() { super.initState(); cid = widget.cid!; _videoDetailController = Get.find(tag: widget.heroTag); /// 根据 cid 找到对应集,找到对应 episodes /// 有多个episodes时,只显示其中一个 _findEpisode(); if (episodes == null) { return; } /// 取对应 season_id 的 episodes // episodes = widget.ugcSeason.sections! // .firstWhere((e) => e.seasonId == widget.ugcSeason.id) // .episodes!; currentIndex = episodes!.indexWhere((EpisodeItem e) => e.cid == cid); _videoDetailController.cid.listen((int p0) { bool isPart = widget.pages?.indexWhere((item) => item.cid == p0) != -1; if (isPart) return; cid = p0; _findEpisode(); currentIndex = episodes!.indexWhere((EpisodeItem e) => e.cid == cid); if (!mounted) return; setState(() {}); }); } // void changeFucCall(item, int i) async { // await widget.changeFuc!( // IdUtils.av2bv(item.aid), // item.cid, // item.aid, // ); // currentIndex = i; // Get.back(); // setState(() {}); // } @override Widget build(BuildContext context) { if (episodes == null) { return const SizedBox(); } return Builder(builder: (BuildContext context) { return Container( margin: const EdgeInsets.only( top: 8, left: 2, right: 2, bottom: 2, ), child: Material( color: Theme.of(context).colorScheme.onInverseSurface, borderRadius: BorderRadius.circular(6), clipBehavior: Clip.hardEdge, child: InkWell( onTap: () => widget.showEpisodes( _index, widget.ugcSeason, episodes, _videoDetailController.bvid, null, cid, ), child: Padding( padding: const EdgeInsets.fromLTRB(8, 12, 8, 12), child: Row( children: [ Expanded( child: Text( '合集:${widget.ugcSeason.title!}', style: Theme.of(context).textTheme.labelMedium, overflow: TextOverflow.ellipsis, ), ), const SizedBox(width: 15), Image.asset( 'assets/images/live.png', color: Theme.of(context).colorScheme.primary, height: 12, semanticLabel: "正在播放:", ), const SizedBox(width: 10), Text( '${currentIndex + 1}/${episodes!.length}', style: Theme.of(context).textTheme.labelMedium, semanticsLabel: '第${currentIndex + 1}集,共${episodes!.length}集', ), const SizedBox(width: 6), const Icon( Icons.arrow_forward_ios_outlined, size: 13, semanticLabel: '查看', ) ], ), ), ), ), ); }); } void _findEpisode() { final List sections = widget.ugcSeason.sections!; for (int i = 0; i < sections.length; i++) { final List episodesList = sections[i].episodes!; for (int j = 0; j < episodesList.length; j++) { if (episodesList[j].cid == cid) { _index = i; episodes = episodesList; break; } } } } }