280 lines
9.8 KiB
Dart
280 lines
9.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:pilipala/common/widgets/network_img_layer.dart';
|
|
import 'package:pilipala/models/user/fav_folder.dart';
|
|
import 'package:pilipala/pages/media/index.dart';
|
|
import 'package:pilipala/utils/utils.dart';
|
|
|
|
class MediaPage extends StatefulWidget {
|
|
const MediaPage({super.key});
|
|
|
|
@override
|
|
State<MediaPage> createState() => _MediaPageState();
|
|
}
|
|
|
|
class _MediaPageState extends State<MediaPage>
|
|
with AutomaticKeepAliveClientMixin {
|
|
late MediaController mediaController;
|
|
late Future _futureBuilderFuture;
|
|
|
|
@override
|
|
bool get wantKeepAlive => true;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
mediaController = Get.put(MediaController());
|
|
_futureBuilderFuture = mediaController.queryFavFolder();
|
|
|
|
mediaController.userLogin.listen((status) {
|
|
setState(() {
|
|
_futureBuilderFuture = mediaController.queryFavFolder();
|
|
});
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
super.build(context);
|
|
Color primary = Theme.of(context).colorScheme.primary;
|
|
return Scaffold(
|
|
appBar: AppBar(toolbarHeight: 30),
|
|
body: Column(
|
|
children: [
|
|
ListTile(
|
|
leading: null,
|
|
title: Padding(
|
|
padding: const EdgeInsets.only(left: 20),
|
|
child: Text(
|
|
'媒体库',
|
|
style: TextStyle(
|
|
fontSize: Theme.of(context).textTheme.titleLarge!.fontSize,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
for (var i in mediaController.list) ...[
|
|
ListTile(
|
|
onTap: () => i['onTap'](),
|
|
dense: true,
|
|
leading: Padding(
|
|
padding: const EdgeInsets.only(left: 15),
|
|
child: Icon(
|
|
i['icon'],
|
|
color: primary,
|
|
),
|
|
),
|
|
contentPadding:
|
|
const EdgeInsets.only(left: 15, top: 2, bottom: 2),
|
|
minLeadingWidth: 0,
|
|
title: Text(
|
|
i['title'],
|
|
style: const TextStyle(fontSize: 15),
|
|
),
|
|
),
|
|
],
|
|
Obx(() => mediaController.userLogin.value
|
|
? favFolder(mediaController, context)
|
|
: const SizedBox())
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget favFolder(mediaController, context) {
|
|
return Column(
|
|
children: [
|
|
Divider(
|
|
height: 35,
|
|
color: Theme.of(context).dividerColor.withOpacity(0.1),
|
|
),
|
|
ListTile(
|
|
onTap: () {},
|
|
leading: null,
|
|
dense: true,
|
|
title: Padding(
|
|
padding: const EdgeInsets.only(left: 10),
|
|
child: Obx(
|
|
() => Text.rich(
|
|
TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: '收藏夹 ',
|
|
style: TextStyle(
|
|
fontSize:
|
|
Theme.of(context).textTheme.titleMedium!.fontSize,
|
|
fontWeight: FontWeight.bold),
|
|
),
|
|
if (mediaController.favFolderData.value.count != null)
|
|
TextSpan(
|
|
text: mediaController.favFolderData.value.count
|
|
.toString(),
|
|
style: TextStyle(
|
|
fontSize:
|
|
Theme.of(context).textTheme.titleSmall!.fontSize,
|
|
color: Theme.of(context).colorScheme.primary,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
trailing: IconButton(
|
|
onPressed: () {
|
|
setState(() {
|
|
_futureBuilderFuture = mediaController.queryFavFolder();
|
|
});
|
|
},
|
|
icon: const Icon(
|
|
Icons.refresh,
|
|
size: 20,
|
|
),
|
|
),
|
|
),
|
|
// const SizedBox(height: 10),
|
|
SizedBox(
|
|
width: double.infinity,
|
|
height: 170 * MediaQuery.of(context).textScaleFactor,
|
|
child: FutureBuilder(
|
|
future: _futureBuilderFuture,
|
|
builder: (context, snapshot) {
|
|
if (snapshot.connectionState == ConnectionState.done) {
|
|
if (snapshot.data == null) {
|
|
return const SizedBox();
|
|
}
|
|
Map data = snapshot.data as Map;
|
|
if (data['status']) {
|
|
List favFolderList =
|
|
mediaController.favFolderData.value.list!;
|
|
int favFolderCount =
|
|
mediaController.favFolderData.value.count!;
|
|
bool flag = favFolderCount > favFolderList.length;
|
|
return Obx(() => ListView.builder(
|
|
itemCount:
|
|
mediaController.favFolderData.value.list!.length +
|
|
(flag ? 1 : 0),
|
|
itemBuilder: (context, index) {
|
|
if (flag && index == favFolderList.length) {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(
|
|
right: 14, bottom: 35),
|
|
child: Center(
|
|
child: IconButton(
|
|
style: ButtonStyle(
|
|
padding: MaterialStateProperty.all(
|
|
EdgeInsets.zero),
|
|
backgroundColor:
|
|
MaterialStateProperty.resolveWith(
|
|
(states) {
|
|
return Theme.of(context)
|
|
.colorScheme
|
|
.primaryContainer
|
|
.withOpacity(0.5);
|
|
}),
|
|
),
|
|
onPressed: () => Get.toNamed('/fav'),
|
|
icon: Icon(
|
|
Icons.arrow_forward_ios,
|
|
size: 18,
|
|
color: Theme.of(context)
|
|
.colorScheme
|
|
.primary,
|
|
),
|
|
),
|
|
));
|
|
} else {
|
|
return FavFolderItem(
|
|
item: mediaController
|
|
.favFolderData.value.list![index],
|
|
index: index);
|
|
}
|
|
},
|
|
scrollDirection: Axis.horizontal,
|
|
));
|
|
} else {
|
|
return SizedBox(
|
|
height: 160,
|
|
child: Center(child: Text(data['msg'])),
|
|
);
|
|
}
|
|
} else {
|
|
// 骨架屏
|
|
return const SizedBox();
|
|
}
|
|
}),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|
|
class FavFolderItem extends StatelessWidget {
|
|
const FavFolderItem({super.key, this.item, this.index});
|
|
final FavFolderItemData? item;
|
|
final int? index;
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
String heroTag = Utils.makeHeroTag(item!.fid);
|
|
|
|
return Container(
|
|
margin: EdgeInsets.only(left: index == 0 ? 20 : 0, right: 14),
|
|
child: GestureDetector(
|
|
onTap: () => Get.toNamed('/favDetail',
|
|
arguments: item,
|
|
parameters: {'mediaId': item!.id.toString(), 'heroTag': heroTag}),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const SizedBox(height: 12),
|
|
Container(
|
|
width: 180,
|
|
height: 110,
|
|
margin: const EdgeInsets.only(bottom: 8),
|
|
clipBehavior: Clip.hardEdge,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(12),
|
|
color: Theme.of(context).colorScheme.onInverseSurface,
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Theme.of(context).colorScheme.onInverseSurface,
|
|
offset: const Offset(4, -12), // 阴影与容器的距离
|
|
blurRadius: 0.0, // 高斯的标准偏差与盒子的形状卷积。
|
|
spreadRadius: 0.0, // 在应用模糊之前,框应该膨胀的量。
|
|
),
|
|
],
|
|
),
|
|
child: LayoutBuilder(
|
|
builder: (context, BoxConstraints box) {
|
|
return Hero(
|
|
tag: heroTag,
|
|
child: NetworkImgLayer(
|
|
src: item!.cover,
|
|
width: box.maxWidth,
|
|
height: box.maxHeight,
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
Text(
|
|
' ${item!.title}',
|
|
overflow: TextOverflow.fade,
|
|
maxLines: 1,
|
|
),
|
|
Text(
|
|
' 共${item!.mediaCount}条视频',
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.labelSmall!
|
|
.copyWith(color: Theme.of(context).colorScheme.outline),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|