mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-25 13:19:04 +08:00
60a628aefe
Signed-off-by: Kingtous <kingtous@qq.com>
129 lines
4.2 KiB
Dart
129 lines
4.2 KiB
Dart
import 'dart:convert';
|
|
import 'dart:math';
|
|
|
|
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/titlebar_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<String, dynamic> params;
|
|
|
|
const FileManagerTabPage({Key? key, required this.params}) : super(key: key);
|
|
|
|
@override
|
|
State<FileManagerTabPage> createState() => _FileManagerTabPageState(params);
|
|
}
|
|
|
|
class _FileManagerTabPageState extends State<FileManagerTabPage>
|
|
with SingleTickerProviderStateMixin {
|
|
// refactor List<int> when using multi-tab
|
|
// this singleton is only for test
|
|
var connectionIds = List<String>.empty(growable: true).obs;
|
|
var initialIndex = 0.obs;
|
|
|
|
_FileManagerTabPageState(Map<String, dynamic> params) {
|
|
if (params['id'] != null) {
|
|
connectionIds.add(params['id']);
|
|
}
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
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'];
|
|
final indexOf = connectionIds.indexOf(id);
|
|
if (indexOf >= 0) {
|
|
initialIndex.value = indexOf;
|
|
} else {
|
|
connectionIds.add(id);
|
|
initialIndex.value = connectionIds.length - 1;
|
|
}
|
|
} else if (call.method == "onDestroy") {
|
|
print("executing onDestroy hook, closing ${connectionIds}");
|
|
connectionIds.forEach((id) {
|
|
final tag = 'ft_${id}';
|
|
ffi(tag).close().then((_) {
|
|
Get.delete<FFI>(tag: tag);
|
|
});
|
|
});
|
|
Get.back();
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: Obx(
|
|
()=> DefaultTabController(
|
|
initialIndex: initialIndex.value,
|
|
length: connectionIds.length,
|
|
animationDuration: Duration.zero,
|
|
child: Column(
|
|
children: [
|
|
DesktopTitleBar(
|
|
child: TabBar(
|
|
isScrollable: true,
|
|
labelColor: Colors.white,
|
|
physics: NeverScrollableScrollPhysics(),
|
|
indicatorColor: Colors.white,
|
|
tabs: connectionIds
|
|
.map((e) => Tab(
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
Text(e),
|
|
SizedBox(
|
|
width: 4,
|
|
),
|
|
InkWell(
|
|
onTap: () {
|
|
onRemoveId(e);
|
|
},
|
|
child: Icon(
|
|
Icons.highlight_remove,
|
|
size: 20,
|
|
))
|
|
],
|
|
),
|
|
))
|
|
.toList()),
|
|
),
|
|
Expanded(
|
|
child: TabBarView(
|
|
children: connectionIds
|
|
.map((e) => Container(
|
|
child: FileManagerPage(
|
|
key: ValueKey(e),
|
|
id: e))) //RemotePage(key: ValueKey(e), id: e))
|
|
.toList()),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void onRemoveId(String id) {
|
|
final indexOf = connectionIds.indexOf(id);
|
|
if (indexOf == -1) {
|
|
return;
|
|
}
|
|
connectionIds.removeAt(indexOf);
|
|
initialIndex.value = max(0, initialIndex.value - 1);
|
|
}
|
|
}
|