123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- import 'package:plugin_platform/http/http_result.dart';
- import 'package:riverpod_annotation/riverpod_annotation.dart';
- import 'package:shared/utils/log_utils.dart';
- import 'package:plugin_platform/engine/toast/toast_engine.dart';
- import 'package:widgets/load_state_layout.dart';
- import 'package:widgets/widget_export.dart';
- import '../page/property_rent_state.dart';
- import '../repository/property_rent_repository.dart';
- part 'property_rent_vm.g.dart';
- @riverpod
- class PropertyRentVm extends _$PropertyRentVm {
- late PropertyRentRepository propertyRentRepository;
- bool _needShowPlaceholder = true; //是否展示LoadingView
- // Refresh 控制器
- final EasyRefreshController refreshController = EasyRefreshController(
- controlFinishRefresh: true, //允许刷新
- controlFinishLoad: true, //允许加载
- );
- PropertyRentState initState() {
- return PropertyRentState(
- list: [],
- );
- }
- @override
- PropertyRentState build() {
- // 引入数据仓库
- propertyRentRepository = ref.read(propertyRentRepositoryProvider);
- // 初始化状态
- PropertyRentState state = initState();
- // 初始化列表数据
- return state;
- }
- //刷新页面状态
- void changeLoadingState(LoadState loadState, String? errorMsg) {
- state = state.copyWith(
- loadingState: loadState,
- errorMessage: errorMsg
- );
- }
- // 初始化页面数据
- initPageData() {
- Log.d("----property_news_vm-----initPageData");
- onRefresh();
- }
- // 上拉加载 更多
- Future loadMore() async {
- Log.d("----property_news_vm-----loadMore");
- // await Future.delayed(const Duration(seconds: 2));
- // if(state.list.length >= state.filterCount){
- // return;
- // }else {
- // int curPage = state.curPage + 1;
- // state = state.copyWith(curPage: curPage,);
- // getListData();
- // }
- // 检查 curPage 是否为 null,并初始化为 1
- int newCurPage = state.curPage ?? 1;
- state = state.copyWith(curPage: ++newCurPage);
- getListData();
- }
- // 下拉刷新
- Future onRefresh() async {
- Log.d("----property_news_vm-----onRefresh ");
- // await Future.delayed(const Duration(seconds: 2));
- state = state.copyWith(curPage: 1);
- getListData();
- }
- // 重试请求
- Future retryRequest() async {
- state = state.copyWith(curPage: 1);
- _needShowPlaceholder = true;
- getListData();
- }
- // 获取list 列表数据
- Future getListData<T>() async {
- if (_needShowPlaceholder) {
- changeLoadingState(LoadState.State_Loading, null);
- }
- Log.d("加载listData数据---------------start--${state.curPage}---");
- // try {
- // //请求网络
- // Map<String, dynamic> params = {
- // "curPage": state.curPage,
- // "pageSize": state.pageSize,
- // };
- // Log.d("请求参数------$params");
- // final result = await propertyNewsRepository.fetchPropertyNewsList(params);
- // Log.d("请求完成结果------${result.data}");
- // //校验成功失败
- // if (result.isSuccess) {
- // // state = state.copyWith(serverTime: result.data);
- // state = state;
- // handleList(listResult.data?.rows);
- // ToastEngine.show("获取数据成功");
- // } else {
- // errorMessage = listResult.errorMsg;
- // changeLoadingState(LoadState.State_Error);
- // ToastEngine.show(result.errorMsg ?? "Network Load Error");
- // }
- // } catch (e) {
- // ToastEngine.show("Error: $e");
- // }
- await Future.delayed(const Duration(milliseconds: 1500));
- final List<Map<String, dynamic>> listData = [
- {
- "id": 1,
- "title": "Jul 2024 Blk XX #XX to XX 1,100 - 1,200 sqft",
- "price": "\$4000",
- "unit": "per month",
- },
- {
- "id": 2,
- "title": "Jul 2024 Blk XX #XX to XX 1,100 - 1,200 sqft",
- "price": "\$4000",
- "unit": "per month",
- },
- ];
- if (state.curPage == 1) {
- //刷新的方式
- state = state.copyWith(list: listData);
- refreshController.finishRefresh();
- //更新展示的状态
- changeLoadingState(LoadState.State_Success, null);
- } else {
- //加载更多
- final allList = state.list;
- allList.addAll(listData);
- refreshController.finishLoad();
- state = state.copyWith(list: allList);
- }
- // 最后赋值
- _needShowPlaceholder = false;
- }
- }
|