app_mobile.dart 7.0 KB

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