mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-07 12:20:03 +03:00
* feat(terminal): add reconnection buffer support for persistent sessions Fix two related issues: 1. Reconnecting to persistent sessions shows blank screen - server now automatically sends historical buffer on reconnection via SessionState machine with pending_buffer, eliminating the need for client-initiated buffer requests. 2. Terminal output before view ready causes NaN errors - buffer output chunks on client side until terminal view has valid dimensions, then flush in order on first valid resize. Rust side: - Introduce SessionState enum (Closed/Active) replacing bool is_opened - Auto-attach pending buffer on reconnection in handle_open() - Always drain output channel in read_outputs() to prevent overflow - Increase channel buffer from 100 to 500 - Optimize get_recent() to collect whole chunks (avoids ANSI truncation) - Extract create_terminal_data_response() helper (DRY) - Add reconnected flag to TerminalOpened protobuf message Flutter side: - Buffer output chunks until terminal view has valid dimensions - Flush buffered output on first valid resize via _markViewReady() - Clear terminal on reconnection to avoid duplicate output from buffer replay - Fix max_bytes type (u32) to match protobuf definition - Pass reconnected field through FlutterHandler event Signed-off-by: fufesou <linlong1266@gmail.com> * fix(terminal): add two-phase SIGWINCH for TUI app redraw and session remap on reconnection Fix TUI apps (top, htop) not redrawing after reconnection. A single resize-then-restore is too fast for ncurses to detect a size change, so split across two read_outputs() polling cycles (~30ms apart) to force a full redraw. Also fix reconnection failure when client terminal_id doesn't match any surviving server-side session ID by remapping the lowest surviving session to the requested ID. Rust side: - Add two-phase SIGWINCH state machine (SigwinchPhase: TempResize → Restore → Idle) with retry logic (max 3 attempts per phase) - Add do_sigwinch_resize() for cross-platform PTY resize (direct PTY and Windows helper mode) - Add session remap logic for non-contiguous terminal_id reconnection - Extract try_send_output() helper with rate-limited drop logging (DRY) - Add 3-byte limit to UTF-8 continuation byte skipping in get_recent() to prevent runaway on non-UTF-8 binary data - Remove reconnected flag from flutter.rs (unused on client side) Flutter side: - Add reconnection screen clear and deferred flush logic - Filter self from persistent_sessions restore list - Add comments for web-related changes Signed-off-by: fufesou <linlong1266@gmail.com> --------- Signed-off-by: fufesou <linlong1266@gmail.com>
592 lines
21 KiB
Dart
592 lines
21 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:desktop_multi_window/desktop_multi_window.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_hbb/common.dart';
|
|
import 'package:flutter_hbb/common/widgets/dialog.dart';
|
|
import 'package:flutter_hbb/consts.dart';
|
|
import 'package:flutter_hbb/models/state_model.dart';
|
|
import 'package:flutter_hbb/desktop/widgets/tabbar_widget.dart';
|
|
import 'package:flutter_hbb/utils/multi_window_manager.dart';
|
|
import 'package:flutter_hbb/models/model.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../models/platform_model.dart';
|
|
import 'terminal_page.dart';
|
|
import 'terminal_connection_manager.dart';
|
|
import '../widgets/material_mod_popup_menu.dart' as mod_menu;
|
|
import '../widgets/popup_menu.dart';
|
|
import 'package:bot_toast/bot_toast.dart';
|
|
|
|
class TerminalTabPage extends StatefulWidget {
|
|
final Map<String, dynamic> params;
|
|
|
|
const TerminalTabPage({Key? key, required this.params}) : super(key: key);
|
|
|
|
@override
|
|
State<TerminalTabPage> createState() => _TerminalTabPageState(params);
|
|
}
|
|
|
|
class _TerminalTabPageState extends State<TerminalTabPage> {
|
|
DesktopTabController get tabController => Get.find<DesktopTabController>();
|
|
|
|
static const IconData selectedIcon = Icons.terminal;
|
|
static const IconData unselectedIcon = Icons.terminal_outlined;
|
|
int _nextTerminalId = 1;
|
|
// Lightweight idempotency guard for async close operations
|
|
final Set<String> _closingTabs = {};
|
|
// When true, all session cleanup should persist (window-level close in progress)
|
|
bool _windowClosing = false;
|
|
|
|
_TerminalTabPageState(Map<String, dynamic> params) {
|
|
Get.put(DesktopTabController(tabType: DesktopTabType.terminal));
|
|
tabController.onSelected = (id) {
|
|
WindowController.fromWindowId(windowId())
|
|
.setTitle(getWindowNameWithId(id));
|
|
};
|
|
tabController.onRemoved = (_, id) => onRemoveId(id);
|
|
final terminalId = params['terminalId'] ?? _nextTerminalId++;
|
|
tabController.add(_createTerminalTab(
|
|
peerId: params['id'],
|
|
terminalId: terminalId,
|
|
password: params['password'],
|
|
isSharedPassword: params['isSharedPassword'],
|
|
forceRelay: params['forceRelay'],
|
|
connToken: params['connToken'],
|
|
));
|
|
}
|
|
|
|
TabInfo _createTerminalTab({
|
|
required String peerId,
|
|
required int terminalId,
|
|
String? password,
|
|
bool? isSharedPassword,
|
|
bool? forceRelay,
|
|
String? connToken,
|
|
}) {
|
|
final tabKey = '${peerId}_$terminalId';
|
|
final alias = bind.mainGetPeerOptionSync(id: peerId, key: 'alias');
|
|
final tabLabel =
|
|
alias.isNotEmpty ? '$alias #$terminalId' : '$peerId #$terminalId';
|
|
return TabInfo(
|
|
key: tabKey,
|
|
label: tabLabel,
|
|
selectedIcon: selectedIcon,
|
|
unselectedIcon: unselectedIcon,
|
|
onTabCloseButton: () => _closeTab(tabKey),
|
|
page: TerminalPage(
|
|
key: ValueKey(tabKey),
|
|
id: peerId,
|
|
terminalId: terminalId,
|
|
tabKey: tabKey,
|
|
password: password,
|
|
isSharedPassword: isSharedPassword,
|
|
tabController: tabController,
|
|
forceRelay: forceRelay,
|
|
connToken: connToken,
|
|
),
|
|
);
|
|
}
|
|
|
|
/// Unified tab close handler for all close paths (button, shortcut, programmatic).
|
|
/// Shows audit dialog, cleans up session if not persistent, then removes the UI tab.
|
|
Future<void> _closeTab(String tabKey) async {
|
|
// Idempotency guard: skip if already closing this tab
|
|
if (_closingTabs.contains(tabKey)) return;
|
|
_closingTabs.add(tabKey);
|
|
|
|
try {
|
|
// Snapshot peerTabCount BEFORE any await to avoid race with concurrent
|
|
// _closeAllTabs clearing tabController (which would make the live count
|
|
// drop to 0 and incorrectly trigger session persistence).
|
|
// Note: the snapshot may become stale if other individual tabs are closed
|
|
// during the audit dialog, but this is an acceptable trade-off.
|
|
int? snapshotPeerTabCount;
|
|
final parsed = _parseTabKey(tabKey);
|
|
if (parsed != null) {
|
|
final (peerId, _) = parsed;
|
|
snapshotPeerTabCount = tabController.state.value.tabs.where((t) {
|
|
final p = _parseTabKey(t.key);
|
|
return p != null && p.$1 == peerId;
|
|
}).length;
|
|
}
|
|
|
|
if (await desktopTryShowTabAuditDialogCloseCancelled(
|
|
id: tabKey,
|
|
tabController: tabController,
|
|
)) {
|
|
return;
|
|
}
|
|
|
|
// Close terminal session if not in persistent mode.
|
|
// Wrapped separately so session cleanup failure never blocks UI tab removal.
|
|
try {
|
|
await _closeTerminalSessionIfNeeded(tabKey,
|
|
peerTabCount: snapshotPeerTabCount);
|
|
} catch (e) {
|
|
debugPrint('[TerminalTabPage] Session cleanup failed for $tabKey: $e');
|
|
}
|
|
// Always close the tab from UI, regardless of session cleanup result
|
|
tabController.closeBy(tabKey);
|
|
} catch (e) {
|
|
debugPrint('[TerminalTabPage] Error closing tab $tabKey: $e');
|
|
} finally {
|
|
_closingTabs.remove(tabKey);
|
|
}
|
|
}
|
|
|
|
/// Close all tabs with session cleanup.
|
|
/// Used for window-level close operations (onDestroy, handleWindowCloseButton).
|
|
/// UI tabs are removed immediately; session cleanup runs in parallel with a
|
|
/// bounded timeout so window close is not blocked indefinitely.
|
|
Future<void> _closeAllTabs() async {
|
|
_windowClosing = true;
|
|
final tabKeys = tabController.state.value.tabs.map((t) => t.key).toList();
|
|
// Remove all UI tabs immediately (same instant behavior as the old tabController.clear())
|
|
tabController.clear();
|
|
// Run session cleanup in parallel with bounded timeout (closeTerminal() has internal 3s timeout).
|
|
// Skip tabs already being closed by a concurrent _closeTab() to avoid duplicate FFI calls.
|
|
final futures = tabKeys
|
|
.where((tabKey) => !_closingTabs.contains(tabKey))
|
|
.map((tabKey) async {
|
|
try {
|
|
await _closeTerminalSessionIfNeeded(tabKey, persistAll: true);
|
|
} catch (e) {
|
|
debugPrint('[TerminalTabPage] Session cleanup failed for $tabKey: $e');
|
|
}
|
|
}).toList();
|
|
if (futures.isNotEmpty) {
|
|
await Future.wait(futures).timeout(
|
|
const Duration(seconds: 4),
|
|
onTimeout: () {
|
|
debugPrint(
|
|
'[TerminalTabPage] Session cleanup timed out for batch close');
|
|
return [];
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
/// Close the terminal session on server side based on persistent mode.
|
|
///
|
|
/// [persistAll] controls behavior when persistent mode is enabled:
|
|
/// - `true` (window close): persist all sessions, don't close any.
|
|
/// - `false` (tab close): only persist the last session for the peer,
|
|
/// close others so only the most recent disconnected session survives.
|
|
///
|
|
/// Note: if [_windowClosing] is true, persistAll is forced to true so that
|
|
/// in-flight _closeTab() calls don't accidentally close sessions that the
|
|
/// window-close flow intends to preserve.
|
|
Future<void> _closeTerminalSessionIfNeeded(String tabKey,
|
|
{bool persistAll = false, int? peerTabCount}) async {
|
|
// If window close is in progress, override to persist all sessions
|
|
// even if this call originated from an individual tab close.
|
|
if (_windowClosing) {
|
|
persistAll = true;
|
|
}
|
|
final parsed = _parseTabKey(tabKey);
|
|
if (parsed == null) return;
|
|
final (peerId, terminalId) = parsed;
|
|
|
|
final ffi = TerminalConnectionManager.getExistingConnection(peerId);
|
|
if (ffi == null) return;
|
|
|
|
final isPersistent = bind.sessionGetToggleOptionSync(
|
|
sessionId: ffi.sessionId,
|
|
arg: kOptionTerminalPersistent,
|
|
);
|
|
|
|
if (isPersistent) {
|
|
if (persistAll) {
|
|
// Window close: persist all sessions
|
|
return;
|
|
}
|
|
// Tab close: only persist if this is the last tab for this peer.
|
|
// Use the snapshot value if provided (avoids race with concurrent tab removal).
|
|
final effectivePeerTabCount = peerTabCount ??
|
|
tabController.state.value.tabs.where((t) {
|
|
final p = _parseTabKey(t.key);
|
|
return p != null && p.$1 == peerId;
|
|
}).length;
|
|
if (effectivePeerTabCount <= 1) {
|
|
// Last tab for this peer — persist the session
|
|
return;
|
|
}
|
|
// Not the last tab — fall through to close the session
|
|
}
|
|
|
|
final terminalModel = ffi.terminalModels[terminalId];
|
|
if (terminalModel != null) {
|
|
// closeTerminal() has internal 3s timeout, no need for external timeout
|
|
await terminalModel.closeTerminal();
|
|
}
|
|
}
|
|
|
|
/// Parse tabKey (format: "peerId_terminalId") into its components.
|
|
/// Note: peerId may contain underscores, so we use lastIndexOf('_').
|
|
/// Returns null if tabKey format is invalid.
|
|
(String peerId, int terminalId)? _parseTabKey(String tabKey) {
|
|
final lastUnderscore = tabKey.lastIndexOf('_');
|
|
if (lastUnderscore <= 0) {
|
|
debugPrint('[TerminalTabPage] Invalid tabKey format: $tabKey');
|
|
return null;
|
|
}
|
|
final terminalIdStr = tabKey.substring(lastUnderscore + 1);
|
|
final terminalId = int.tryParse(terminalIdStr);
|
|
if (terminalId == null) {
|
|
debugPrint('[TerminalTabPage] Invalid terminalId in tabKey: $tabKey');
|
|
return null;
|
|
}
|
|
final peerId = tabKey.substring(0, lastUnderscore);
|
|
return (peerId, terminalId);
|
|
}
|
|
|
|
Widget _tabMenuBuilder(String peerId, CancelFunc cancelFunc) {
|
|
final List<MenuEntryBase<String>> menu = [];
|
|
const EdgeInsets padding = EdgeInsets.only(left: 8.0, right: 5.0);
|
|
|
|
// New tab menu item
|
|
menu.add(MenuEntryButton<String>(
|
|
childBuilder: (TextStyle? style) => Text(
|
|
translate('New tab'),
|
|
style: style,
|
|
),
|
|
proc: () {
|
|
_addNewTerminal(peerId);
|
|
cancelFunc();
|
|
// Also try to close any BotToast overlays
|
|
BotToast.cleanAll();
|
|
},
|
|
padding: padding,
|
|
));
|
|
|
|
menu.add(MenuEntryDivider());
|
|
|
|
menu.add(MenuEntrySwitch<String>(
|
|
switchType: SwitchType.scheckbox,
|
|
text: translate('Keep terminal sessions on disconnect'),
|
|
getter: () async {
|
|
final ffi = Get.find<FFI>(tag: 'terminal_$peerId');
|
|
return bind.sessionGetToggleOptionSync(
|
|
sessionId: ffi.sessionId,
|
|
arg: kOptionTerminalPersistent,
|
|
);
|
|
},
|
|
setter: (bool v) async {
|
|
final ffi = Get.find<FFI>(tag: 'terminal_$peerId');
|
|
await bind.sessionToggleOption(
|
|
sessionId: ffi.sessionId,
|
|
value: kOptionTerminalPersistent,
|
|
);
|
|
},
|
|
padding: padding,
|
|
));
|
|
|
|
return mod_menu.PopupMenu<String>(
|
|
items: menu
|
|
.map((e) => e.build(
|
|
context,
|
|
const MenuConfig(
|
|
commonColor: CustomPopupMenuTheme.commonColor,
|
|
height: CustomPopupMenuTheme.height,
|
|
dividerHeight: CustomPopupMenuTheme.dividerHeight,
|
|
),
|
|
))
|
|
.expand((i) => i)
|
|
.toList(),
|
|
);
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
|
|
// Add keyboard shortcut handler
|
|
HardwareKeyboard.instance.addHandler(_handleKeyEvent);
|
|
|
|
rustDeskWinManager.setMethodHandler((call, fromWindowId) async {
|
|
print(
|
|
"[Remote Terminal] call ${call.method} with args ${call.arguments} from window $fromWindowId");
|
|
if (call.method == kWindowEventNewTerminal) {
|
|
final args = jsonDecode(call.arguments);
|
|
final id = args['id'];
|
|
windowOnTop(windowId());
|
|
// Allow multiple terminals for the same connection
|
|
final terminalId = args['terminalId'] ?? _nextTerminalId++;
|
|
tabController.add(_createTerminalTab(
|
|
peerId: id,
|
|
terminalId: terminalId,
|
|
password: args['password'],
|
|
isSharedPassword: args['isSharedPassword'],
|
|
forceRelay: args['forceRelay'],
|
|
connToken: args['connToken'],
|
|
));
|
|
} else if (call.method == kWindowEventRestoreTerminalSessions) {
|
|
_restoreSessions(call.arguments);
|
|
} else if (call.method == "onDestroy") {
|
|
// Clean up sessions before window destruction (bounded wait)
|
|
await _closeAllTabs();
|
|
} else if (call.method == kWindowActionRebuild) {
|
|
reloadCurrentWindow();
|
|
} else if (call.method == kWindowEventActiveSession) {
|
|
if (tabController.state.value.tabs.isEmpty) {
|
|
return false;
|
|
}
|
|
final currentTab = tabController.state.value.selectedTabInfo;
|
|
assert(call.arguments is String,
|
|
"Expected String arguments for kWindowEventActiveSession, got ${call.arguments.runtimeType}");
|
|
// Use lastIndexOf to handle peerIds containing underscores
|
|
final lastUnderscore = currentTab.key.lastIndexOf('_');
|
|
if (lastUnderscore > 0 &&
|
|
currentTab.key.substring(0, lastUnderscore) == call.arguments) {
|
|
windowOnTop(windowId());
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
});
|
|
Future.delayed(Duration.zero, () {
|
|
restoreWindowPosition(WindowType.Terminal, windowId: windowId());
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
HardwareKeyboard.instance.removeHandler(_handleKeyEvent);
|
|
super.dispose();
|
|
}
|
|
|
|
Future<void> _restoreSessions(String arguments) async {
|
|
Map<String, dynamic>? args;
|
|
try {
|
|
args = jsonDecode(arguments) as Map<String, dynamic>;
|
|
} catch (e) {
|
|
debugPrint("Error parsing JSON arguments in _restoreSessions: $e");
|
|
return;
|
|
}
|
|
final persistentSessions =
|
|
args['persistent_sessions'] as List<dynamic>? ?? [];
|
|
final sortedSessions = persistentSessions.whereType<int>().toList()..sort();
|
|
for (final terminalId in sortedSessions) {
|
|
_addNewTerminalForCurrentPeer(terminalId: terminalId);
|
|
// A delay is required to ensure the UI has sufficient time to update
|
|
// before adding the next terminal. Without this delay, `_TerminalPageState::dispose()`
|
|
// may be called prematurely while the tab widget is still in the tab controller.
|
|
// This behavior is likely due to a race condition between the UI rendering lifecycle
|
|
// and the addition of new tabs. Attempts to use `_TerminalPageState::addPostFrameCallback()`
|
|
// to wait for the previous page to be ready were unsuccessful, as the observed call sequence is:
|
|
// `initState() 2 -> dispose() 2 -> postFrameCallback() 2`, followed by `initState() 3`.
|
|
// The `Future.delayed` approach mitigates this issue by introducing a buffer period,
|
|
// allowing the UI to stabilize before proceeding.
|
|
await Future.delayed(const Duration(milliseconds: 300));
|
|
}
|
|
}
|
|
|
|
bool _handleKeyEvent(KeyEvent event) {
|
|
if (event is KeyDownEvent) {
|
|
// Use Cmd+T on macOS, Ctrl+Shift+T on other platforms
|
|
if (event.logicalKey == LogicalKeyboardKey.keyT) {
|
|
if (isMacOS &&
|
|
HardwareKeyboard.instance.isMetaPressed &&
|
|
!HardwareKeyboard.instance.isShiftPressed) {
|
|
// macOS: Cmd+T (standard for new tab)
|
|
_addNewTerminalForCurrentPeer();
|
|
return true;
|
|
} else if (!isMacOS &&
|
|
HardwareKeyboard.instance.isControlPressed &&
|
|
HardwareKeyboard.instance.isShiftPressed) {
|
|
// Other platforms: Ctrl+Shift+T (to avoid conflict with Ctrl+T in terminal)
|
|
_addNewTerminalForCurrentPeer();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// Use Cmd+W on macOS, Ctrl+Shift+W on other platforms
|
|
if (event.logicalKey == LogicalKeyboardKey.keyW) {
|
|
if (isMacOS &&
|
|
HardwareKeyboard.instance.isMetaPressed &&
|
|
!HardwareKeyboard.instance.isShiftPressed) {
|
|
// macOS: Cmd+W (standard for close tab)
|
|
final currentTab = tabController.state.value.selectedTabInfo;
|
|
if (tabController.state.value.tabs.length > 1) {
|
|
_closeTab(currentTab.key);
|
|
return true;
|
|
}
|
|
} else if (!isMacOS &&
|
|
HardwareKeyboard.instance.isControlPressed &&
|
|
HardwareKeyboard.instance.isShiftPressed) {
|
|
// Other platforms: Ctrl+Shift+W (to avoid conflict with Ctrl+W word delete)
|
|
final currentTab = tabController.state.value.selectedTabInfo;
|
|
if (tabController.state.value.tabs.length > 1) {
|
|
_closeTab(currentTab.key);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Use Alt+Left/Right for tab navigation (avoids conflicts)
|
|
if (HardwareKeyboard.instance.isAltPressed) {
|
|
if (event.logicalKey == LogicalKeyboardKey.arrowLeft) {
|
|
// Previous tab
|
|
final currentIndex = tabController.state.value.selected;
|
|
if (currentIndex > 0) {
|
|
tabController.jumpTo(currentIndex - 1);
|
|
}
|
|
return true;
|
|
} else if (event.logicalKey == LogicalKeyboardKey.arrowRight) {
|
|
// Next tab
|
|
final currentIndex = tabController.state.value.selected;
|
|
if (currentIndex < tabController.length - 1) {
|
|
tabController.jumpTo(currentIndex + 1);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// Check for Cmd/Ctrl + Number (switch to specific tab)
|
|
final numberKeys = [
|
|
LogicalKeyboardKey.digit1,
|
|
LogicalKeyboardKey.digit2,
|
|
LogicalKeyboardKey.digit3,
|
|
LogicalKeyboardKey.digit4,
|
|
LogicalKeyboardKey.digit5,
|
|
LogicalKeyboardKey.digit6,
|
|
LogicalKeyboardKey.digit7,
|
|
LogicalKeyboardKey.digit8,
|
|
LogicalKeyboardKey.digit9,
|
|
];
|
|
|
|
for (int i = 0; i < numberKeys.length; i++) {
|
|
if (event.logicalKey == numberKeys[i] &&
|
|
((isMacOS && HardwareKeyboard.instance.isMetaPressed) ||
|
|
(!isMacOS && HardwareKeyboard.instance.isControlPressed))) {
|
|
if (i < tabController.length) {
|
|
tabController.jumpTo(i);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void _addNewTerminal(String peerId, {int? terminalId}) {
|
|
// Find first tab for this peer to get connection parameters
|
|
final firstTab = tabController.state.value.tabs.firstWhere(
|
|
(tab) {
|
|
final last = tab.key.lastIndexOf('_');
|
|
return last > 0 && tab.key.substring(0, last) == peerId;
|
|
},
|
|
);
|
|
if (firstTab.page is TerminalPage) {
|
|
final page = firstTab.page as TerminalPage;
|
|
final newTerminalId = terminalId ?? _nextTerminalId++;
|
|
if (terminalId != null && terminalId >= _nextTerminalId) {
|
|
_nextTerminalId = terminalId + 1;
|
|
}
|
|
tabController.add(_createTerminalTab(
|
|
peerId: peerId,
|
|
terminalId: newTerminalId,
|
|
password: page.password,
|
|
isSharedPassword: page.isSharedPassword,
|
|
forceRelay: page.forceRelay,
|
|
connToken: page.connToken,
|
|
));
|
|
}
|
|
}
|
|
|
|
void _addNewTerminalForCurrentPeer({int? terminalId}) {
|
|
final currentTab = tabController.state.value.selectedTabInfo;
|
|
final parsed = _parseTabKey(currentTab.key);
|
|
if (parsed == null) return;
|
|
final (peerId, _) = parsed;
|
|
_addNewTerminal(peerId, terminalId: terminalId);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final child = Scaffold(
|
|
backgroundColor: Theme.of(context).cardColor,
|
|
body: DesktopTab(
|
|
controller: tabController,
|
|
onWindowCloseButton: handleWindowCloseButton,
|
|
tail: _buildAddButton(),
|
|
selectedBorderColor: MyTheme.accent,
|
|
labelGetter: DesktopTab.tablabelGetter,
|
|
tabMenuBuilder: (key) {
|
|
final parsed = _parseTabKey(key);
|
|
if (parsed == null) return Container();
|
|
final (peerId, _) = parsed;
|
|
return _tabMenuBuilder(peerId, () {});
|
|
},
|
|
));
|
|
final tabWidget = isLinux
|
|
? buildVirtualWindowFrame(context, child)
|
|
: workaroundWindowBorder(
|
|
context,
|
|
Container(
|
|
decoration: BoxDecoration(
|
|
border: Border.all(color: MyTheme.color(context).border!)),
|
|
child: child,
|
|
));
|
|
return isMacOS || kUseCompatibleUiMode
|
|
? tabWidget
|
|
: SubWindowDragToResizeArea(
|
|
child: tabWidget,
|
|
resizeEdgeSize: stateGlobal.resizeEdgeSize.value,
|
|
enableResizeEdges: subWindowManagerEnableResizeEdges,
|
|
windowId: stateGlobal.windowId,
|
|
);
|
|
}
|
|
|
|
void onRemoveId(String id) {
|
|
if (tabController.state.value.tabs.isEmpty) {
|
|
WindowController.fromWindowId(windowId()).close();
|
|
}
|
|
}
|
|
|
|
int windowId() {
|
|
return widget.params["windowId"];
|
|
}
|
|
|
|
Widget _buildAddButton() {
|
|
return ActionIcon(
|
|
message: 'New tab',
|
|
icon: IconFont.add,
|
|
onTap: () {
|
|
_addNewTerminalForCurrentPeer();
|
|
},
|
|
isClose: false,
|
|
);
|
|
}
|
|
|
|
Future<bool> handleWindowCloseButton() async {
|
|
final connLength = tabController.state.value.tabs.length;
|
|
if (connLength == 1) {
|
|
if (await desktopTryShowTabAuditDialogCloseCancelled(
|
|
id: tabController.state.value.tabs[0].key,
|
|
tabController: tabController,
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
if (connLength <= 1) {
|
|
await _closeAllTabs();
|
|
return true;
|
|
} else {
|
|
final bool res;
|
|
if (!option2bool(kOptionEnableConfirmClosingTabs,
|
|
bind.mainGetLocalOption(key: kOptionEnableConfirmClosingTabs))) {
|
|
res = true;
|
|
} else {
|
|
res = await closeConfirmDialog();
|
|
}
|
|
if (res) {
|
|
await _closeAllTabs();
|
|
}
|
|
return res;
|
|
}
|
|
}
|
|
}
|