You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
371 lines
11 KiB
371 lines
11 KiB
import 'dart:convert'; |
|
import 'dart:io'; |
|
import 'package:dio/dio.dart'; |
|
import 'package:flutter/material.dart'; |
|
import 'package:huixiang/generated/l10n.dart'; |
|
import 'package:huixiang/home/huixiang_brand_page.dart'; |
|
import 'package:huixiang/home/main_home_page.dart'; |
|
import 'package:huixiang/main.dart'; |
|
import 'package:huixiang/mine/mine_page.dart'; |
|
import 'package:huixiang/retrofit/data/base_data.dart'; |
|
import 'package:huixiang/retrofit/retrofit_api.dart'; |
|
import 'package:huixiang/union/union_page.dart'; |
|
import 'package:flutter_screenutil/flutter_screenutil.dart'; |
|
import 'package:huixiang/utils/bridge.dart'; |
|
import 'package:huixiang/utils/event_type.dart'; |
|
import 'package:huixiang/utils/native_event_handler.dart'; |
|
import 'package:permission_handler/permission_handler.dart'; |
|
import 'package:shared_preferences/shared_preferences.dart'; |
|
|
|
class MainPage extends StatefulWidget { |
|
@override |
|
State<StatefulWidget> createState() { |
|
return _MainPage(); |
|
} |
|
} |
|
|
|
class _MainPage extends State<MainPage> with WidgetsBindingObserver { |
|
late List<Widget> _widgetOptions; |
|
|
|
late List<String> icons; |
|
late List<String> iconn; |
|
|
|
@override |
|
void dispose() { |
|
super.dispose(); |
|
WidgetsBinding.instance!.removeObserver(this); |
|
} |
|
|
|
@override |
|
void didChangeAppLifecycleState(AppLifecycleState state) { |
|
print("-didChangeAppLifecycleState-" + state.toString()); |
|
switch (state) { |
|
case AppLifecycleState.inactive: // 处于这种状态的应用程序应该假设它们可能在任何时候暂停。 |
|
break; |
|
case AppLifecycleState.resumed: //从后台切换前台,界面可见 |
|
pushRoute(); |
|
break; |
|
case AppLifecycleState.paused: // 界面不可见,后台 |
|
break; |
|
case AppLifecycleState.detached: // APP结束时调用 |
|
break; |
|
} |
|
} |
|
|
|
@override |
|
void initState() { |
|
super.initState(); |
|
WidgetsBinding.instance!.addObserver(this); |
|
|
|
pushRoute(); |
|
|
|
_widgetOptions = <Widget>[ |
|
BrandPage(), |
|
MainHomePage(), |
|
UnionPage(), |
|
MinePage(), |
|
]; |
|
|
|
icons = [ |
|
"assets/image/icon_brand_s.png", |
|
"assets/image/icon_bi_s.png", |
|
"assets/image/icon_meng_s.png", |
|
"assets/image/icon_wo_s.png", |
|
]; |
|
iconn = [ |
|
"assets/image/icon_brand_n.png", |
|
"assets/image/icon_bi_n.png", |
|
"assets/image/icon_meng_n.png", |
|
"assets/image/icon_wo_n.png", |
|
]; |
|
|
|
eventBus.on<EventType>().listen((event) { |
|
if (event.type < 3) { |
|
setState(() {}); |
|
} |
|
}); |
|
|
|
queryUserInfo(); |
|
|
|
if (Platform.isAndroid) { |
|
xgFlutterPlugin.getXgAndroidApi().addNativeEventHandler( |
|
MyNativeEventHandler( |
|
(String title, String message, String customContent, int type) { |
|
print("xgPushClickAction2: $customContent"); |
|
SharedPreferences.getInstance().then((value) { |
|
value.setString("pushData", customContent); |
|
}); |
|
})); |
|
} |
|
|
|
/// @typed: 1文章 2活动 3店铺 4积分商品 5订单 |
|
xgFlutterPlugin.addEventHandler(xgPushClickAction: (event) async { |
|
print("xgPushClickAction1: $event"); |
|
if (event["actionType"] == 2) return event; |
|
if (Platform.isAndroid |
|
? (event["actionType"] == 0) |
|
: (event["xg"]["msgtype"] == 1) && |
|
event[Platform.isAndroid ? "customMessage" : "custom"] != null) { |
|
SharedPreferences.getInstance().then((value) { |
|
value.setString("pushData", event[Platform.isAndroid ? "customMessage" : "custom"]); |
|
}); |
|
if (ModalRoute.of(context)!.isActive && ModalRoute.of(context)!.isCurrent) { |
|
pushRoute(); |
|
} else { |
|
Navigator.of(context).pushNamedAndRemoveUntil('/router/main_page', (route) => false); |
|
} |
|
} |
|
return event; |
|
}, onReceiveNotificationResponse: (event) async { |
|
print("onReceiveNotificationResponse: ${event.toString()}"); |
|
return event; |
|
}, onReceiveMessage: (event) async { |
|
print("onReceiveMessage: ${event.toString()}"); |
|
return event; |
|
}); |
|
} |
|
|
|
pushRoute() async { |
|
SharedPreferences sharedPreferences = await SharedPreferences.getInstance(); |
|
if (sharedPreferences.getString("token") == null || |
|
sharedPreferences.getString("token") == "") return; |
|
String startIntent = await Bridge.getStartIntent(); |
|
print("intent:$startIntent"); |
|
String? pushData = ""; |
|
if (startIntent != null && startIntent != "") { |
|
pushData = startIntent; |
|
// pushData = """{"typed":1,"info":"1420304936817655808"}"""; |
|
} else { |
|
pushData = sharedPreferences.getString("pushData"); |
|
} |
|
if (pushData == null || pushData == "") return; |
|
Map<String, dynamic> pushMap = jsonDecode(pushData); |
|
if (pushMap != null) { |
|
String routeName = ""; |
|
Map<String, dynamic> params = {}; |
|
switch (pushMap["typed"]) { |
|
case 1: |
|
routeName = "/router/store_detail_page"; |
|
params["articleId"] = pushMap["info"]; |
|
break; |
|
case 2: |
|
routeName = "/router/store_detail_page"; |
|
params["activityId"] = pushMap["info"]; |
|
break; |
|
case 3: |
|
routeName = "/router/union_detail_page"; |
|
params["id"] = pushMap["info"]; |
|
break; |
|
case 4: |
|
routeName = "/router/integral_store_page"; |
|
params["goodsId"] = pushMap["info"]; |
|
break; |
|
case 5: |
|
routeName = "/router/order_details"; |
|
params["id"] = pushMap["info"]; |
|
break; |
|
} |
|
sharedPreferences.setString("pushData", ""); |
|
print("xgPushClickAction: routeName: $routeName"); |
|
if (routeName != "") { |
|
Navigator.of(context).pushNamed(routeName, arguments: params); |
|
} |
|
} |
|
} |
|
|
|
queryUserInfo() async { |
|
SharedPreferences sharedPreferences = await SharedPreferences.getInstance(); |
|
if (sharedPreferences.getString("token") == null || |
|
sharedPreferences.getString("token") == "") return; |
|
BaseData baseDate = await ApiService(Dio(), |
|
context: context, token: sharedPreferences.getString('token')) |
|
.queryInfo(); |
|
sharedPreferences.setString('user', jsonEncode(baseDate.data)); |
|
} |
|
|
|
requestPermission() async { |
|
if (!await Permission.storage.isGranted) { |
|
await Permission.storage.request(); |
|
} |
|
} |
|
|
|
PageController pageController = PageController(initialPage: 1); |
|
|
|
@override |
|
Widget build(BuildContext context) { |
|
return Scaffold( |
|
resizeToAvoidBottomInset: false, |
|
body: Container( |
|
child: PageView( |
|
controller: pageController, |
|
children: _widgetOptions, |
|
physics: NeverScrollableScrollPhysics(), |
|
onPageChanged: (index) { |
|
clickIndex = index; |
|
setState(() {}); |
|
}, |
|
), |
|
), |
|
extendBody: true, |
|
bottomNavigationBar: Container( |
|
alignment: Platform.isAndroid ? Alignment.center : Alignment.topCenter, |
|
decoration: BoxDecoration( |
|
color: Colors.white, |
|
boxShadow: [ |
|
BoxShadow( |
|
color: Colors.black.withAlpha(12), |
|
offset: Offset(0, 2), |
|
blurRadius: 4, |
|
spreadRadius: 0, |
|
) |
|
], |
|
borderRadius: BorderRadius.only( |
|
topRight: Radius.circular(4), |
|
topLeft: Radius.circular(4), |
|
), |
|
), |
|
height: 82.h, |
|
child: Row( |
|
mainAxisAlignment: MainAxisAlignment.spaceAround, |
|
crossAxisAlignment: CrossAxisAlignment.start, |
|
children: [ |
|
bottomNavigationBigItem(S.of(context).pinpai, 0), |
|
bottomNavigationItem(S.of(context).main_menu1, 1), |
|
bottomNavigationItem(S.of(context).main_menu2, 2), |
|
bottomNavigationItem(S.of(context).main_menu3, 3), |
|
], |
|
), |
|
), |
|
); |
|
} |
|
|
|
var clickIndex = 1; |
|
|
|
Widget bottomNavigationItem(text, index) { |
|
var isSelected = index == clickIndex; |
|
return Expanded( |
|
child: InkWell( |
|
onTap: () { |
|
setState(() { |
|
clickIndex = index; |
|
// if (index == 1) { |
|
// debugDumpApp(); |
|
// } |
|
pageController.jumpToPage(clickIndex); |
|
}); |
|
}, |
|
child: Container( |
|
width: 45.w, |
|
child: Column( |
|
mainAxisAlignment: Platform.isAndroid |
|
? MainAxisAlignment.center |
|
: MainAxisAlignment.start, |
|
crossAxisAlignment: CrossAxisAlignment.center, |
|
children: [ |
|
if (Platform.isIOS) |
|
SizedBox( |
|
height: 4.h, |
|
), |
|
AnimatedCrossFade( |
|
firstChild: Image.asset( |
|
icons[index], |
|
width: 30, |
|
height: 30, |
|
fit: BoxFit.contain, |
|
), |
|
secondChild: Image.asset( |
|
iconn[index], |
|
width: 30, |
|
height: 30, |
|
fit: BoxFit.contain, |
|
), |
|
crossFadeState: isSelected |
|
? CrossFadeState.showFirst |
|
: CrossFadeState.showSecond, |
|
duration: Duration(milliseconds: 200), |
|
), |
|
Text( |
|
text, |
|
style: TextStyle( |
|
fontSize: 10, |
|
fontWeight: FontWeight.bold, |
|
color: Color(isSelected ? 0xFF4C4C4C : 0xFFA29E9E), |
|
), |
|
), |
|
], |
|
), |
|
), |
|
), |
|
flex: 1, |
|
); |
|
} |
|
|
|
Widget bottomNavigationBigItem(text, index) { |
|
var isSelected = index == clickIndex; |
|
return Expanded( |
|
child: InkWell( |
|
onTap: () { |
|
setState(() { |
|
clickIndex = index; |
|
pageController.jumpToPage(clickIndex); |
|
}); |
|
}, |
|
child: Container( |
|
width: 45.w, |
|
alignment: Alignment.center, |
|
child: AnimatedCrossFade( |
|
firstCurve: Curves.easeIn, |
|
secondCurve: Curves.ease, |
|
sizeCurve: Curves.easeInOut, |
|
duration: Duration(milliseconds: 50), |
|
firstChild: Container( |
|
padding: EdgeInsets.all(4), |
|
height: 82.h, |
|
alignment: |
|
Platform.isAndroid ? Alignment.center : Alignment.topCenter, |
|
child: Image.asset( |
|
icons[index], |
|
width: 45, |
|
height: 45, |
|
fit: BoxFit.contain, |
|
), |
|
), |
|
secondChild: Column( |
|
mainAxisAlignment: Platform.isAndroid |
|
? MainAxisAlignment.center |
|
: MainAxisAlignment.start, |
|
crossAxisAlignment: CrossAxisAlignment.center, |
|
children: [ |
|
if (Platform.isIOS) |
|
SizedBox( |
|
height: 4.h, |
|
), |
|
Image.asset( |
|
iconn[index], |
|
width: 30, |
|
height: 30, |
|
fit: BoxFit.contain, |
|
), |
|
SizedBox( |
|
height: 1.h, |
|
), |
|
Text( |
|
text, |
|
style: TextStyle( |
|
fontSize: 10.sp, |
|
fontWeight: FontWeight.bold, |
|
color: Color(isSelected ? 0xFF4C4C4C : 0xFFA29E9E), |
|
), |
|
), |
|
], |
|
), |
|
crossFadeState: isSelected |
|
? CrossFadeState.showFirst |
|
: CrossFadeState.showSecond, |
|
), |
|
), |
|
), |
|
flex: 1, |
|
); |
|
} |
|
}
|
|
|