app_mobile.dart 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. import 'dart:async';
  2. import 'package:auto_route/auto_route.dart';
  3. import 'package:double_back_to_exit/double_back_to_exit.dart';
  4. import 'package:easy_localization/easy_localization.dart';
  5. import 'package:firebase_messaging/firebase_messaging.dart';
  6. import 'package:flutter/foundation.dart';
  7. import 'package:flutter/material.dart';
  8. import 'package:quick_notify_2/quick_notify.dart';
  9. import 'package:simple_connection_checker/simple_connection_checker.dart';
  10. import 'package:telnow_mobile_new/main.dart';
  11. import 'package:telnow_mobile_new/src/injector/injector.dart';
  12. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  13. import 'package:telnow_mobile_new/src/storage/sharedpreferences/shared_preferences_manager.dart';
  14. import 'package:telnow_mobile_new/src/utils/U.dart';
  15. import 'package:upgrader/upgrader.dart';
  16. class MobAppPage extends StatefulWidget {
  17. final Widget child;
  18. const MobAppPage(this.child, {super.key});
  19. @override
  20. State<MobAppPage> createState() => _MobAppPageState();
  21. }
  22. class _MobAppPageState extends State<MobAppPage>with TickerProviderStateMixin {
  23. final NotificationClass notification = NotificationClass();
  24. late AnimationController _animationController;
  25. StreamSubscription? subscription;
  26. bool isConnected = true;
  27. bool begin = false;
  28. @override
  29. void initState() {
  30. if(!kIsWeb){
  31. _animationController = new AnimationController(duration: Duration(seconds: 2), vsync: this);
  32. _animationController.repeat(reverse: true);
  33. checkConnection();
  34. }
  35. else{
  36. U.getServerVersion();
  37. // getOtherList();
  38. begin = true;
  39. }
  40. // TODO: implement initState
  41. super.initState();
  42. }
  43. @override
  44. void dispose() {
  45. if(!kIsWeb) {
  46. subscription?.cancel();
  47. _animationController.dispose();
  48. }
  49. // TODO: implement dispose
  50. super.dispose();
  51. }
  52. checkConnection() async{
  53. await U.getServerVersion();
  54. // getOtherList();
  55. SimpleConnectionChecker _simpleConnectionChecker = SimpleConnectionChecker();
  56. subscription = _simpleConnectionChecker.onConnectionChange.listen((connected) {
  57. U.setInternetStatus(connected);
  58. setState(()=>begin = true);
  59. if(connected){
  60. setState(()=>isConnected = true);
  61. notification.initFirebaseMessaging(context);
  62. notification.startNotification(context);
  63. if(U.newServerVersion(1709864293)){
  64. U.checkPendingRequest(context);
  65. }
  66. if(ModalRoute.of(context)?.isCurrent != true) navigateBack(context);
  67. }
  68. else{
  69. Future.delayed(Duration(seconds: 4), (){
  70. if(!U.getInternetStatus()){
  71. handlingError(context, 0);
  72. setState(()=>isConnected = false);
  73. }
  74. });
  75. }
  76. });
  77. }
  78. getOtherList(){
  79. U.getOtherLabelList(context);
  80. }
  81. @override
  82. Widget build(BuildContext context) {
  83. return Scaffold(
  84. body: Stack(
  85. alignment: Alignment.bottomCenter,
  86. children: [
  87. begin ? widget.child : Container(),
  88. isConnected?Container():IgnorePointer(
  89. child: FadeTransition(opacity: _animationController, child: Container(
  90. width: double.infinity, color: Colors.red,
  91. margin: EdgeInsets.only(bottom: 56),
  92. padding: EdgeInsets.symmetric(vertical: 10, horizontal: 15),
  93. child: Text('noInternetTitle'.tr(), style: TextStyle(color: Colors.white), textAlign: TextAlign.center),
  94. )),
  95. )
  96. ],
  97. ),
  98. );
  99. }
  100. }
  101. //---------------------------------------------------------------------------------------------------------------
  102. class MobMenuTemplate extends StatefulWidget {
  103. final Widget child;
  104. const MobMenuTemplate({required this.child, Key? key}) : super(key: key);
  105. @override
  106. State<MobMenuTemplate> createState() => _MobMenuTemplateState();
  107. }
  108. class _MobMenuTemplateState extends State<MobMenuTemplate> {
  109. final SharedPreferencesManager sharedPreferencesManager = locator<SharedPreferencesManager>();
  110. bool historyMark = false;
  111. getUser() async {
  112. if(kIsWeb){
  113. if(!await QuickNotify.hasPermission()){
  114. await QuickNotify.requestPermission();
  115. }
  116. }
  117. if(sharedPreferencesManager.isKeyExists(SharedPreferencesManager.keyHistoryMark)!){
  118. setState(() => historyMark = sharedPreferencesManager.getBool(SharedPreferencesManager.keyHistoryMark)!);
  119. }
  120. FirebaseMessaging.onMessage.listen((event) {
  121. if(event.data['type'] != 'MESSAGE'){
  122. if(!context.router.currentUrl.endsWith("history")){
  123. setState(() => historyMark = true);
  124. sharedPreferencesManager.putBool(SharedPreferencesManager.keyHistoryMark, true);
  125. }
  126. }
  127. });
  128. }
  129. @override
  130. void initState() {
  131. getUser();
  132. super.initState();
  133. }
  134. @override
  135. Widget build(BuildContext context) {
  136. var index = 0;
  137. if(context.router.currentUrl.endsWith("history")){
  138. index = 1;
  139. historyMark = false;
  140. sharedPreferencesManager.putBool(SharedPreferencesManager.keyHistoryMark, false);
  141. }else if(context.router.currentUrl.endsWith("account")){
  142. index = 2;
  143. }
  144. return Scaffold(
  145. backgroundColor: backgroundColor,
  146. body: !kIsWeb?DoubleBackToExit(
  147. snackBarMessage: 'pressAgain'.tr(),
  148. child: widget.child,
  149. ):widget.child,
  150. bottomNavigationBar: BottomNavigationBar(
  151. backgroundColor: Colors.white,
  152. selectedItemColor: textColor,
  153. unselectedItemColor: textColor,
  154. type: BottomNavigationBarType.fixed,
  155. onTap: (value) {
  156. var pid = U.getPidFromUrl(context.router.currentUrl);
  157. if(value!=index) {
  158. switch (value) {
  159. case 0:
  160. context.router.removeLast();
  161. context.navigateToPath("/app/$pid/menu/home");
  162. break;
  163. case 1:
  164. context.router.removeLast();
  165. context.navigateToPath("/app/$pid/menu/history");
  166. break;
  167. default:
  168. context.router.removeLast();
  169. context.navigateToPath("/app/$pid/menu/account");
  170. break;
  171. }
  172. }
  173. },
  174. currentIndex: index,
  175. showUnselectedLabels: true,
  176. selectedFontSize: 12,
  177. items: <BottomNavigationBarItem>[
  178. BottomNavigationBarItem(icon: U.iconsax(index == 0 ? 'bold/home' : 'home-1', color: index==0 ? primaryColor : Color(0xff292D32).withValues(alpha: 0.5)), label: 'menuHome'.tr()),
  179. BottomNavigationBarItem(icon: Center(
  180. child: Stack(
  181. alignment: Alignment.topRight,
  182. children: [
  183. U.iconsax(index == 1 ? 'bold/archive-2' : 'archive-2', color: index==1 ? primaryColor : Color(0xff292D32).withValues(alpha: 0.5)),
  184. Container(
  185. width: historyMark?11:0, height: historyMark?11:0,
  186. decoration: BoxDecoration(color: Colors.red, borderRadius: BorderRadius.all(Radius.circular(50))),
  187. )
  188. ],
  189. ),
  190. ), label: 'menuHistory'.tr()),
  191. BottomNavigationBarItem(icon: U.iconsax(index == 2 ? 'bold/personalcard' : 'personalcard', color: index==2 ? primaryColor : Color(0xff292D32).withValues(alpha: 0.5)), label: 'menuAccount'.tr()),
  192. ],
  193. ),
  194. );
  195. }
  196. }