mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
74 lines
2.4 KiB
Dart
74 lines
2.4 KiB
Dart
import 'package:PiliPlus/common/widgets/loading_widget/http_error.dart';
|
|
import 'package:PiliPlus/common/widgets/loading_widget/loading_widget.dart';
|
|
import 'package:PiliPlus/common/widgets/refresh_indicator.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/models_new/dynamic/dyn_topic_top/topic_item.dart';
|
|
import 'package:PiliPlus/pages/dynamics_select_topic/widgets/item.dart';
|
|
import 'package:PiliPlus/pages/dynamics_topic_rcmd/controller.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class DynTopicRcmdPage extends StatefulWidget {
|
|
const DynTopicRcmdPage({super.key});
|
|
|
|
@override
|
|
State<DynTopicRcmdPage> createState() => _DynTopicRcmdPageState();
|
|
}
|
|
|
|
class _DynTopicRcmdPageState extends State<DynTopicRcmdPage> {
|
|
final DynTopicRcmdController _controller = Get.put(DynTopicRcmdController());
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: const Text('话题')),
|
|
body: SafeArea(
|
|
top: false,
|
|
bottom: false,
|
|
child: refreshIndicator(
|
|
onRefresh: _controller.onRefresh,
|
|
child: CustomScrollView(
|
|
physics: const AlwaysScrollableScrollPhysics(),
|
|
slivers: [
|
|
SliverPadding(
|
|
padding: EdgeInsets.only(
|
|
bottom: MediaQuery.paddingOf(context).bottom + 80,
|
|
),
|
|
sliver: Obx(() => _buildBody(_controller.loadingState.value)),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildBody(LoadingState<List<TopicItem>?> loadingState) {
|
|
return switch (loadingState) {
|
|
Loading() => linearLoading,
|
|
Success(:var response) =>
|
|
response?.isNotEmpty == true
|
|
? SliverList.builder(
|
|
itemCount: response!.length,
|
|
itemBuilder: (context, index) {
|
|
return DynTopicItem(
|
|
item: response[index],
|
|
onTap: (item) => Get.toNamed(
|
|
'/dynTopic',
|
|
parameters: {
|
|
'id': item.id.toString(),
|
|
'name': item.name,
|
|
},
|
|
),
|
|
);
|
|
},
|
|
)
|
|
: HttpError(onReload: _controller.onReload),
|
|
Error(:var errMsg) => HttpError(
|
|
errMsg: errMsg,
|
|
onReload: _controller.onReload,
|
|
),
|
|
};
|
|
}
|
|
}
|