2022-06-17 22:57:41 +08:00
|
|
|
import 'dart:convert';
|
|
|
|
|
2022-08-09 16:37:11 +08:00
|
|
|
import 'package:desktop_multi_window/desktop_multi_window.dart';
|
2022-06-17 22:57:41 +08:00
|
|
|
import 'package:flutter/material.dart';
|
2022-06-28 22:04:10 +08:00
|
|
|
import 'package:flutter_hbb/common.dart';
|
2022-09-19 17:10:12 +08:00
|
|
|
import 'package:flutter_hbb/consts.dart';
|
2022-11-01 18:16:52 +08:00
|
|
|
import 'package:flutter_hbb/models/state_model.dart';
|
2022-06-17 22:57:41 +08:00
|
|
|
import 'package:flutter_hbb/desktop/pages/file_manager_page.dart';
|
2022-08-06 17:08:48 +08:00
|
|
|
import 'package:flutter_hbb/desktop/widgets/tabbar_widget.dart';
|
2022-06-17 22:57:41 +08:00
|
|
|
import 'package:flutter_hbb/utils/multi_window_manager.dart';
|
2022-06-27 16:44:34 +08:00
|
|
|
import 'package:get/get.dart';
|
2022-06-17 22:57:41 +08:00
|
|
|
|
2022-10-13 20:19:05 +08:00
|
|
|
import '../../models/platform_model.dart';
|
2022-09-08 21:03:20 +08:00
|
|
|
|
2022-06-17 22:57:41 +08:00
|
|
|
/// File Transfer for multi tabs
|
|
|
|
class FileManagerTabPage extends StatefulWidget {
|
|
|
|
final Map<String, dynamic> params;
|
|
|
|
|
|
|
|
const FileManagerTabPage({Key? key, required this.params}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<FileManagerTabPage> createState() => _FileManagerTabPageState(params);
|
|
|
|
}
|
|
|
|
|
2022-08-18 10:54:09 +08:00
|
|
|
class _FileManagerTabPageState extends State<FileManagerTabPage> {
|
2022-08-30 20:48:03 +08:00
|
|
|
DesktopTabController get tabController => Get.find<DesktopTabController>();
|
2022-08-24 21:09:18 +08:00
|
|
|
|
2022-09-06 17:08:59 +08:00
|
|
|
static const IconData selectedIcon = Icons.file_copy_sharp;
|
|
|
|
static const IconData unselectedIcon = Icons.file_copy_outlined;
|
2022-06-17 22:57:41 +08:00
|
|
|
|
|
|
|
_FileManagerTabPageState(Map<String, dynamic> params) {
|
2022-09-01 21:18:53 +08:00
|
|
|
Get.put(DesktopTabController(tabType: DesktopTabType.fileTransfer));
|
2023-06-07 20:31:54 +08:00
|
|
|
tabController.onSelected = (id) {
|
2023-01-23 22:07:50 +08:00
|
|
|
WindowController.fromWindowId(windowId())
|
|
|
|
.setTitle(getWindowNameWithId(id));
|
|
|
|
};
|
2022-08-26 12:14:14 +08:00
|
|
|
tabController.add(TabInfo(
|
2022-08-24 21:09:18 +08:00
|
|
|
key: params['id'],
|
|
|
|
label: params['id'],
|
|
|
|
selectedIcon: selectedIcon,
|
|
|
|
unselectedIcon: unselectedIcon,
|
2023-05-24 09:22:57 +08:00
|
|
|
onTabCloseButton: () => tabController.closeBy(params['id']),
|
2023-02-13 16:40:24 +08:00
|
|
|
page: FileManagerPage(
|
|
|
|
key: ValueKey(params['id']),
|
|
|
|
id: params['id'],
|
2023-07-07 12:22:39 +08:00
|
|
|
password: params['password'],
|
2024-03-20 15:05:54 +08:00
|
|
|
isSharedPassword: params['isSharedPassword'],
|
2023-06-07 20:31:54 +08:00
|
|
|
tabController: tabController,
|
2023-02-13 16:40:24 +08:00
|
|
|
forceRelay: params['forceRelay'],
|
|
|
|
)));
|
2022-06-17 22:57:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2022-08-30 16:50:25 +08:00
|
|
|
|
2022-10-27 10:56:14 +08:00
|
|
|
tabController.onRemoved = (_, id) => onRemoveId(id);
|
2022-08-24 21:09:18 +08:00
|
|
|
|
2022-06-17 22:57:41 +08:00
|
|
|
rustDeskWinManager.setMethodHandler((call, fromWindowId) async {
|
|
|
|
print(
|
2022-11-01 17:01:43 +08:00
|
|
|
"[FileTransfer] call ${call.method} with args ${call.arguments} from window $fromWindowId to ${windowId()}");
|
2022-06-17 22:57:41 +08:00
|
|
|
// for simplify, just replace connectionId
|
2023-08-02 20:38:09 +08:00
|
|
|
if (call.method == kWindowEventNewFileTransfer) {
|
2022-06-27 16:44:34 +08:00
|
|
|
final args = jsonDecode(call.arguments);
|
|
|
|
final id = args['id'];
|
2023-08-02 20:38:09 +08:00
|
|
|
windowOnTop(windowId());
|
2022-08-24 21:09:18 +08:00
|
|
|
tabController.add(TabInfo(
|
|
|
|
key: id,
|
|
|
|
label: id,
|
|
|
|
selectedIcon: selectedIcon,
|
|
|
|
unselectedIcon: unselectedIcon,
|
2022-10-13 20:19:05 +08:00
|
|
|
onTabCloseButton: () => tabController.closeBy(id),
|
2023-02-13 16:40:24 +08:00
|
|
|
page: FileManagerPage(
|
|
|
|
key: ValueKey(id),
|
|
|
|
id: id,
|
2023-07-07 12:22:39 +08:00
|
|
|
password: args['password'],
|
2024-03-20 15:05:54 +08:00
|
|
|
isSharedPassword: args['isSharedPassword'],
|
2023-06-07 20:31:54 +08:00
|
|
|
tabController: tabController,
|
2023-02-13 16:40:24 +08:00
|
|
|
forceRelay: args['forceRelay'],
|
|
|
|
)));
|
2022-06-28 22:04:10 +08:00
|
|
|
} else if (call.method == "onDestroy") {
|
2022-08-30 20:48:03 +08:00
|
|
|
tabController.clear();
|
2022-10-26 14:39:13 +08:00
|
|
|
} else if (call.method == kWindowActionRebuild) {
|
|
|
|
reloadCurrentWindow();
|
2022-06-17 22:57:41 +08:00
|
|
|
}
|
|
|
|
});
|
2022-10-22 22:43:26 +08:00
|
|
|
Future.delayed(Duration.zero, () {
|
|
|
|
restoreWindowPosition(WindowType.FileTransfer, windowId: windowId());
|
|
|
|
});
|
2022-06-17 22:57:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-05-08 09:59:05 +08:00
|
|
|
final child = Scaffold(
|
|
|
|
backgroundColor: Theme.of(context).cardColor,
|
|
|
|
body: DesktopTab(
|
|
|
|
controller: tabController,
|
|
|
|
onWindowCloseButton: handleWindowCloseButton,
|
|
|
|
tail: const AddButton(),
|
|
|
|
labelGetter: DesktopTab.tablabelGetter,
|
|
|
|
));
|
|
|
|
final tabWidget = isLinux
|
|
|
|
? buildVirtualWindowFrame(context, child)
|
|
|
|
: Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
border: Border.all(color: MyTheme.color(context).border!)),
|
|
|
|
child: child,
|
|
|
|
);
|
2024-03-24 11:23:06 +08:00
|
|
|
return isMacOS || kUseCompatibleUiMode
|
2022-09-19 10:14:14 +08:00
|
|
|
? tabWidget
|
2022-11-01 18:16:52 +08:00
|
|
|
: SubWindowDragToResizeArea(
|
|
|
|
child: tabWidget,
|
|
|
|
resizeEdgeSize: stateGlobal.resizeEdgeSize.value,
|
|
|
|
windowId: stateGlobal.windowId,
|
|
|
|
);
|
2022-06-17 22:57:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void onRemoveId(String id) {
|
2022-08-30 16:45:47 +08:00
|
|
|
if (tabController.state.value.tabs.isEmpty) {
|
2022-11-09 15:14:11 +08:00
|
|
|
WindowController.fromWindowId(windowId()).close();
|
2022-08-09 09:01:06 +08:00
|
|
|
}
|
2022-06-17 22:57:41 +08:00
|
|
|
}
|
2022-08-09 16:37:11 +08:00
|
|
|
|
|
|
|
int windowId() {
|
|
|
|
return widget.params["windowId"];
|
|
|
|
}
|
2022-09-08 21:03:20 +08:00
|
|
|
|
2022-09-09 19:29:19 +08:00
|
|
|
Future<bool> handleWindowCloseButton() async {
|
|
|
|
final connLength = tabController.state.value.tabs.length;
|
2022-10-13 20:19:05 +08:00
|
|
|
if (connLength <= 1) {
|
|
|
|
tabController.clear();
|
2022-09-09 19:29:19 +08:00
|
|
|
return true;
|
|
|
|
} else {
|
2022-10-13 20:19:05 +08:00
|
|
|
final bool res;
|
2024-05-19 14:07:42 +08:00
|
|
|
if (!option2bool(kOptionEnableConfirmClosingTabs,
|
|
|
|
bind.mainGetLocalOption(key: kOptionEnableConfirmClosingTabs))) {
|
2022-10-13 20:19:05 +08:00
|
|
|
res = true;
|
|
|
|
} else {
|
|
|
|
res = await closeConfirmDialog();
|
|
|
|
}
|
2022-09-09 19:29:19 +08:00
|
|
|
if (res) {
|
|
|
|
tabController.clear();
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
2022-06-17 22:57:41 +08:00
|
|
|
}
|