import 'package:after_layout/after_layout.dart'; import 'package:flutter/material.dart'; import 'package:get_it/get_it.dart'; import '../../core/analysis.dart'; import '../../core/route.dart'; import '../../core/update.dart'; import '../../core/utils/ui.dart'; import '../../data/model/app/dynamic_color.dart'; import '../../data/model/app/navigation_item.dart'; import '../../data/provider/server.dart'; import '../../data/res/build_data.dart'; import '../../data/res/color.dart'; import '../../data/res/font_style.dart'; import '../../data/res/icon.dart'; import '../../data/res/tab.dart'; import '../../data/res/url.dart'; import '../../data/store/setting.dart'; import '../../generated/l10n.dart'; import '../../locator.dart'; import '../widget/url_text.dart'; import 'backup.dart'; import 'convert.dart'; import 'debug.dart'; import 'ping.dart'; import 'private_key/list.dart'; import 'server/tab.dart'; import 'setting.dart'; import 'sftp/downloaded.dart'; import 'snippet/list.dart'; final _bottomItemOverlayColor = DynamicColor(Colors.black.withOpacity(0.07), Colors.white12); class MyHomePage extends StatefulWidget { const MyHomePage({Key? key}) : super(key: key); @override State createState() => _MyHomePageState(); } class _MyHomePageState extends State with AutomaticKeepAliveClientMixin, AfterLayoutMixin, WidgetsBindingObserver { late final ServerProvider _serverProvider; late final PageController _pageController; late int _selectIndex; late double _width; late S _s; @override void initState() { super.initState(); _serverProvider = locator(); WidgetsBinding.instance.addObserver(this); _selectIndex = locator().launchPage.fetch()!; _pageController = PageController(initialPage: _selectIndex); } @override void didChangeDependencies() { super.didChangeDependencies(); _s = S.of(context); _width = MediaQuery.of(context).size.width; } @override void dispose() { super.dispose(); WidgetsBinding.instance.removeObserver(this); _serverProvider.closeServer(); } @override void didChangeAppLifecycleState(AppLifecycleState state) { super.didChangeAppLifecycleState(state); if (state == AppLifecycleState.paused) { _serverProvider.setDisconnected(); _serverProvider.stopAutoRefresh(); } if (state == AppLifecycleState.resumed) { _serverProvider.startAutoRefresh(); } } @override Widget build(BuildContext context) { super.build(context); return Scaffold( drawer: _buildDrawer(), appBar: AppBar( title: Text(tabTitleName(context, _selectIndex), style: textSize18), actions: [ IconButton( icon: const Icon(Icons.developer_mode, size: 23), tooltip: _s.debug, onPressed: () => AppRoute(const DebugPage(), 'Debug Page').go(context), ), ], ), body: PageView( physics: const ClampingScrollPhysics(), controller: _pageController, onPageChanged: (i) { FocusScope.of(context).requestFocus(FocusNode()); _selectIndex = i; setState(() {}); }, children: const [ServerPage(), ConvertPage(), PingPage()], ), bottomNavigationBar: _buildBottom(context), ); } Widget _buildBottomItem(int idx, NavigationItem item, bool isSelected) { final width = _width / tabItems.length; return AnimatedContainer( duration: const Duration(milliseconds: 377), curve: Curves.fastOutSlowIn, height: 50, width: isSelected ? width : width - 17, decoration: BoxDecoration( color: isSelected ? _bottomItemOverlayColor.resolve(context) : Colors.transparent, borderRadius: const BorderRadius.all( Radius.circular(50), ), ), child: IconButton( icon: Icon(item.icon), tooltip: tabTitleName(context, idx), splashRadius: width / 3.3, padding: const EdgeInsets.only(left: 17, right: 17), onPressed: () { setState(() { _pageController.animateToPage(idx, duration: const Duration(milliseconds: 677), curve: Curves.fastLinearToSlowEaseIn); }); }, ), ); } Widget _buildBottom(BuildContext context) { return SafeArea( child: Container( height: 56, padding: const EdgeInsets.only(left: 8, top: 4, bottom: 4, right: 8), width: _width, child: Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: tabItems.map( (item) { int itemIndex = tabItems.indexOf(item); return _buildBottomItem( itemIndex, item, _selectIndex == itemIndex, ); }, ).toList(), ), ), ); } Widget _buildDrawer() { return Drawer( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ _buildIcon(), TextButton( onPressed: () => showRoundDialog( context, _versionStr, const Text(BuildData.buildAt), [], ), child: Text( '${BuildData.name}\n$_versionStr', textAlign: TextAlign.center, ), ), SizedBox( height: MediaQuery.of(context).size.height * 0.07, ), Padding( padding: const EdgeInsets.only(left: 29), child: Column( children: [ ListTile( leading: const Icon(Icons.settings), title: Text(_s.setting), onTap: () => AppRoute(const SettingPage(), 'Setting').go(context), ), ListTile( leading: const Icon(Icons.vpn_key), title: Text(_s.privateKey), onTap: () => AppRoute( const PrivateKeysListPage(), 'private key list', ).go(context), ), ListTile( leading: const Icon(Icons.download), title: Text(_s.download), onTap: () => AppRoute(const SFTPDownloadedPage(), 'snippet list') .go(context), ), ListTile( leading: const Icon(Icons.import_export), title: Text(_s.backup), onTap: () => AppRoute(BackupPage(), 'backup page').go(context), ), ListTile( leading: const Icon(Icons.info), title: Text(_s.feedback), onTap: () => showRoundDialog( context, _s.feedback, Text(_s.feedbackOnGithub), [ TextButton( onPressed: () => openUrl(issueUrl), child: Text(_s.feedback), ), TextButton( onPressed: () => Navigator.of(context).pop(), child: Text(_s.close), ) ], ), ), ListTile( leading: const Icon(Icons.snippet_folder), title: Text(_s.snippet), onTap: () => AppRoute(const SnippetListPage(), 'snippet list') .go(context), ), AboutListTile( icon: const Icon(Icons.text_snippet), applicationName: BuildData.name, applicationVersion: _versionStr, applicationIcon: _buildIcon(), aboutBoxChildren: [ UrlText( text: _s.madeWithLove(myGithub), replace: 'lollipopkit'), UrlText( text: _s.aboutThanks, ), const UrlText( text: rainSunMeGithub, replace: 'RainSunMe', ), const UrlText( text: fectureGithub, replace: 'fecture', ) ], child: Text(_s.license), ) ], ), ), ], ), ); } Widget _buildIcon() { return Stack( alignment: Alignment.center, children: [ ConstrainedBox( constraints: const BoxConstraints(maxHeight: 53, maxWidth: 53), child: Container( color: primaryColor, ), ), ConstrainedBox( constraints: const BoxConstraints(maxHeight: 83, maxWidth: 83), child: appIcon, ) ], ); } String get _versionStr { var mod = ''; if (BuildData.modifications != 0) { mod = '(+${BuildData.modifications})'; } return 'Ver: 1.0.${BuildData.build}$mod'; } @override bool get wantKeepAlive => true; @override Future afterFirstLayout(BuildContext context) async { await GetIt.I.allReady(); await locator().loadLocalData(); await doUpdate(context); await Analysis.init(); } }