mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
739 lines
28 KiB
Dart
739 lines
28 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:PiliPlus/common/widgets/http_error.dart';
|
|
import 'package:PiliPlus/common/widgets/interactiveviewer_gallery/interactiveviewer_gallery.dart'
|
|
show SourceModel;
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/utils/extension.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:get/get.dart';
|
|
import 'package:PiliPlus/common/constants.dart';
|
|
import 'package:PiliPlus/common/widgets/badge.dart';
|
|
import 'package:PiliPlus/common/widgets/network_img_layer.dart';
|
|
import 'package:PiliPlus/common/widgets/stat/danmu.dart';
|
|
import 'package:PiliPlus/common/widgets/stat/view.dart';
|
|
import 'package:PiliPlus/models/bangumi/info.dart';
|
|
import 'package:PiliPlus/pages/bangumi/widgets/bangumi_panel.dart';
|
|
import 'package:PiliPlus/pages/video/detail/index.dart';
|
|
import 'package:PiliPlus/pages/video/detail/introduction/widgets/action_item.dart';
|
|
import 'package:PiliPlus/pages/video/detail/introduction/widgets/action_row_item.dart';
|
|
import 'package:PiliPlus/utils/feed_back.dart';
|
|
|
|
import '../../../utils/utils.dart';
|
|
import 'controller.dart';
|
|
|
|
class BangumiIntroPanel extends StatefulWidget {
|
|
final int? cid;
|
|
final String heroTag;
|
|
final Function showEpisodes;
|
|
final Function showIntroDetail;
|
|
|
|
const BangumiIntroPanel({
|
|
super.key,
|
|
this.cid,
|
|
required this.heroTag,
|
|
required this.showEpisodes,
|
|
required this.showIntroDetail,
|
|
});
|
|
|
|
@override
|
|
State<BangumiIntroPanel> createState() => _BangumiIntroPanelState();
|
|
}
|
|
|
|
class _BangumiIntroPanelState extends State<BangumiIntroPanel>
|
|
with AutomaticKeepAliveClientMixin {
|
|
late BangumiIntroController bangumiIntroController;
|
|
late VideoDetailController videoDetailCtr;
|
|
late int cid;
|
|
StreamSubscription? _listener;
|
|
|
|
// 添加页面缓存
|
|
@override
|
|
bool get wantKeepAlive => true;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
cid = widget.cid!;
|
|
bangumiIntroController =
|
|
Get.put(BangumiIntroController(), tag: widget.heroTag);
|
|
videoDetailCtr = Get.find<VideoDetailController>(tag: widget.heroTag);
|
|
_listener = videoDetailCtr.cid.listen((int p0) {
|
|
cid = p0;
|
|
if (!mounted) return;
|
|
setState(() {});
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_listener?.cancel();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
super.build(context);
|
|
return Obx(() => _buildBody(bangumiIntroController.loadingState.value));
|
|
}
|
|
|
|
_buildBody(LoadingState loadingState) {
|
|
return switch (loadingState) {
|
|
Loading() => BangumiInfo(
|
|
heroTag: widget.heroTag,
|
|
isLoading: true,
|
|
bangumiDetail: null,
|
|
cid: cid,
|
|
showEpisodes: widget.showEpisodes,
|
|
showIntroDetail: () {},
|
|
),
|
|
Success() => BangumiInfo(
|
|
heroTag: widget.heroTag,
|
|
isLoading: false,
|
|
bangumiDetail: loadingState.response,
|
|
cid: cid,
|
|
showEpisodes: widget.showEpisodes,
|
|
showIntroDetail: () => widget.showIntroDetail(
|
|
loadingState.response,
|
|
bangumiIntroController.videoTags,
|
|
),
|
|
),
|
|
Error() => HttpError(
|
|
errMsg: loadingState.errMsg,
|
|
callback: bangumiIntroController.onReload,
|
|
),
|
|
LoadingState() => throw UnimplementedError(),
|
|
};
|
|
}
|
|
}
|
|
|
|
class BangumiInfo extends StatefulWidget {
|
|
const BangumiInfo({
|
|
super.key,
|
|
this.isLoading = false,
|
|
this.bangumiDetail,
|
|
this.cid,
|
|
required this.showEpisodes,
|
|
required this.showIntroDetail,
|
|
required this.heroTag,
|
|
});
|
|
|
|
final bool isLoading;
|
|
final BangumiInfoModel? bangumiDetail;
|
|
final int? cid;
|
|
final Function showEpisodes;
|
|
final Function showIntroDetail;
|
|
final String heroTag;
|
|
|
|
@override
|
|
State<BangumiInfo> createState() => _BangumiInfoState();
|
|
}
|
|
|
|
class _BangumiInfoState extends State<BangumiInfo>
|
|
with TickerProviderStateMixin {
|
|
late final BangumiIntroController bangumiIntroController;
|
|
late final VideoDetailController videoDetailCtr;
|
|
late final BangumiInfoModel? bangumiItem;
|
|
int? cid;
|
|
bool isProcessing = false;
|
|
void handleState(Future Function() action) async {
|
|
if (isProcessing.not) {
|
|
isProcessing = true;
|
|
await action();
|
|
isProcessing = false;
|
|
}
|
|
}
|
|
|
|
late final _coinKey = GlobalKey<ActionItemState>();
|
|
late final _favKey = GlobalKey<ActionItemState>();
|
|
|
|
StreamSubscription? _listener;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
bangumiIntroController =
|
|
Get.put(BangumiIntroController(), tag: widget.heroTag);
|
|
videoDetailCtr = Get.find<VideoDetailController>(tag: widget.heroTag);
|
|
bangumiItem = bangumiIntroController.bangumiItem;
|
|
cid = widget.cid!;
|
|
debugPrint('cid: $cid');
|
|
_listener = videoDetailCtr.cid.listen((p0) {
|
|
cid = p0;
|
|
if (!mounted) return;
|
|
setState(() {});
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_listener?.cancel();
|
|
super.dispose();
|
|
}
|
|
|
|
// 收藏
|
|
showFavBottomSheet({type = 'tap'}) {
|
|
if (bangumiIntroController.userInfo == null) {
|
|
SmartDialog.showToast('账号未登录');
|
|
return;
|
|
}
|
|
// 快速收藏 &
|
|
// 点按 收藏至默认文件夹
|
|
// 长按选择文件夹
|
|
if (bangumiIntroController.enableQuickFav) {
|
|
if (type == 'tap') {
|
|
bangumiIntroController.actionFavVideo(type: 'default');
|
|
} else {
|
|
Utils.showFavBottomSheet(context: context, ctr: bangumiIntroController);
|
|
}
|
|
} else if (type != 'longPress') {
|
|
Utils.showFavBottomSheet(context: context, ctr: bangumiIntroController);
|
|
}
|
|
}
|
|
|
|
// 视频介绍
|
|
showIntroDetail() {
|
|
feedBack();
|
|
widget.showIntroDetail();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final ThemeData t = Theme.of(context);
|
|
bool isLandscape =
|
|
MediaQuery.of(context).orientation == Orientation.landscape;
|
|
return SliverPadding(
|
|
padding: EdgeInsets.only(
|
|
left: StyleString.safeSpace,
|
|
right: StyleString.safeSpace,
|
|
top: StyleString.safeSpace,
|
|
bottom: StyleString.safeSpace + MediaQuery.paddingOf(context).bottom,
|
|
),
|
|
sliver: SliverToBoxAdapter(
|
|
child: !widget.isLoading || bangumiItem != null
|
|
? Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Stack(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () {
|
|
videoDetailCtr.onViewImage();
|
|
context.imageView(
|
|
imgList: [
|
|
SourceModel(
|
|
url: !widget.isLoading
|
|
? widget.bangumiDetail!.cover!
|
|
: bangumiItem!.cover!,
|
|
)
|
|
],
|
|
onDismissed: videoDetailCtr.onDismissed,
|
|
);
|
|
},
|
|
child: Hero(
|
|
tag: !widget.isLoading
|
|
? widget.bangumiDetail!.cover!
|
|
: bangumiItem!.cover!,
|
|
child: NetworkImgLayer(
|
|
width: isLandscape ? 115 / 0.75 : 115,
|
|
height: isLandscape ? 115 : 115 / 0.75,
|
|
src: !widget.isLoading
|
|
? widget.bangumiDetail!.cover!
|
|
: bangumiItem!.cover!,
|
|
semanticsLabel: '封面',
|
|
),
|
|
),
|
|
),
|
|
if (bangumiItem != null &&
|
|
bangumiItem!.rating != null)
|
|
PBadge(
|
|
text:
|
|
'评分 ${!widget.isLoading ? widget.bangumiDetail!.rating!['score']! : bangumiItem!.rating!['score']!}',
|
|
top: null,
|
|
right: 6,
|
|
bottom: 6,
|
|
left: null,
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(width: 10),
|
|
Expanded(
|
|
child: GestureDetector(
|
|
onTap: showIntroDetail,
|
|
behavior: HitTestBehavior.opaque,
|
|
child: SizedBox(
|
|
height: isLandscape ? 115 : 115 / 0.75,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Expanded(
|
|
child: Text(
|
|
!widget.isLoading
|
|
? widget.bangumiDetail!.title!
|
|
: bangumiItem!.title!,
|
|
style: const TextStyle(
|
|
fontSize: 16,
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
const SizedBox(width: 20),
|
|
Obx(
|
|
() => FilledButton.tonal(
|
|
style: FilledButton.styleFrom(
|
|
tapTargetSize:
|
|
MaterialTapTargetSize.shrinkWrap,
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 20,
|
|
vertical: 10,
|
|
),
|
|
visualDensity: const VisualDensity(
|
|
horizontal: -2,
|
|
vertical: -2,
|
|
),
|
|
foregroundColor:
|
|
bangumiIntroController
|
|
.isFollowed.value
|
|
? t.colorScheme.outline
|
|
: null,
|
|
backgroundColor:
|
|
bangumiIntroController
|
|
.isFollowed.value
|
|
? t.colorScheme
|
|
.onInverseSurface
|
|
: null,
|
|
),
|
|
onPressed: bangumiIntroController
|
|
.followStatus.value ==
|
|
-1
|
|
? null
|
|
: () {
|
|
if (bangumiIntroController
|
|
.isFollowed.value) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) =>
|
|
_followDialog(),
|
|
);
|
|
} else {
|
|
bangumiIntroController
|
|
.bangumiAdd();
|
|
}
|
|
},
|
|
child: Text(
|
|
bangumiIntroController
|
|
.isFollowed.value
|
|
? '已${bangumiIntroController.type}'
|
|
: '${bangumiIntroController.type}',
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Row(
|
|
children: [
|
|
statView(
|
|
context: context,
|
|
theme: 'gray',
|
|
view: !widget.isLoading
|
|
? widget.bangumiDetail!.stat!['views']
|
|
: bangumiItem!.stat!['views'],
|
|
size: 'medium',
|
|
),
|
|
const SizedBox(width: 6),
|
|
statDanMu(
|
|
context: context,
|
|
theme: 'gray',
|
|
danmu: !widget.isLoading
|
|
? widget
|
|
.bangumiDetail!.stat!['danmakus']
|
|
: bangumiItem!.stat!['danmakus'],
|
|
size: 'medium',
|
|
),
|
|
if (isLandscape) ...[
|
|
const SizedBox(width: 6),
|
|
AreasAndPubTime(
|
|
widget: widget,
|
|
bangumiItem: bangumiItem,
|
|
t: t),
|
|
const SizedBox(width: 6),
|
|
NewEpDesc(
|
|
widget: widget,
|
|
bangumiItem: bangumiItem,
|
|
t: t),
|
|
]
|
|
],
|
|
),
|
|
SizedBox(height: isLandscape ? 2 : 6),
|
|
if (!isLandscape)
|
|
AreasAndPubTime(
|
|
widget: widget,
|
|
bangumiItem: bangumiItem,
|
|
t: t),
|
|
if (!isLandscape)
|
|
NewEpDesc(
|
|
widget: widget,
|
|
bangumiItem: bangumiItem,
|
|
t: t),
|
|
const Spacer(),
|
|
Text(
|
|
'简介:${!widget.isLoading ? widget.bangumiDetail!.evaluate! : bangumiItem!.evaluate!}',
|
|
maxLines: isLandscape ? 2 : 3,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: TextStyle(
|
|
fontSize: 13,
|
|
color: t.colorScheme.outline,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 6),
|
|
// 点赞收藏转发 布局样式1
|
|
// SingleChildScrollView(
|
|
// padding: const EdgeInsets.only(top: 7, bottom: 7),
|
|
// scrollDirection: Axis.horizontal,
|
|
// child: actionRow(
|
|
// context,
|
|
// bangumiIntroController,
|
|
// videoDetailCtr,
|
|
// ),
|
|
// ),
|
|
// 点赞收藏转发 布局样式2
|
|
actionGrid(context, bangumiIntroController),
|
|
// 番剧分p
|
|
if ((!widget.isLoading &&
|
|
widget.bangumiDetail!.episodes!.isNotEmpty) ||
|
|
bangumiItem != null &&
|
|
bangumiItem!.episodes!.isNotEmpty) ...[
|
|
BangumiPanel(
|
|
heroTag: widget.heroTag,
|
|
pages: bangumiItem != null
|
|
? bangumiItem!.episodes!
|
|
: widget.bangumiDetail!.episodes!,
|
|
cid: cid ??
|
|
(bangumiItem != null
|
|
? bangumiItem!.episodes!.first.cid
|
|
: widget.bangumiDetail!.episodes!.first.cid),
|
|
changeFuc: bangumiIntroController.changeSeasonOrbangu,
|
|
showEpisodes: widget.showEpisodes,
|
|
newEp: bangumiItem?.newEp,
|
|
)
|
|
],
|
|
],
|
|
)
|
|
: const SizedBox(
|
|
height: 100,
|
|
child: Center(
|
|
child: CircularProgressIndicator(),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget actionGrid(BuildContext context, bangumiIntroController) {
|
|
return LayoutBuilder(
|
|
builder: (BuildContext context, BoxConstraints constraints) {
|
|
return Material(
|
|
color: Theme.of(context).colorScheme.surface,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(top: 1),
|
|
child: SizedBox(
|
|
height: 48,
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: <Widget>[
|
|
Obx(
|
|
() => ActionItem(
|
|
icon: const Icon(FontAwesomeIcons.thumbsUp),
|
|
selectIcon: const Icon(FontAwesomeIcons.solidThumbsUp),
|
|
onTap: () =>
|
|
handleState(bangumiIntroController.actionLikeVideo),
|
|
onLongPress: bangumiIntroController.actionOneThree,
|
|
selectStatus: bangumiIntroController.hasLike.value,
|
|
loadingStatus: false,
|
|
semanticsLabel: '点赞',
|
|
text: !widget.isLoading
|
|
? Utils.numFormat(widget.bangumiDetail!.stat!['likes']!)
|
|
: Utils.numFormat(
|
|
bangumiItem!.stat!['likes']!,
|
|
),
|
|
needAnim: true,
|
|
hasOneThree: bangumiIntroController.hasLike.value &&
|
|
bangumiIntroController.hasCoin.value &&
|
|
bangumiIntroController.hasFav.value,
|
|
callBack: (start) {
|
|
if (start) {
|
|
_coinKey.currentState?.controller?.forward();
|
|
_favKey.currentState?.controller?.forward();
|
|
} else {
|
|
_coinKey.currentState?.controller?.reverse();
|
|
_favKey.currentState?.controller?.reverse();
|
|
}
|
|
},
|
|
),
|
|
),
|
|
Obx(
|
|
() => ActionItem(
|
|
key: _coinKey,
|
|
icon: const Icon(FontAwesomeIcons.b),
|
|
selectIcon: const Icon(FontAwesomeIcons.b),
|
|
onTap: () =>
|
|
handleState(bangumiIntroController.actionCoinVideo),
|
|
selectStatus: bangumiIntroController.hasCoin.value,
|
|
loadingStatus: false,
|
|
semanticsLabel: '投币',
|
|
text: !widget.isLoading
|
|
? Utils.numFormat(widget.bangumiDetail!.stat!['coins']!)
|
|
: Utils.numFormat(
|
|
bangumiItem!.stat!['coins']!,
|
|
),
|
|
needAnim: true,
|
|
),
|
|
),
|
|
Obx(
|
|
() => ActionItem(
|
|
key: _favKey,
|
|
icon: const Icon(FontAwesomeIcons.star),
|
|
selectIcon: const Icon(FontAwesomeIcons.solidStar),
|
|
onTap: () => showFavBottomSheet(),
|
|
onLongPress: () => showFavBottomSheet(type: 'longPress'),
|
|
selectStatus: bangumiIntroController.hasFav.value,
|
|
loadingStatus: false,
|
|
semanticsLabel: '收藏',
|
|
text: !widget.isLoading
|
|
? Utils.numFormat(
|
|
widget.bangumiDetail!.stat!['favorite']!)
|
|
: Utils.numFormat(
|
|
bangumiItem!.stat!['favorite']!,
|
|
),
|
|
needAnim: true,
|
|
),
|
|
),
|
|
ActionItem(
|
|
icon: const Icon(FontAwesomeIcons.comment),
|
|
selectIcon: const Icon(FontAwesomeIcons.reply),
|
|
onTap: () => videoDetailCtr.tabCtr.animateTo(1),
|
|
selectStatus: false,
|
|
loadingStatus: false,
|
|
semanticsLabel: '评论',
|
|
text: !widget.isLoading
|
|
? Utils.numFormat(widget.bangumiDetail!.stat!['reply']!)
|
|
: Utils.numFormat(bangumiItem!.stat!['reply']!),
|
|
),
|
|
ActionItem(
|
|
icon: const Icon(FontAwesomeIcons.shareFromSquare),
|
|
onTap: () => bangumiIntroController.actionShareVideo(),
|
|
selectStatus: false,
|
|
loadingStatus: false,
|
|
semanticsLabel: '转发',
|
|
text: !widget.isLoading
|
|
? Utils.numFormat(widget.bangumiDetail!.stat!['share']!)
|
|
: Utils.numFormat(bangumiItem!.stat!['share']!)),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
});
|
|
}
|
|
|
|
Widget actionRow(BuildContext context, videoIntroController, videoDetailCtr) {
|
|
return Row(children: [
|
|
Obx(
|
|
() => ActionRowItem(
|
|
icon: const Icon(FontAwesomeIcons.thumbsUp),
|
|
onTap: () => handleState(videoIntroController.actionLikeVideo),
|
|
selectStatus: videoIntroController.hasLike.value,
|
|
loadingStatus: widget.isLoading,
|
|
text: !widget.isLoading
|
|
? widget.bangumiDetail!.stat!['likes']!.toString()
|
|
: '-',
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Obx(
|
|
() => ActionRowItem(
|
|
icon: const Icon(FontAwesomeIcons.b),
|
|
onTap: () => handleState(videoIntroController.actionCoinVideo),
|
|
selectStatus: videoIntroController.hasCoin.value,
|
|
loadingStatus: widget.isLoading,
|
|
text: !widget.isLoading
|
|
? widget.bangumiDetail!.stat!['coins']!.toString()
|
|
: '-',
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Obx(
|
|
() => ActionRowItem(
|
|
icon: const Icon(FontAwesomeIcons.heart),
|
|
onTap: () => showFavBottomSheet(),
|
|
onLongPress: () => showFavBottomSheet(type: 'longPress'),
|
|
selectStatus: videoIntroController.hasFav.value,
|
|
loadingStatus: widget.isLoading,
|
|
text: !widget.isLoading
|
|
? widget.bangumiDetail!.stat!['favorite']!.toString()
|
|
: '-',
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
ActionRowItem(
|
|
icon: const Icon(FontAwesomeIcons.comment),
|
|
onTap: () {
|
|
videoDetailCtr.tabCtr.animateTo(1);
|
|
},
|
|
selectStatus: false,
|
|
loadingStatus: widget.isLoading,
|
|
text: !widget.isLoading
|
|
? widget.bangumiDetail!.stat!['reply']!.toString()
|
|
: '-',
|
|
),
|
|
const SizedBox(width: 8),
|
|
ActionRowItem(
|
|
icon: const Icon(FontAwesomeIcons.share),
|
|
onTap: () => videoIntroController.actionShareVideo(),
|
|
selectStatus: false,
|
|
loadingStatus: widget.isLoading,
|
|
text: '转发'),
|
|
]);
|
|
}
|
|
|
|
Widget _followDialog() {
|
|
return AlertDialog(
|
|
clipBehavior: Clip.hardEdge,
|
|
contentPadding: const EdgeInsets.symmetric(vertical: 12),
|
|
content: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
_followDialogItem(3, '看过'),
|
|
_followDialogItem(2, '在看'),
|
|
_followDialogItem(1, '想看'),
|
|
ListTile(
|
|
dense: true,
|
|
title: Padding(
|
|
padding: EdgeInsets.only(left: 10),
|
|
child: Text(
|
|
'取消${bangumiIntroController.type}',
|
|
style: TextStyle(fontSize: 14),
|
|
),
|
|
),
|
|
onTap: () {
|
|
Get.back();
|
|
bangumiIntroController.bangumiDel();
|
|
},
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _followDialogItem(
|
|
int followStatus,
|
|
String text,
|
|
) {
|
|
return ListTile(
|
|
dense: true,
|
|
enabled: bangumiIntroController.followStatus.value != followStatus,
|
|
title: Padding(
|
|
padding: const EdgeInsets.only(left: 10),
|
|
child: Text(
|
|
'标记为 $text',
|
|
style: const TextStyle(fontSize: 14),
|
|
),
|
|
),
|
|
trailing: bangumiIntroController.followStatus.value == followStatus
|
|
? const Icon(size: 22, Icons.check)
|
|
: null,
|
|
onTap: () {
|
|
Get.back();
|
|
bangumiIntroController.bangumiUpdate(followStatus);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
class AreasAndPubTime extends StatelessWidget {
|
|
const AreasAndPubTime({
|
|
super.key,
|
|
required this.widget,
|
|
required this.bangumiItem,
|
|
required this.t,
|
|
});
|
|
|
|
final BangumiInfo widget;
|
|
final BangumiInfoModel? bangumiItem;
|
|
final ThemeData t;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
children: [
|
|
Text(
|
|
!widget.isLoading
|
|
? (widget.bangumiDetail!.areas!.isNotEmpty
|
|
? widget.bangumiDetail!.areas!.first['name']
|
|
: '')
|
|
: (bangumiItem!.areas!.isNotEmpty
|
|
? bangumiItem!.areas!.first['name']
|
|
: ''),
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
color: t.colorScheme.outline,
|
|
),
|
|
),
|
|
const SizedBox(width: 6),
|
|
Text(
|
|
!widget.isLoading
|
|
? widget.bangumiDetail!.publish!['pub_time_show']
|
|
: bangumiItem!.publish!['pub_time_show'],
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
color: t.colorScheme.outline,
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|
|
class NewEpDesc extends StatelessWidget {
|
|
const NewEpDesc({
|
|
super.key,
|
|
required this.widget,
|
|
required this.bangumiItem,
|
|
required this.t,
|
|
});
|
|
|
|
final BangumiInfo widget;
|
|
final BangumiInfoModel? bangumiItem;
|
|
final ThemeData t;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Text(
|
|
!widget.isLoading
|
|
? widget.bangumiDetail!.newEp!['desc']
|
|
: bangumiItem!.newEp!['desc'],
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
color: t.colorScheme.outline,
|
|
),
|
|
);
|
|
}
|
|
}
|