mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
257 lines
8.5 KiB
Dart
257 lines
8.5 KiB
Dart
import 'package:PiliPlus/common/widgets/icon_button.dart';
|
|
import 'package:PiliPlus/common/widgets/image_save.dart';
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:PiliPlus/common/constants.dart';
|
|
import 'package:PiliPlus/common/widgets/stat/danmu.dart';
|
|
import 'package:PiliPlus/common/widgets/stat/view.dart';
|
|
import 'package:PiliPlus/http/search.dart';
|
|
import 'package:PiliPlus/http/video.dart';
|
|
import 'package:PiliPlus/models/common/search_type.dart';
|
|
import 'package:PiliPlus/utils/id_utils.dart';
|
|
import 'package:PiliPlus/utils/utils.dart';
|
|
import 'package:PiliPlus/common/widgets/network_img_layer.dart';
|
|
import '../../../common/widgets/badge.dart';
|
|
|
|
// 收藏视频卡片 - 水平布局
|
|
class FavVideoCardH extends StatelessWidget {
|
|
final dynamic videoItem;
|
|
final Function? callFn;
|
|
final int? searchType;
|
|
final GestureTapCallback? onTap;
|
|
final GestureLongPressCallback? onLongPress;
|
|
final bool isOwner;
|
|
|
|
const FavVideoCardH({
|
|
super.key,
|
|
required this.videoItem,
|
|
this.callFn,
|
|
this.searchType,
|
|
this.onTap,
|
|
this.onLongPress,
|
|
this.isOwner = false,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
int id = videoItem.id;
|
|
String bvid = videoItem.bvid ?? IdUtils.av2bv(id);
|
|
return InkWell(
|
|
onTap: () async {
|
|
if (onTap != null) {
|
|
onTap!();
|
|
return;
|
|
}
|
|
String? epId;
|
|
if (videoItem.type == 24) {
|
|
videoItem.cid = await SearchHttp.ab2c(bvid: bvid);
|
|
dynamic seasonId = videoItem.ogv['season_id'];
|
|
epId = videoItem.epId;
|
|
Utils.viewBangumi(seasonId: seasonId, epId: epId);
|
|
return;
|
|
} else if (videoItem.page == 0 || videoItem.page > 1) {
|
|
var result = await VideoHttp.videoIntro(bvid: bvid);
|
|
if (result['status']) {
|
|
epId = result['data'].epId;
|
|
} else {
|
|
SmartDialog.showToast(result['msg']);
|
|
}
|
|
}
|
|
|
|
Map<String, String> parameters = {
|
|
'bvid': bvid,
|
|
'cid': videoItem.cid.toString(),
|
|
if (epId?.isNotEmpty == true) 'epId': epId!,
|
|
};
|
|
// if (seasonId != null) {
|
|
// parameters['seasonId'] = seasonId.toString();
|
|
// }
|
|
Get.toNamed(
|
|
'/video',
|
|
parameters: parameters,
|
|
arguments: {
|
|
'videoItem': videoItem,
|
|
'heroTag': Utils.makeHeroTag(id),
|
|
'videoType':
|
|
epId != null ? SearchType.media_bangumi : SearchType.video,
|
|
},
|
|
);
|
|
},
|
|
onLongPress: () {
|
|
if (onLongPress != null) {
|
|
onLongPress!();
|
|
} else {
|
|
imageSaveDialog(
|
|
context: context,
|
|
title: videoItem.title,
|
|
cover: videoItem.pic,
|
|
);
|
|
}
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: StyleString.safeSpace,
|
|
vertical: 5,
|
|
),
|
|
child: LayoutBuilder(
|
|
builder: (context, boxConstraints) {
|
|
double width =
|
|
(boxConstraints.maxWidth - StyleString.cardSpace * 6) / 2;
|
|
return SizedBox(
|
|
height: width / StyleString.aspectRatio,
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
AspectRatio(
|
|
aspectRatio: StyleString.aspectRatio,
|
|
child: LayoutBuilder(
|
|
builder: (context, boxConstraints) {
|
|
double maxWidth = boxConstraints.maxWidth;
|
|
double maxHeight = boxConstraints.maxHeight;
|
|
return Stack(
|
|
children: [
|
|
NetworkImgLayer(
|
|
src: videoItem.pic,
|
|
width: maxWidth,
|
|
height: maxHeight,
|
|
),
|
|
PBadge(
|
|
text: Utils.timeFormat(videoItem.duration!),
|
|
right: 6.0,
|
|
bottom: 6.0,
|
|
type: 'gray',
|
|
),
|
|
if (videoItem.ogv != null) ...[
|
|
PBadge(
|
|
text: videoItem.ogv['type_name'],
|
|
top: 6.0,
|
|
right: 6.0,
|
|
bottom: null,
|
|
left: null,
|
|
),
|
|
],
|
|
],
|
|
);
|
|
},
|
|
),
|
|
),
|
|
const SizedBox(width: 10),
|
|
videoContent(context),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget videoContent(context) {
|
|
return Expanded(
|
|
child: Stack(
|
|
children: [
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
videoItem.title,
|
|
textAlign: TextAlign.start,
|
|
style: const TextStyle(
|
|
letterSpacing: 0.3,
|
|
),
|
|
maxLines: 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
if (videoItem.ogv != null) ...[
|
|
Text(
|
|
videoItem.intro,
|
|
style: TextStyle(
|
|
fontSize: Theme.of(context).textTheme.labelMedium!.fontSize,
|
|
color: Theme.of(context).colorScheme.outline,
|
|
),
|
|
),
|
|
],
|
|
const Spacer(),
|
|
Text(
|
|
Utils.dateFormat(videoItem.favTime),
|
|
style: TextStyle(
|
|
fontSize: 11, color: Theme.of(context).colorScheme.outline),
|
|
),
|
|
if (videoItem.owner.name != '') ...[
|
|
Text(
|
|
videoItem.owner.name,
|
|
style: TextStyle(
|
|
fontSize: Theme.of(context).textTheme.labelMedium!.fontSize,
|
|
color: Theme.of(context).colorScheme.outline,
|
|
),
|
|
),
|
|
],
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 2),
|
|
child: Row(
|
|
children: [
|
|
statView(
|
|
context: context,
|
|
theme: 'gray',
|
|
view: videoItem.cntInfo['play'],
|
|
),
|
|
const SizedBox(width: 8),
|
|
statDanMu(
|
|
context: context,
|
|
theme: 'gray',
|
|
danmu: videoItem.cntInfo['danmaku'],
|
|
),
|
|
const Spacer(),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
if (searchType != 1 && isOwner)
|
|
Positioned(
|
|
right: 0,
|
|
bottom: 0,
|
|
child: iconButton(
|
|
context: context,
|
|
icon: Icons.clear,
|
|
tooltip: '取消收藏',
|
|
iconColor: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
bgColor: Colors.transparent,
|
|
onPressed: () {
|
|
showDialog(
|
|
context: Get.context!,
|
|
builder: (context) {
|
|
return AlertDialog(
|
|
title: const Text('提示'),
|
|
content: const Text('要取消收藏吗?'),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: Get.back,
|
|
child: Text(
|
|
'取消',
|
|
style: TextStyle(
|
|
color: Theme.of(context).colorScheme.outline),
|
|
),
|
|
),
|
|
TextButton(
|
|
onPressed: () async {
|
|
await callFn?.call();
|
|
Get.back();
|
|
},
|
|
child: const Text('确定取消'),
|
|
)
|
|
],
|
|
);
|
|
},
|
|
);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|