mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
82 lines
2.7 KiB
Dart
82 lines
2.7 KiB
Dart
import 'package:PiliPlus/common/constants.dart';
|
|
import 'package:PiliPlus/common/skeleton/video_card_h.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/pages/subscription/widgets/item.dart';
|
|
import 'package:PiliPlus/utils/grid.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:PiliPlus/common/widgets/http_error.dart';
|
|
import 'controller.dart';
|
|
|
|
class SubPage extends StatefulWidget {
|
|
const SubPage({super.key});
|
|
|
|
@override
|
|
State<SubPage> createState() => _SubPageState();
|
|
}
|
|
|
|
class _SubPageState extends State<SubPage> {
|
|
final SubController _subController = Get.put(SubController());
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: Text('我的订阅')),
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
Obx(() => _buildBody(_subController.loadingState.value)),
|
|
SliverToBoxAdapter(
|
|
child: SizedBox(
|
|
height: MediaQuery.of(context).padding.bottom + 80,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildBody(LoadingState loadingState) {
|
|
return switch (loadingState) {
|
|
Loading() => SliverGrid(
|
|
gridDelegate: SliverGridDelegateWithExtentAndRatio(
|
|
mainAxisSpacing: 2,
|
|
maxCrossAxisExtent: Grid.mediumCardWidth * 2,
|
|
childAspectRatio: StyleString.aspectRatio * 2.2,
|
|
),
|
|
delegate: SliverChildBuilderDelegate(
|
|
(context, index) => const VideoCardHSkeleton(),
|
|
childCount: 10,
|
|
),
|
|
),
|
|
Success() => (loadingState.response as List?)?.isNotEmpty == true
|
|
? SliverGrid(
|
|
gridDelegate: SliverGridDelegateWithExtentAndRatio(
|
|
mainAxisSpacing: 2,
|
|
maxCrossAxisExtent: Grid.mediumCardWidth * 2,
|
|
childAspectRatio: StyleString.aspectRatio * 2.2,
|
|
),
|
|
delegate: SliverChildBuilderDelegate(
|
|
childCount: loadingState.response.length,
|
|
(BuildContext context, int index) {
|
|
if (index == loadingState.response.length - 1) {
|
|
_subController.onLoadMore();
|
|
}
|
|
return SubItem(
|
|
subFolderItem: loadingState.response[index],
|
|
cancelSub: _subController.cancelSub,
|
|
);
|
|
},
|
|
),
|
|
)
|
|
: HttpError(
|
|
callback: _subController.onReload,
|
|
),
|
|
Error() => HttpError(
|
|
errMsg: loadingState.errMsg,
|
|
callback: _subController.onReload,
|
|
),
|
|
LoadingState() => throw UnimplementedError(),
|
|
};
|
|
}
|
|
}
|