fix: ssh tab focus mgmt (#525)

Fixes #522
This commit is contained in:
lollipopkit🏳️‍⚧️
2024-08-11 22:36:52 +08:00
committed by GitHub
parent 568b97606a
commit 4d8268c614
8 changed files with 59 additions and 59 deletions

View File

@@ -1,9 +1,7 @@
import 'package:fl_lib/fl_lib.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:server_box/data/model/server/private_key_info.dart'; import 'package:server_box/data/model/server/private_key_info.dart';
import 'package:server_box/data/model/server/server_private_info.dart'; import 'package:server_box/data/model/server/server_private_info.dart';
import 'package:server_box/data/res/build_data.dart';
import 'package:server_box/data/res/store.dart'; import 'package:server_box/data/res/store.dart';
import 'package:server_box/view/page/backup.dart'; import 'package:server_box/view/page/backup.dart';
import 'package:server_box/view/page/container.dart'; import 'package:server_box/view/page/container.dart';
@@ -152,16 +150,6 @@ class AppRoutes {
return AppRoutes(BackupPage(key: key), 'backup'); return AppRoutes(BackupPage(key: key), 'backup');
} }
static AppRoutes debug({Key? key}) {
return AppRoutes(
DebugPage(
key: key,
args: const DebugPageArgs(title: 'Logs(${BuildData.build})'),
),
'debug',
);
}
static AppRoutes docker({Key? key, required ServerPrivateInfo spi}) { static AppRoutes docker({Key? key, required ServerPrivateInfo spi}) {
return AppRoutes(ContainerPage(key: key, spi: spi), 'docker'); return AppRoutes(ContainerPage(key: key, spi: spi), 'docker');
} }

View File

