mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-02 07:55:11 +08:00
94 lines
3.2 KiB
Dart
94 lines
3.2 KiB
Dart
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:desktop_multi_window/desktop_multi_window.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:network_proxy/network/bin/server.dart';
|
|
import 'package:network_proxy/ui/component/encoder.dart';
|
|
import 'package:network_proxy/ui/component/multi_window.dart';
|
|
import 'package:network_proxy/ui/mobile/request/request_editor.dart';
|
|
import 'package:network_proxy/utils/platform.dart';
|
|
import 'package:window_manager/window_manager.dart';
|
|
|
|
class Toolbox extends StatefulWidget {
|
|
final ProxyServer? proxyServer;
|
|
|
|
const Toolbox({Key? key, this.proxyServer}) : super(key: key);
|
|
|
|
@override
|
|
State<StatefulWidget> createState() {
|
|
return _ToolboxState();
|
|
}
|
|
}
|
|
|
|
class _ToolboxState extends State<Toolbox> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: const EdgeInsets.all(10),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const Divider(thickness: 0.3),
|
|
InkWell(
|
|
onTap: httpRequest,
|
|
child: Container(
|
|
padding: const EdgeInsets.all(10),
|
|
child: const Column(children: [Icon(Icons.http), Text('发起请求', style: TextStyle(fontSize: 14))]),
|
|
)),
|
|
const Divider(thickness: 0.3),
|
|
const Text('编码', style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold)),
|
|
Row(
|
|
children: [
|
|
InkWell(
|
|
onTap: () => encodeWindow(EncoderType.url, context),
|
|
child: Container(
|
|
padding: const EdgeInsets.all(10),
|
|
child: const Column(children: [Icon(Icons.link), Text(' URL')]),
|
|
)),
|
|
const SizedBox(width: 10),
|
|
InkWell(
|
|
onTap: () => encodeWindow(EncoderType.base64, context),
|
|
child: Container(
|
|
padding: const EdgeInsets.all(10),
|
|
child: const Column(children: [Icon(Icons.currency_bitcoin), Text('Base64')]),
|
|
)),
|
|
const SizedBox(width: 15),
|
|
InkWell(
|
|
onTap: () => encodeWindow(EncoderType.md5, context),
|
|
child: Container(
|
|
padding: const EdgeInsets.all(10),
|
|
child: const Column(children: [Icon(Icons.enhanced_encryption), Text('MD5')]),
|
|
)),
|
|
],
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
httpRequest() async {
|
|
if (Platforms.isMobile()) {
|
|
Navigator.of(context)
|
|
.push(MaterialPageRoute(builder: (context) => MobileRequestEditor(proxyServer: widget.proxyServer)));
|
|
return;
|
|
}
|
|
|
|
var size = MediaQuery.of(context).size;
|
|
var ratio = 1.0;
|
|
if (Platform.isWindows) {
|
|
ratio = WindowManager.instance.getDevicePixelRatio();
|
|
}
|
|
|
|
final window = await DesktopMultiWindow.createWindow(jsonEncode(
|
|
{'name': 'RequestEditor'},
|
|
));
|
|
window.setTitle('请求发送');
|
|
window
|
|
..setFrame(const Offset(100, 100) & Size(960 * ratio, size.height * ratio))
|
|
..center()
|
|
..show();
|
|
}
|
|
}
|