123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- import 'package:cpt_property/respository/property_resposity.dart';
- import 'package:domain/entity/property_sale_rent_entity.dart';
- import 'package:plugin_platform/http/http_result.dart';
- import 'package:riverpod/src/framework.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';
- part 'property_rent_vm.g.dart';
- @riverpod
- class PropertyRentVm extends _$PropertyRentVm {
- late PropertyRespository propertyRespositoryInstance;
- bool _needShowPlaceholder = false; //是否展示LoadingView
- int _page = 1; // 当前页
- int _limit = 10; // 每页数量
- int _count = 0; // 总条数
- // Refresh 控制器
- final EasyRefreshController refreshController = EasyRefreshController(
- controlFinishRefresh: true, //允许刷新
- controlFinishLoad: true, //允许加载
- );
- PropertyRentState initState() {
- return PropertyRentState(
- list: [],
- );
- }
- @override
- PropertyRentState build() {
- // 引入数据仓库
- propertyRespositoryInstance = ref.read(propertyRespositoryProvider);
- // 引入数据仓库
- // 初始化状态
- 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 >= _count){
- // return;
- // }else {
- // int page = _page + 1;
- // state = state.copyWith(page: page,);
- // getListData();
- // }
- // 检查 page 是否为 null,并初始化为 1
- _page++;
- getListData();
- }
- // 下拉刷新
- Future onRefresh() async {
- Log.d("----property_news_vm-----onRefresh ");
- // await Future.delayed(const Duration(seconds: 2));
- _page = 1;
- getListData();
- }
- // 重试请求
- Future retryRequest() async {
- _page = 1;
- _needShowPlaceholder = true;
- getListData();
- }
- // 获取list 列表数据
- Future getListData<T>() async {
- if (_needShowPlaceholder) {
- changeLoadingState(LoadState.State_Loading, null);
- }
- Log.d("加载listData数据---------------start--${_page}---");
- // try {
- // //请求网络
- // Map<String, dynamic> params = {
- // "page": _page,
- // "limit": _limit,
- // };
- // 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 (_page == 1) {
- // //刷新的方式
- // state = state.copyWith(list: listData);
- // refreshController.finishRefresh();
- // //更新展示的状态
- // changeLoadingState(LoadState.State_Success, null);
- // } else {
- // //加载更多
- // final allList = state.list;
- // if(allList.length >= _count! * _limit!){
- // //更新展示的状态
- // changeLoadingState(LoadState.State_Success, null);
- // refreshController.finishLoad(IndicatorResult.noMore, true);
- // }else {
- // allList.addAll(listData);
- // state = state.copyWith(list: allList);
- // refreshController.finishLoad();
- // }
- // }
- //
- // // 最后赋值
- // _needShowPlaceholder = false;
- try {
- //请求网络
- Map<String, dynamic> params = {
- "type": 2, // 1 sale 2 rent
- "page": _page,
- "limit": _limit,
- };
- Log.d("请求参数------$params");
- final result = await propertyRespositoryInstance.fetchTransactionList(params);
- //校验成功失败
- if (result.isSuccess) {
- // state = state.copyWith(count: (result.data as PropertySaleRentEntity).count);
- handlerResultList((result.data as PropertySaleRentEntity).list);
- } else {
- String errorMessage = result.errorMsg!;
- changeLoadingState(LoadState.State_Error, errorMessage);
- ToastEngine.show(result.errorMsg ?? "Network Load Error");
- }
- } catch (e) {
- ToastEngine.show("Error: $e");
- }
- }
- void handlerResultList(List<PropertySaleRentList>? list) {
- if (list != null && list.isNotEmpty) {
- //有数据,判断是刷新还是加载更多的数据
- if (_page == 1) {
- //刷新的方式
- state.list!.clear();
- state.list!.addAll(list.map((item)=> item.toJson()).toList());
- refreshController.finishRefresh();
- //更新展示的状态
- changeLoadingState(LoadState.State_Success, null);
- } else {
- //加载更多
- final allList = state.list;
- state = state.copyWith(list: allList);
- refreshController.finishLoad();
- // update();
- }
- } else {
- if (_page == 1) {
- //展示无数据的布局
- state.list!.clear();
- changeLoadingState(LoadState.State_Empty, null);
- refreshController.finishRefresh();
- } else {
- //展示加载完成,没有更多数据了
- if(state.list!.length == 0){
- changeLoadingState(LoadState.State_Empty, null);
- refreshController.finishLoad();
- }else {
- if(_needShowPlaceholder){
- changeLoadingState(LoadState.State_Success, null);
- }
- }
- //更新展示的状态
- refreshController.finishLoad(IndicatorResult.noMore);
- }
- }
- }
- }
|