155 lines
5.7 KiB
Dart
155 lines
5.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:pilipala/common/constants.dart';
|
|
import 'package:pilipala/common/widgets/network_img_layer.dart';
|
|
import 'package:pilipala/utils/utils.dart';
|
|
|
|
class HistoryItem extends StatelessWidget {
|
|
var videoItem;
|
|
HistoryItem({super.key, required this.videoItem});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
int aid = videoItem.history.oid;
|
|
String heroTag = Utils.makeHeroTag(aid);
|
|
return InkWell(
|
|
onTap: () async {
|
|
await Future.delayed(const Duration(milliseconds: 200));
|
|
Get.toNamed('/video?aid=$aid&cid=${videoItem.history.cid}',
|
|
arguments: {'heroTag': heroTag, 'pic': videoItem.cover});
|
|
},
|
|
child: Column(
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.fromLTRB(
|
|
StyleString.cardSpace, 7, StyleString.cardSpace, 7),
|
|
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;
|
|
double PR = MediaQuery.of(context).devicePixelRatio;
|
|
return Stack(
|
|
children: [
|
|
Hero(
|
|
tag: heroTag,
|
|
child: NetworkImgLayer(
|
|
// src: videoItem['pic'] +
|
|
// '@${(maxWidth * 2).toInt()}w',
|
|
src: videoItem.cover + '@.webp',
|
|
width: maxWidth,
|
|
height: maxHeight,
|
|
),
|
|
),
|
|
Positioned(
|
|
right: 4,
|
|
bottom: 4,
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 1, horizontal: 6),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(4),
|
|
color: Colors.black54.withOpacity(0.4)),
|
|
child: Text(
|
|
Utils.timeFormat(videoItem.duration!),
|
|
style: const TextStyle(
|
|
fontSize: 11, color: Colors.white),
|
|
),
|
|
),
|
|
)
|
|
],
|
|
);
|
|
},
|
|
),
|
|
),
|
|
VideoContent(videoItem: videoItem)
|
|
],
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
Divider(
|
|
height: 1,
|
|
indent: 8,
|
|
endIndent: 12,
|
|
color: Theme.of(context).dividerColor.withOpacity(0.08),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class VideoContent extends StatelessWidget {
|
|
final videoItem;
|
|
const VideoContent({super.key, required this.videoItem});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Expanded(
|
|
child: Padding(
|
|
padding: const EdgeInsets.fromLTRB(10, 2, 6, 0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
videoItem.title,
|
|
textAlign: TextAlign.start,
|
|
style: TextStyle(
|
|
fontSize: Theme.of(context).textTheme.titleSmall!.fontSize,
|
|
fontWeight: FontWeight.w500),
|
|
maxLines: videoItem.videos > 1 ? 1 : 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
if (videoItem.videos > 1)
|
|
Text(
|
|
videoItem.showTitle,
|
|
textAlign: TextAlign.start,
|
|
style: TextStyle(
|
|
fontSize: Theme.of(context).textTheme.titleSmall!.fontSize,
|
|
fontWeight: FontWeight.w400,
|
|
color: Theme.of(context).colorScheme.outline),
|
|
maxLines: 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
const Spacer(),
|
|
Row(
|
|
children: [
|
|
Text(
|
|
videoItem.authorName,
|
|
style: TextStyle(
|
|
fontSize: Theme.of(context).textTheme.labelSmall!.fontSize,
|
|
color: Theme.of(context).colorScheme.outline,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Row(
|
|
children: [
|
|
Text(
|
|
Utils.dateFormat(videoItem.viewAt!),
|
|
style: TextStyle(
|
|
fontSize: 11,
|
|
color: Theme.of(context).colorScheme.outline),
|
|
)
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|