@@ -14,22 +14,22 @@ final class _AppBar extends CustomAppBar {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (isDesktop) return super.build(context);
final placeholder = SizedBox( final placeholder = SizedBox(
height: CustomAppBar.barHeight ?? 0 + MediaQuery.of(context).padding.top, height: CustomAppBar.barHeight ?? 0 + MediaQuery.of(context).padding.top,
); );
return selectIndex.listenVal(
(idx) {
if (idx == AppTab.ssh.index) {
return placeholder;
}
if (isDesktop) return super.build(context);
return ValBuilder( return ValBuilder(
listenable: landscape, listenable: landscape,
builder: (ls) { builder: (ls) {
if (ls) return placeholder; if (ls) return placeholder;
return ValBuilder(
listenable: selectIndex,
builder: (idx) {
if (idx == AppTab.ssh.index) {
return placeholder;
}
return super.build(context); return super.build(context);
}, },
); );

View File

@@ -14,7 +14,6 @@ import 'package:server_box/data/res/misc.dart';
import 'package:server_box/data/res/provider.dart'; import 'package:server_box/data/res/provider.dart';
import 'package:server_box/data/res/store.dart'; import 'package:server_box/data/res/store.dart';
import 'package:server_box/data/res/url.dart'; import 'package:server_box/data/res/url.dart';
import 'package:server_box/view/page/ssh/page.dart';
import 'package:wakelock_plus/wakelock_plus.dart'; import 'package:wakelock_plus/wakelock_plus.dart';
part 'appbar.dart'; part 'appbar.dart';
@@ -128,7 +127,10 @@ class _HomePageState extends State<HomePage>
IconButton( IconButton(
icon: const Icon(Icons.developer_mode, size: 21), icon: const Icon(Icons.developer_mode, size: 21),
tooltip: 'Debug', tooltip: 'Debug',
onPressed: () => AppRoutes.debug().go(context), onPressed: () => DebugPage.route.go(
context,
args: const DebugPageArgs(title: 'Debug(${BuildData.build})'),
),
), ),
], ],
); );
@@ -141,7 +143,7 @@ class _HomePageState extends State<HomePage>
physics: const NeverScrollableScrollPhysics(), physics: const NeverScrollableScrollPhysics(),
itemBuilder: (_, index) => AppTab.values[index].page, itemBuilder: (_, index) => AppTab.values[index].page,
onPageChanged: (value) { onPageChanged: (value) {
SSHPage.focusNode.unfocus(); FocusScope.of(context).unfocus();
if (!_switchingPage) { if (!_switchingPage) {
_selectIndex.value = value; _selectIndex.value = value;
} }

View File

@@ -32,6 +32,7 @@ class SSHPage extends StatefulWidget {
final bool notFromTab; final bool notFromTab;
final Function()? onSessionEnd; final Function()? onSessionEnd;
final GlobalKey<TerminalViewState>? terminalKey; final GlobalKey<TerminalViewState>? terminalKey;
final FocusNode? focusNode;
const SSHPage({ const SSHPage({
super.key, super.key,
@@ -41,10 +42,9 @@ class SSHPage extends StatefulWidget {
this.notFromTab = true, this.notFromTab = true,
this.onSessionEnd, this.onSessionEnd,
this.terminalKey, this.terminalKey,
this.focusNode,
}); });
static final focusNode = FocusNode();
@override @override
State<SSHPage> createState() => SSHPageState(); State<SSHPage> createState() => SSHPageState();
} }
@@ -158,7 +158,7 @@ class SSHPageState extends State<SSHPage>
CustomAppBar.barHeight ?? _media.padding.top, CustomAppBar.barHeight ?? _media.padding.top,
), ),
hideScrollBar: false, hideScrollBar: false,
focusNode: SSHPage.focusNode, focusNode: widget.focusNode,
), ),
), ),
); );
@@ -432,7 +432,7 @@ class SSHPageState extends State<SSHPage>
widget.initSnippet!.runInTerm(_terminal, widget.spi); widget.initSnippet!.runInTerm(_terminal, widget.spi);
} }
SSHPage.focusNode.requestFocus(); widget.focusNode?.requestFocus();
await session.done; await session.done;
if (mounted && widget.notFromTab) { if (mounted && widget.notFromTab) {

View File

@@ -17,12 +17,12 @@ class SSHTabPage extends StatefulWidget {
State<SSHTabPage> createState() => _SSHTabPageState(); State<SSHTabPage> createState() => _SSHTabPageState();
} }
typedef _TabMap = Map<String, ({Widget page, GlobalKey<SSHPageState>? key})>; typedef _TabMap = Map<String, ({Widget page, FocusNode? focus})>;
class _SSHTabPageState extends State<SSHTabPage> class _SSHTabPageState extends State<SSHTabPage>
with TickerProviderStateMixin, AutomaticKeepAliveClientMixin { with TickerProviderStateMixin, AutomaticKeepAliveClientMixin {
late final _TabMap _tabMap = { late final _TabMap _tabMap = {
libL10n.add: (page: _buildAddPage(), key: null), libL10n.add: (page: _buildAddPage(), focus: null),
}; };
final _pageCtrl = PageController(); final _pageCtrl = PageController();
final _fabVN = 0.vn; final _fabVN = 0.vn;
@@ -61,12 +61,9 @@ class _SSHTabPageState extends State<SSHTabPage>
void _onTapTab(int idx) async { void _onTapTab(int idx) async {
await _toPage(idx); await _toPage(idx);
SSHPage.focusNode.unfocus();
} }
void _onTapClose(String name) async { void _onTapClose(String name) async {
SSHPage.focusNode.unfocus();
final confirm = await showDialog<bool>( final confirm = await showDialog<bool>(
context: context, context: context,
builder: (context) { builder: (context) {
@@ -95,8 +92,11 @@ class _SSHTabPageState extends State<SSHTabPage>
child: Text(libL10n.empty, textAlign: TextAlign.center), child: Text(libL10n.empty, textAlign: TextAlign.center),
); );
} }
final ratio = context.media.size.aspectRatio;
return GridView.builder( return GridView.builder(
padding: const EdgeInsets.all(7), padding: const EdgeInsets.all(7),
cacheExtent: 50,
itemBuilder: (context, idx) { itemBuilder: (context, idx) {
final spi = Pros.server.pick(id: pro.serverOrder[idx])?.spi; final spi = Pros.server.pick(id: pro.serverOrder[idx])?.spi;
if (spi == null) return UIs.placeholder; if (spi == null) return UIs.placeholder;
@@ -109,10 +109,7 @@ class _SSHTabPageState extends State<SSHTabPage>
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
Text( Text(spi.name, style: UIs.text18),
spi.name,
style: Theme.of(context).textTheme.bodyLarge,
),
const Icon(Icons.chevron_right) const Icon(Icons.chevron_right)
], ],
), ),
@@ -121,9 +118,9 @@ class _SSHTabPageState extends State<SSHTabPage>
); );
}, },
itemCount: pro.servers.length, itemCount: pro.servers.length,
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2, crossAxisCount: 2,
childAspectRatio: 3, childAspectRatio: 3 * (ratio / (9 / 16)),
crossAxisSpacing: 3, crossAxisSpacing: 3,
mainAxisSpacing: 3, mainAxisSpacing: 3,
), ),
@@ -178,7 +175,7 @@ class _SSHTabPageState extends State<SSHTabPage>
_tabMap.remove(name); _tabMap.remove(name);
}, },
), ),
key: key, focus: FocusNode(),
); );
_tabRN.notify(); _tabRN.notify();
// Wait for the page to be built // Wait for the page to be built
@@ -187,8 +184,14 @@ class _SSHTabPageState extends State<SSHTabPage>
await _toPage(idx); await _toPage(idx);
} }
Future<void> _toPage(int idx) => _pageCtrl.animateToPage(idx, Future<void> _toPage(int idx) async {
await _pageCtrl.animateToPage(idx,
duration: Durations.short3, curve: Curves.fastEaseInToSlowEaseOut); duration: Durations.short3, curve: Curves.fastEaseInToSlowEaseOut);
final focus = _tabMap.values.elementAt(idx).focus;
if (focus != null) {
FocusScope.of(context).requestFocus(focus);
}
}
@override @override
bool get wantKeepAlive => true; bool get wantKeepAlive => true;

