import 'dart:convert'; import 'package:desktop_multi_window/desktop_multi_window.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hbb/common.dart'; import 'package:flutter_hbb/desktop/pages/file_manager_page.dart'; import 'package:flutter_hbb/desktop/widgets/tabbar_widget.dart'; import 'package:flutter_hbb/models/model.dart'; import 'package:flutter_hbb/utils/multi_window_manager.dart'; import 'package:get/get.dart'; /// File Transfer for multi tabs class FileManagerTabPage extends StatefulWidget { final Map params; const FileManagerTabPage({Key? key, required this.params}) : super(key: key); @override State createState() => _FileManagerTabPageState(params); } class _FileManagerTabPageState extends State with TickerProviderStateMixin { // refactor List when using multi-tab // this singleton is only for test RxList tabs = List.empty(growable: true).obs; late Rx tabController; static final Rx _selected = 0.obs; IconData icon = Icons.file_copy_sharp; _FileManagerTabPageState(Map params) { if (params['id'] != null) { tabs.add(TabInfo(label: params['id'], icon: icon)); } } @override void initState() { super.initState(); tabController = TabController(length: tabs.length, vsync: this).obs; rustDeskWinManager.setMethodHandler((call, fromWindowId) async { print( "call ${call.method} with args ${call.arguments} from window ${fromWindowId}"); // for simplify, just replace connectionId if (call.method == "new_file_transfer") { final args = jsonDecode(call.arguments); final id = args['id']; window_on_top(windowId()); DesktopTabBar.onAdd(this, tabController, tabs, _selected, TabInfo(label: id, icon: icon)); } else if (call.method == "onDestroy") { print( "executing onDestroy hook, closing ${tabs.map((tab) => tab.label).toList()}"); tabs.forEach((tab) { final tag = 'ft_${tab.label}'; ffi(tag).close().then((_) { Get.delete(tag: tag); }); }); Get.back(); } }); } @override Widget build(BuildContext context) { return Scaffold( body: Column( children: [ DesktopTabBar( controller: tabController, tabs: tabs, onTabClose: onRemoveId, selected: _selected, dark: isDarkTheme(), mainTab: false, ), Expanded( child: Obx( () => TabBarView( controller: tabController.value, children: tabs .map((tab) => FileManagerPage( key: ValueKey(tab.label), id: tab.label)) //RemotePage(key: ValueKey(e), id: e)) .toList()), ), ) ], ), ); } void onRemoveId(String id) { DesktopTabBar.onClose(this, tabController, tabs, id); if (tabs.length == 0) { WindowController.fromWindowId(windowId()).close(); } } int windowId() { return widget.params["windowId"]; } }