import 'package:cs_resources/generated/assets.dart'; import 'package:flutter/cupertino.dart'; import 'package:plugin_platform/engine/toast/toast_engine.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; import 'package:shared/utils/log_utils.dart'; import '../../ioan/property_ioan_page.dart'; import '../../news/page/property_news_page.dart'; import '../../rent/page/property_rent_page.dart'; import '../../sale/page/property_sale_page.dart'; part 'property_vm.g.dart'; class PropertyVmState { List>? topSectionsData; int? curIdx; PropertyVmState({ List>? topSectionsData, this.curIdx = 0, }) : topSectionsData = topSectionsData?? [ { "title": "Ioan", "icon": Assets.propertyIoan, "pageStartInstanceFn": PropertyIoanPage.startInstance, "page": const PropertyIoanPage(), }, { "title": "News", "icon": Assets.propertyNews, "pageStartInstanceFn": PropertyNewsPage.startInstance, "page": const PropertyNewsPage(), }, { "title": "Sale", "icon": Assets.propertySale, "pageStartInstanceFn": PropertySalePage.startInstance, "page": const PropertySalePage(), }, { "title": "Rent", "icon": Assets.propertyRent, "pageStartInstanceFn": PropertyRentPage.startInstance, "page": const PropertyRentPage(), }, ]; PropertyVmState copyWith({ List>? topSectionsData, int? curIdx = 0, }) { return PropertyVmState( topSectionsData: topSectionsData ?? this.topSectionsData, curIdx: curIdx ?? 0, ); } } @riverpod class PropertyVm extends _$PropertyVm { get topSectionsData => state.topSectionsData; PropertyVmState initState() { return PropertyVmState(); } @override PropertyVmState build(){ final state = initState(); Log.d("--------------------------build---------------------"); // 初始时导航到子路由 WidgetsBinding.instance.addPostFrameCallback((_) { }); return state; } // 页面切换 switchPage(int index,BuildContext? context, [bool? isFirstInitSwitch] ){ if(state.curIdx != index){ state = state.copyWith(curIdx: index); final List>? topSectionsData = state.topSectionsData; // Log.d("当前页面${topSectionsData?[index]['pageStartInstanceFn']}"); final pageStartInstanceFn = topSectionsData?[index]['pageStartInstanceFn'] as Function({BuildContext? context}); pageStartInstanceFn(context:context); }else { if(isFirstInitSwitch??false){ final List>? topSectionsData = state.topSectionsData; // Log.d("当前页面${topSectionsData?[index]['pageStartInstanceFn']}"); final pageStartInstanceFn = topSectionsData?[index]['pageStartInstanceFn'] as Function({BuildContext? context}); pageStartInstanceFn(context:context); } } } }