View File

@@ -6,6 +6,9 @@ PODS:
- FlutterMacOS (1.0.0) - FlutterMacOS (1.0.0)
- icloud_storage (0.0.1): - icloud_storage (0.0.1):
- FlutterMacOS - FlutterMacOS
- local_auth_darwin (0.0.1):
- Flutter
- FlutterMacOS
- package_info_plus (0.0.1): - package_info_plus (0.0.1):
- FlutterMacOS - FlutterMacOS
- path_provider_foundation (0.0.1): - path_provider_foundation (0.0.1):
@@ -30,6 +33,7 @@ DEPENDENCIES:
- dynamic_color (from `Flutter/ephemeral/.symlinks/plugins/dynamic_color/macos`) - dynamic_color (from `Flutter/ephemeral/.symlinks/plugins/dynamic_color/macos`)
- FlutterMacOS (from `Flutter/ephemeral`) - FlutterMacOS (from `Flutter/ephemeral`)
- icloud_storage (from `Flutter/ephemeral/.symlinks/plugins/icloud_storage/macos`) - icloud_storage (from `Flutter/ephemeral/.symlinks/plugins/icloud_storage/macos`)
- local_auth_darwin (from `Flutter/ephemeral/.symlinks/plugins/local_auth_darwin/darwin`)
- package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`) - package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`)
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`) - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
- screen_retriever (from `Flutter/ephemeral/.symlinks/plugins/screen_retriever/macos`) - screen_retriever (from `Flutter/ephemeral/.symlinks/plugins/screen_retriever/macos`)
@@ -48,6 +52,8 @@ EXTERNAL SOURCES:
:path: Flutter/ephemeral :path: Flutter/ephemeral
icloud_storage: icloud_storage:
:path: Flutter/ephemeral/.symlinks/plugins/icloud_storage/macos :path: Flutter/ephemeral/.symlinks/plugins/icloud_storage/macos
local_auth_darwin:
:path: Flutter/ephemeral/.symlinks/plugins/local_auth_darwin/darwin
package_info_plus: package_info_plus:
:path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos :path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos
path_provider_foundation: path_provider_foundation:
@@ -70,6 +76,7 @@ SPEC CHECKSUMS:
dynamic_color: 2eaa27267de1ca20d879fbd6e01259773fb1670f dynamic_color: 2eaa27267de1ca20d879fbd6e01259773fb1670f
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24 FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
icloud_storage: 33b05299e26d1391d724da8d62860e702380a1cd icloud_storage: 33b05299e26d1391d724da8d62860e702380a1cd
local_auth_darwin: 66e40372f1c29f383a314c738c7446e2f7fdadc3
package_info_plus: fa739dd842b393193c5ca93c26798dff6e3d0e0c package_info_plus: fa739dd842b393193c5ca93c26798dff6e3d0e0c
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46 path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
screen_retriever: 59634572a57080243dd1bf715e55b6c54f241a38 screen_retriever: 59634572a57080243dd1bf715e55b6c54f241a38

View File

@@ -1,7 +1,7 @@
import Cocoa import Cocoa
import FlutterMacOS import FlutterMacOS
@NSApplicationMain @main
class AppDelegate: FlutterAppDelegate { class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true return true

View File

@@ -277,10 +277,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: device_info_plus name: device_info_plus
sha256: "93429694c9253d2871b3af80cf11b3cbb5c65660d402ed7bf69854ce4a089f82" sha256: a7fd703482b391a87d60b6061d04dfdeab07826b96f9abd8f5ed98068acc0074
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "10.1.1" version: "10.1.2"
device_info_plus_platform_interface: device_info_plus_platform_interface:
dependency: transitive dependency: transitive
description: description:
@@ -859,10 +859,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: package_info_plus name: package_info_plus
sha256: "4de6c36df77ffbcef0a5aefe04669d33f2d18397fea228277b852a2d4e58e860" sha256: a75164ade98cb7d24cfd0a13c6408927c6b217fa60dee5a7ff5c116a58f28918
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "8.0.1" version: "8.0.2"
package_info_plus_platform_interface: package_info_plus_platform_interface:
dependency: transitive dependency: transitive
description: description:
@@ -1108,26 +1108,26 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: shared_preferences_android name: shared_preferences_android
sha256: "041be4d9d2dc6079cf342bc8b761b03787e3b71192d658220a56cac9c04a0294" sha256: a7e8467e9181cef109f601e3f65765685786c1a738a83d7fbbde377589c0d974
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.3.0" version: "2.3.1"
shared_preferences_foundation: shared_preferences_foundation:
dependency: transitive dependency: transitive
description: description:
name: shared_preferences_foundation name: shared_preferences_foundation
sha256: "671e7a931f55a08aa45be2a13fe7247f2a41237897df434b30d2012388191833" sha256: "776786cff96324851b656777648f36ac772d88bc4c669acff97b7fce5de3c849"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.5.0" version: "2.5.1"
shared_preferences_linux: shared_preferences_linux:
dependency: transitive dependency: transitive
description: description:
name: shared_preferences_linux name: shared_preferences_linux
sha256: "2ba0510d3017f91655b7543e9ee46d48619de2a2af38e5c790423f7007c7ccc1" sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.4.0" version: "2.4.1"
shared_preferences_platform_interface: shared_preferences_platform_interface:
dependency: transitive dependency: transitive
description: description:
@@ -1140,18 +1140,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: shared_preferences_web name: shared_preferences_web
sha256: "59dc807b94d29d52ddbb1b3c0d3b9d0a67fc535a64e62a5542c8db0513fcb6c2" sha256: d2ca4132d3946fec2184261726b355836a82c33d7d5b67af32692aff18a4684e
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.4.1" version: "2.4.2"
shared_preferences_windows: shared_preferences_windows:
dependency: transitive dependency: transitive
description: description:
name: shared_preferences_windows name: shared_preferences_windows
sha256: "398084b47b7f92110683cac45c6dc4aae853db47e470e5ddcd52cab7f7196ab2" sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.4.0" version: "2.4.1"
shelf: shelf:
dependency: transitive dependency: transitive
description: description: