mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
475 lines
15 KiB
Dart
475 lines
15 KiB
Dart
import 'dart:math';
|
|
|
|
import 'package:PiliPlus/common/constants.dart';
|
|
import 'package:PiliPlus/common/widgets/badge.dart';
|
|
import 'package:PiliPlus/common/widgets/button/icon_button.dart';
|
|
import 'package:PiliPlus/common/widgets/dialog/dialog.dart';
|
|
import 'package:PiliPlus/common/widgets/image/network_img_layer.dart';
|
|
import 'package:PiliPlus/common/widgets/stat/stat.dart';
|
|
import 'package:PiliPlus/models/common/image_preview_type.dart';
|
|
import 'package:PiliPlus/models/common/image_type.dart';
|
|
import 'package:PiliPlus/models/common/stat_type.dart';
|
|
import 'package:PiliPlus/models_new/pgc/pgc_info_model/result.dart';
|
|
import 'package:PiliPlus/pages/video/controller.dart';
|
|
import 'package:PiliPlus/pages/video/introduction/pgc/controller.dart';
|
|
import 'package:PiliPlus/pages/video/introduction/pgc/widgets/pgc_panel.dart';
|
|
import 'package:PiliPlus/pages/video/introduction/ugc/widgets/action_item.dart';
|
|
import 'package:PiliPlus/utils/extension.dart';
|
|
import 'package:PiliPlus/utils/num_utils.dart';
|
|
import 'package:PiliPlus/utils/page_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class PgcIntroPage extends StatefulWidget {
|
|
final int? cid;
|
|
final String heroTag;
|
|
final Function showEpisodes;
|
|
final Function showIntroDetail;
|
|
final double maxWidth;
|
|
final bool isLandscape;
|
|
|
|
const PgcIntroPage({
|
|
super.key,
|
|
this.cid,
|
|
required this.heroTag,
|
|
required this.showEpisodes,
|
|
required this.showIntroDetail,
|
|
required this.maxWidth,
|
|
required this.isLandscape,
|
|
});
|
|
|
|
@override
|
|
State<PgcIntroPage> createState() => _PgcIntroPageState();
|
|
}
|
|
|
|
class _PgcIntroPageState extends State<PgcIntroPage> {
|
|
late final PgcIntroController introController;
|
|
late final VideoDetailController videoDetailCtr;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
introController = Get.putOrFind(
|
|
PgcIntroController.new,
|
|
tag: widget.heroTag,
|
|
);
|
|
videoDetailCtr = Get.find<VideoDetailController>(tag: widget.heroTag);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final ThemeData theme = Theme.of(context);
|
|
final item = introController.pgcItem;
|
|
final isLandscape = widget.isLandscape;
|
|
Widget sliver = SliverToBoxAdapter(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
spacing: 10,
|
|
children: [
|
|
_buildCover(theme, isLandscape, item),
|
|
Expanded(child: _buildInfoPanel(isLandscape, theme, item)),
|
|
],
|
|
),
|
|
const SizedBox(height: 6),
|
|
// 点赞收藏转发 布局样式2
|
|
if (introController.isPgc) actionGrid(theme, item, introController),
|
|
// 番剧分集
|
|
if (item.episodes?.isNotEmpty == true)
|
|
PgcPanel(
|
|
heroTag: widget.heroTag,
|
|
pages: item.episodes!,
|
|
cid: videoDetailCtr.cid.value,
|
|
onChangeEpisode: introController.onChangeEpisode,
|
|
showEpisodes: widget.showEpisodes,
|
|
newEp: item.newEp,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
if (!introController.isPgc) {
|
|
final breif = _buildBreif(item);
|
|
if (breif != null) {
|
|
sliver = SliverMainAxisGroup(
|
|
slivers: [
|
|
sliver,
|
|
breif,
|
|
],
|
|
);
|
|
}
|
|
}
|
|
return SliverPadding(
|
|
padding:
|
|
const EdgeInsets.all(StyleString.safeSpace) +
|
|
const EdgeInsets.only(bottom: 50),
|
|
sliver: sliver,
|
|
);
|
|
}
|
|
|
|
Widget? _buildBreif(PgcInfoModel item) {
|
|
final img = item.brief?.img;
|
|
if (img != null && img.isNotEmpty) {
|
|
final maxWidth = widget.maxWidth - 24;
|
|
double padding = max(0, maxWidth - 400);
|
|
final imgWidth = maxWidth - padding;
|
|
padding = padding / 2;
|
|
return SliverPadding(
|
|
padding: EdgeInsetsGeometry.only(
|
|
top: 10,
|
|
left: padding,
|
|
right: padding,
|
|
),
|
|
sliver: SliverMainAxisGroup(
|
|
slivers: img.map((e) {
|
|
return SliverToBoxAdapter(
|
|
child: NetworkImgLayer(
|
|
radius: 0,
|
|
src: e.url,
|
|
width: imgWidth,
|
|
height: imgWidth * e.aspectRatio,
|
|
),
|
|
);
|
|
}).toList(),
|
|
),
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Widget _buildCover(ThemeData theme, bool isLandscape, PgcInfoModel item) {
|
|
return Stack(
|
|
clipBehavior: Clip.none,
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () {
|
|
PageUtils.imageView(
|
|
imgList: [SourceModel(url: item.cover!)],
|
|
);
|
|
},
|
|
child: Hero(
|
|
tag: item.cover!,
|
|
child: NetworkImgLayer(
|
|
width: 115,
|
|
height: 153,
|
|
src: item.cover!,
|
|
semanticsLabel: '封面',
|
|
),
|
|
),
|
|
),
|
|
if (item.rating != null)
|
|
PBadge(
|
|
text: '评分 ${item.rating!.score!}',
|
|
top: null,
|
|
right: 6,
|
|
bottom: 6,
|
|
left: null,
|
|
),
|
|
if (!introController.isPgc)
|
|
Positioned(
|
|
right: 6,
|
|
bottom: 6,
|
|
child: Obx(() {
|
|
final isFav = introController.isFav.value;
|
|
return iconButton(
|
|
size: 28,
|
|
iconSize: 26,
|
|
tooltip: '${isFav ? '取消' : ''}收藏',
|
|
onPressed: () => introController.onFavPugv(isFav),
|
|
icon: isFav
|
|
? const Icon(Icons.star_rounded)
|
|
: const Icon(Icons.star_border_rounded),
|
|
bgColor: isFav
|
|
? theme.colorScheme.secondaryContainer
|
|
: theme.colorScheme.onInverseSurface,
|
|
iconColor: isFav
|
|
? theme.colorScheme.onSecondaryContainer
|
|
: theme.colorScheme.onSurfaceVariant,
|
|
);
|
|
}),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildInfoPanel(bool isLandscape, ThemeData theme, PgcInfoModel item) {
|
|
if (introController.isPgc) {
|
|
Widget subBtn() => Obx(
|
|
() {
|
|
final isFollowed = introController.isFollowed.value;
|
|
final followStatus = introController.followStatus.value;
|
|
return FilledButton.tonal(
|
|
style: FilledButton.styleFrom(
|
|
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 20,
|
|
vertical: 10,
|
|
),
|
|
visualDensity: VisualDensity.compact,
|
|
foregroundColor: isFollowed ? theme.colorScheme.outline : null,
|
|
backgroundColor: isFollowed
|
|
? theme.colorScheme.onInverseSurface
|
|
: null,
|
|
),
|
|
onPressed: followStatus == -1
|
|
? null
|
|
: () {
|
|
if (isFollowed) {
|
|
showPgcFollowDialog(
|
|
context: context,
|
|
type: introController.pgcType,
|
|
followStatus: followStatus,
|
|
onUpdateStatus: (followStatus) {
|
|
if (followStatus == -1) {
|
|
introController.pgcDel();
|
|
} else {
|
|
introController.pgcUpdate(
|
|
followStatus,
|
|
);
|
|
}
|
|
},
|
|
);
|
|
} else {
|
|
introController.pgcAdd();
|
|
}
|
|
},
|
|
child: Text(
|
|
isFollowed
|
|
? '已${introController.pgcType}'
|
|
: introController.pgcType,
|
|
),
|
|
);
|
|
},
|
|
);
|
|
Widget title() => Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
spacing: 20,
|
|
children: [
|
|
Expanded(
|
|
child: Text(
|
|
item.title!,
|
|
style: const TextStyle(fontSize: 16),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
subBtn(),
|
|
],
|
|
);
|
|
List<Widget> desc() => [
|
|
Text(
|
|
item.newEp!.desc!,
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
color: theme.colorScheme.outline,
|
|
),
|
|
),
|
|
Text.rich(
|
|
TextSpan(
|
|
children: [
|
|
if (item.areas?.isNotEmpty == true)
|
|
TextSpan(text: '${item.areas!.first.name!} '),
|
|
TextSpan(
|
|
text: item.publish!.pubTimeShow!,
|
|
),
|
|
],
|
|
),
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
color: theme.colorScheme.outline,
|
|
),
|
|
),
|
|
];
|
|
Widget stat() => Wrap(
|
|
spacing: 6,
|
|
runSpacing: 2,
|
|
children: [
|
|
StatWidget(
|
|
type: StatType.play,
|
|
value: item.stat!.view,
|
|
),
|
|
StatWidget(
|
|
type: StatType.danmaku,
|
|
value: item.stat!.danmaku,
|
|
),
|
|
if (isLandscape) ...desc(),
|
|
],
|
|
);
|
|
return GestureDetector(
|
|
onTap: () => widget.showIntroDetail(
|
|
item,
|
|
introController.videoTags.value,
|
|
),
|
|
behavior: HitTestBehavior.opaque,
|
|
child: SizedBox(
|
|
height: 153,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
title(),
|
|
stat(),
|
|
const SizedBox(height: 5),
|
|
if (!isLandscape) ...desc(),
|
|
const SizedBox(height: 5),
|
|
Expanded(
|
|
child: Text(
|
|
'简介:${item.evaluate}',
|
|
style: TextStyle(
|
|
fontSize: 13,
|
|
color: theme.colorScheme.outline,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
// pugv
|
|
Widget upInfo(int mid, String avatar, String name, {String? role}) =>
|
|
GestureDetector(
|
|
behavior: HitTestBehavior.opaque,
|
|
onTap: () => Get.toNamed('/member?mid=$mid'),
|
|
child: Row(
|
|
spacing: 8,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
NetworkImgLayer(
|
|
src: avatar,
|
|
width: 35,
|
|
height: 35,
|
|
type: ImageType.avatar,
|
|
),
|
|
Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(name),
|
|
if (role?.isNotEmpty == true)
|
|
Text(
|
|
role!,
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
color: theme.colorScheme.outline,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
);
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
if (item.cooperators?.isNotEmpty == true) ...[
|
|
SingleChildScrollView(
|
|
scrollDirection: Axis.horizontal,
|
|
child: Row(
|
|
spacing: 25,
|
|
children: item.cooperators!.map((e) {
|
|
return upInfo(e.mid!, e.avatar!, e.nickName!, role: e.role);
|
|
}).toList(),
|
|
),
|
|
),
|
|
const SizedBox(height: 6),
|
|
] else if (item.upInfo?.mid != null) ...[
|
|
upInfo(
|
|
item.upInfo!.mid!,
|
|
item.upInfo!.avatar!,
|
|
item.upInfo!.uname!,
|
|
),
|
|
const SizedBox(height: 6),
|
|
],
|
|
Text(
|
|
item.title!,
|
|
style: const TextStyle(fontSize: 16),
|
|
),
|
|
if (item.subtitle?.isNotEmpty == true) ...[
|
|
const SizedBox(height: 5),
|
|
Text(
|
|
item.subtitle!,
|
|
style: TextStyle(
|
|
fontSize: 13,
|
|
color: theme.colorScheme.onSurfaceVariant,
|
|
),
|
|
),
|
|
],
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget actionGrid(
|
|
ThemeData theme,
|
|
PgcInfoModel item,
|
|
PgcIntroController introController,
|
|
) {
|
|
return SizedBox(
|
|
height: 48,
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Obx(
|
|
() => ActionItem(
|
|
animation: introController.tripleAnimation,
|
|
icon: const Icon(FontAwesomeIcons.thumbsUp),
|
|
selectIcon: const Icon(FontAwesomeIcons.solidThumbsUp),
|
|
selectStatus: introController.hasLike.value,
|
|
semanticsLabel: '点赞',
|
|
text: NumUtils.numFormat(item.stat!.like),
|
|
onStartTriple: introController.onStartTriple,
|
|
onCancelTriple: introController.onCancelTriple,
|
|
),
|
|
),
|
|
Obx(
|
|
() => ActionItem(
|
|
animation: introController.tripleAnimation,
|
|
icon: const Icon(FontAwesomeIcons.b),
|
|
selectIcon: const Icon(FontAwesomeIcons.b),
|
|
onTap: introController.actionCoinVideo,
|
|
selectStatus: introController.hasCoin,
|
|
semanticsLabel: '投币',
|
|
text: NumUtils.numFormat(item.stat!.coin),
|
|
),
|
|
),
|
|
Obx(
|
|
() => ActionItem(
|
|
animation: introController.tripleAnimation,
|
|
icon: const Icon(FontAwesomeIcons.star),
|
|
selectIcon: const Icon(FontAwesomeIcons.solidStar),
|
|
onTap: () => introController.showFavBottomSheet(context),
|
|
onLongPress: () => introController.showFavBottomSheet(
|
|
context,
|
|
isLongPress: true,
|
|
),
|
|
selectStatus: introController.hasFav.value,
|
|
semanticsLabel: '收藏',
|
|
text: NumUtils.numFormat(item.stat!.favorite),
|
|
),
|
|
),
|
|
Obx(
|
|
() => ActionItem(
|
|
icon: const Icon(FontAwesomeIcons.clock),
|
|
selectIcon: const Icon(FontAwesomeIcons.solidClock),
|
|
onTap: () =>
|
|
introController.handleAction(introController.viewLater),
|
|
selectStatus: introController.hasLater.value,
|
|
semanticsLabel: '再看',
|
|
text: '再看',
|
|
),
|
|
),
|
|
ActionItem(
|
|
icon: const Icon(FontAwesomeIcons.shareFromSquare),
|
|
onTap: () => introController.actionShareVideo(context),
|
|
selectStatus: false,
|
|
semanticsLabel: '转发',
|
|
text: NumUtils.numFormat(item.stat!.share),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|