rustdesk/lib/home_page.dart

417 lines
14 KiB
Dart
Raw Normal View History

2020-11-15 20:04:05 +08:00
import 'package:flutter/material.dart';
2020-11-16 01:13:26 +08:00
import 'package:provider/provider.dart';
2020-11-26 00:33:45 +08:00
import 'package:tuple/tuple.dart';
2020-11-30 11:35:43 +08:00
import 'package:url_launcher/url_launcher.dart';
2020-11-30 15:04:59 +08:00
import 'dart:async';
2020-11-15 20:04:05 +08:00
import 'common.dart';
2022-01-26 12:48:16 +08:00
import 'model.dart';
import 'remote_page.dart';
2020-11-15 20:04:05 +08:00
class HomePage extends StatefulWidget {
HomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
final _idController = TextEditingController();
2020-11-30 15:04:59 +08:00
var _updateUrl = '';
2022-01-31 16:22:05 +08:00
var _menuPos = null;
2020-11-30 15:04:59 +08:00
@override
void initState() {
super.initState();
2022-01-25 18:13:11 +08:00
if (isAndroid) {
2021-08-14 14:14:01 +08:00
Timer(Duration(seconds: 5), () {
_updateUrl = FFI.getByName('software_update_url');
if (_updateUrl.isNotEmpty) setState(() {});
});
}
2020-11-30 15:04:59 +08:00
}
2020-11-15 20:04:05 +08:00
@override
Widget build(BuildContext context) {
2020-11-17 11:12:55 +08:00
Provider.of<FfiModel>(context);
2020-11-18 12:49:43 +08:00
if (_idController.text.isEmpty) _idController.text = FFI.getId();
2020-11-15 20:04:05 +08:00
// This method is rerun every time setState is called
return Scaffold(
2020-11-19 18:22:06 +08:00
backgroundColor: MyTheme.grayBg,
2020-11-16 01:13:26 +08:00
appBar: AppBar(
2020-11-26 00:33:45 +08:00
centerTitle: true,
actions: [
2022-01-31 16:22:05 +08:00
Ink(
child: InkWell(
child: Padding(
padding: const EdgeInsets.all(12),
child: Icon(Icons.more_vert)),
onTapDown: (e) {
var x = e.globalPosition.dx;
var y = e.globalPosition.dy;
this._menuPos = RelativeRect.fromLTRB(x, y, x, y);
},
onTap: () {
() async {
var value = await showMenu(
context: context,
position: this._menuPos,
items: [
PopupMenuItem<String>(
child: Text(translate('ID Server')),
value: 'server'),
PopupMenuItem<String>(
child: Text(translate('About') + ' RustDesk'),
value: 'about'),
],
elevation: 8,
);
if (value == 'server') {
showServer(context);
} else if (value == 'about') {
showAbout(context);
}
}();
}))
2020-11-26 00:33:45 +08:00
],
2020-11-16 01:13:26 +08:00
title: Text(widget.title),
2020-11-15 20:04:05 +08:00
),
2020-11-26 00:06:57 +08:00
body: SingleChildScrollView(
2020-11-16 01:13:26 +08:00
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
2020-11-30 15:04:59 +08:00
_updateUrl.isEmpty
? SizedBox(height: 0)
: InkWell(
onTap: () async {
final url = _updateUrl + '.apk';
if (await canLaunch(url)) {
await launch(url);
}
},
child: Container(
alignment: AlignmentDirectional.center,
width: double.infinity,
color: Colors.pinkAccent,
padding: EdgeInsets.symmetric(vertical: 12),
2021-08-14 14:14:01 +08:00
child: Text(translate('Download new version'),
2020-11-30 15:04:59 +08:00
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold)))),
2020-11-16 01:13:26 +08:00
getSearchBarUI(),
2022-01-31 16:22:05 +08:00
Container(height: 12),
2020-11-25 18:33:09 +08:00
getPeers(),
2020-11-16 01:13:26 +08:00
]),
));
}
void onConnect() {
var id = _idController.text.trim();
2020-11-25 18:33:09 +08:00
connect(id);
}
void connect(String id) {
2020-11-18 00:28:55 +08:00
if (id == '') return;
id = id.replaceAll(' ', '');
2020-11-25 18:33:09 +08:00
() async {
await Navigator.push<dynamic>(
context,
MaterialPageRoute<dynamic>(
builder: (BuildContext context) => RemotePage(id: id),
),
);
setState(() {});
}();
FocusScopeNode currentFocus = FocusScope.of(context);
if (!currentFocus.hasPrimaryFocus) {
currentFocus.unfocus();
}
2020-11-15 20:04:05 +08:00
}
Widget getSearchBarUI() {
2020-11-24 22:03:04 +08:00
if (!FFI.ffiModel.initialized) {
return Container();
}
2022-01-25 19:04:59 +08:00
var w = Padding(
2020-11-30 15:04:59 +08:00
padding: const EdgeInsets.fromLTRB(16.0, 8.0, 16.0, 0.0),
2020-11-16 01:13:26 +08:00
child: Container(
height: 84,
child: Padding(
padding: const EdgeInsets.only(top: 8, bottom: 8),
2022-01-31 16:22:05 +08:00
child: Ink(
2020-11-16 01:13:26 +08:00
decoration: BoxDecoration(
color: MyTheme.white,
borderRadius: const BorderRadius.only(
bottomRight: Radius.circular(13.0),
bottomLeft: Radius.circular(13.0),
topLeft: Radius.circular(13.0),
topRight: Radius.circular(13.0),
),
),
child: Row(
children: <Widget>[
Expanded(
child: Container(
padding: const EdgeInsets.only(left: 16, right: 16),
2020-11-23 01:16:17 +08:00
child: TextField(
autocorrect: false,
enableSuggestions: false,
2020-12-22 14:41:14 +08:00
keyboardType: TextInputType.visiblePassword,
// keyboardType: TextInputType.number,
2020-11-16 01:13:26 +08:00
style: TextStyle(
fontFamily: 'WorkSans',
fontWeight: FontWeight.bold,
fontSize: 30,
2022-01-31 16:22:05 +08:00
color: MyTheme.idColor,
2020-11-16 01:13:26 +08:00
),
decoration: InputDecoration(
labelText: translate('Remote ID'),
2020-11-23 01:16:17 +08:00
// hintText: 'Enter your remote ID',
2020-11-16 01:13:26 +08:00
border: InputBorder.none,
helperStyle: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16,
2022-01-31 16:22:05 +08:00
color: MyTheme.darkGray,
2020-11-16 01:13:26 +08:00
),
labelStyle: TextStyle(
fontWeight: FontWeight.w600,
fontSize: 16,
letterSpacing: 0.2,
2022-01-31 16:22:05 +08:00
color: MyTheme.darkGray,
2020-11-15 20:04:05 +08:00
),
),
autofocus: _idController.text.isEmpty,
controller: _idController,
2020-11-15 20:04:05 +08:00
),
2020-11-16 01:13:26 +08:00
),
2020-11-15 20:04:05 +08:00
),
2020-11-16 01:13:26 +08:00
SizedBox(
width: 60,
height: 60,
child: IconButton(
icon: Icon(Icons.arrow_forward,
2022-01-31 16:22:05 +08:00
color: MyTheme.darkGray, size: 45),
2020-11-16 01:13:26 +08:00
onPressed: onConnect,
autofocus: _idController.text.isNotEmpty,
2020-11-16 01:13:26 +08:00
),
)
],
2020-11-15 20:04:05 +08:00
),
),
2020-11-16 01:13:26 +08:00
),
2020-11-15 20:04:05 +08:00
),
);
2022-01-25 19:04:59 +08:00
return Center(
child: Container(constraints: BoxConstraints(maxWidth: 600), child: w));
2020-11-15 20:04:05 +08:00
}
2020-11-16 01:13:26 +08:00
@override
void dispose() {
_idController.dispose();
2020-11-16 01:13:26 +08:00
super.dispose();
}
2020-11-25 18:33:09 +08:00
Widget getPlatformImage(String platform) {
platform = platform.toLowerCase();
2020-11-25 20:39:08 +08:00
if (platform == 'mac os')
2020-11-25 18:33:09 +08:00
platform = 'mac';
else if (platform != 'linux') platform = 'win';
return Image.asset('assets/$platform.png', width: 24, height: 24);
2020-11-25 18:33:09 +08:00
}
Widget getPeers() {
if (!FFI.ffiModel.initialized) {
return Container();
}
2022-01-31 16:22:05 +08:00
final size = MediaQuery.of(context).size;
final space = 8.0;
var width = size.width - 2 * space;
final minWidth = 320.0;
if (size.width > minWidth + 2 * space) {
final n = (size.width / (minWidth + 2 * space)).floor();
width = size.width / n - 2 * space;
}
2020-11-25 18:33:09 +08:00
final cards = <Widget>[];
var peers = FFI.peers();
peers.forEach((p) {
2022-01-31 16:22:05 +08:00
cards.add(Container(
width: width,
2020-11-30 21:14:23 +08:00
child: Card(
child: GestureDetector(
2022-01-31 16:22:05 +08:00
onTap: () => {
if (!isDesktop) {connect('${p.id}')}
},
onDoubleTap: () => {
if (isDesktop) {connect('${p.id}')}
},
2020-11-30 21:14:23 +08:00
onLongPressStart: (details) {
var x = details.globalPosition.dx;
var y = details.globalPosition.dy;
2022-01-31 16:22:05 +08:00
this._menuPos = RelativeRect.fromLTRB(x, y, x, y);
this.showPeerMenu(context, p.id);
2020-11-30 21:14:23 +08:00
},
child: ListTile(
2022-01-31 16:22:05 +08:00
contentPadding: const EdgeInsets.only(left: 12),
2020-11-30 21:14:23 +08:00
subtitle: Text('${p.username}@${p.hostname}'),
title: Text('${p.id}'),
leading: Container(
padding: const EdgeInsets.all(6),
child: getPlatformImage('${p.platform}'),
2021-08-14 14:14:01 +08:00
color: str2color('${p.id}${p.platform}', 0x7f)),
2022-01-31 16:22:05 +08:00
trailing: InkWell(
child: Padding(
padding: const EdgeInsets.all(12),
child: Icon(Icons.more_vert)),
onTapDown: (e) {
var x = e.globalPosition.dx;
var y = e.globalPosition.dy;
this._menuPos = RelativeRect.fromLTRB(x, y, x, y);
},
onDoubleTap: () {},
onTap: () {
showPeerMenu(context, p.id);
}),
2020-11-30 21:14:23 +08:00
)))));
2020-11-25 18:33:09 +08:00
});
2022-01-31 16:22:05 +08:00
return Wrap(children: cards, spacing: space, runSpacing: space);
}
void showPeerMenu(BuildContext context, String id) async {
var value = await showMenu(
context: context,
position: this._menuPos,
items: [
PopupMenuItem<String>(
child: Text(translate('Remove')), value: 'remove'),
],
elevation: 8,
);
if (value == 'remove') {
setState(() => FFI.setByName('remove', '$id'));
() async {
removePreference(id);
}();
}
2020-11-25 18:33:09 +08:00
}
2020-11-15 20:04:05 +08:00
}
2020-11-26 00:33:45 +08:00
void showServer(BuildContext context) {
2020-11-26 00:47:52 +08:00
final formKey = GlobalKey<FormState>();
2021-08-06 22:29:11 +08:00
final id0 = FFI.getByName('option', 'custom-rendezvous-server');
final relay0 = FFI.getByName('option', 'relay-server');
final key0 = FFI.getByName('option', 'key');
2020-11-26 00:47:52 +08:00
var id = '';
var relay = '';
2021-04-01 16:59:42 +08:00
var key = '';
2020-11-26 00:33:45 +08:00
showAlertDialog(
context,
(setState) => Tuple3(
2021-08-06 22:45:45 +08:00
Text(translate('ID Server')),
2020-11-26 00:47:52 +08:00
Form(
key: formKey,
child:
Column(mainAxisSize: MainAxisSize.min, children: <Widget>[
TextFormField(
initialValue: id0,
2020-11-26 00:47:52 +08:00
decoration: InputDecoration(
labelText: translate('ID Server'),
2020-11-26 00:47:52 +08:00
),
validator: validate,
2020-11-26 00:47:52 +08:00
onSaved: (String value) {
id = value.trim();
2020-11-26 00:47:52 +08:00
},
),
2021-08-06 22:45:45 +08:00
/*
2020-11-26 00:47:52 +08:00
TextFormField(
initialValue: relay0,
2020-11-26 00:47:52 +08:00
decoration: InputDecoration(
labelText: translate('Relay Server'),
2020-11-26 00:47:52 +08:00
),
validator: validate,
2020-11-26 00:47:52 +08:00
onSaved: (String value) {
relay = value.trim();
2020-11-26 00:47:52 +08:00
},
),
2021-08-06 22:45:45 +08:00
*/
2021-04-01 16:59:42 +08:00
TextFormField(
initialValue: key0,
decoration: InputDecoration(
labelText: 'Key',
),
validator: null,
onSaved: (String value) {
key = value.trim();
},
),
2020-11-26 00:47:52 +08:00
])),
2020-11-26 00:33:45 +08:00
[
2021-08-02 20:54:56 +08:00
TextButton(
style: flatButtonStyle,
2020-11-26 00:33:45 +08:00
onPressed: () {
Navigator.pop(context);
},
2021-04-25 12:47:20 +08:00
child: Text(translate('Cancel')),
2020-11-26 00:33:45 +08:00
),
2021-08-02 20:54:56 +08:00
TextButton(
style: flatButtonStyle,
2020-11-26 00:33:45 +08:00
onPressed: () {
2020-11-26 00:47:52 +08:00
if (formKey.currentState.validate()) {
formKey.currentState.save();
if (id != id0)
2021-08-06 22:29:11 +08:00
FFI.setByName('option',
2022-01-26 12:48:16 +08:00
'{"name": "custom-rendezvous-server", "value": "$id"}');
2021-08-06 22:29:11 +08:00
if (relay != relay0)
FFI.setByName('option',
2022-01-26 12:48:16 +08:00
'{"name": "relay-server", "value": "$relay"}');
2021-08-06 22:29:11 +08:00
if (key != key0)
FFI.setByName(
2022-01-26 12:48:16 +08:00
'option', '{"name": "key", "value": "$key"}');
2020-11-26 00:47:52 +08:00
Navigator.pop(context);
}
2020-11-26 00:33:45 +08:00
},
child: Text(translate('OK')),
2020-11-26 00:33:45 +08:00
),
],
2020-11-30 11:35:43 +08:00
));
}
Future<Null> showAbout(BuildContext context) async {
2022-01-26 19:00:23 +08:00
var version = await FFI.getVersion();
2020-11-30 11:35:43 +08:00
showAlertDialog(
context,
(setState) => Tuple3(
null,
Wrap(direction: Axis.vertical, spacing: 12, children: [
2022-01-26 19:00:23 +08:00
Text('Version: $version'),
2020-11-30 11:35:43 +08:00
InkWell(
onTap: () async {
2021-04-07 21:58:30 +08:00
const url = 'https://rustdesk.com/';
2020-11-30 11:35:43 +08:00
if (await canLaunch(url)) {
await launch(url);
}
},
child: Padding(
padding: EdgeInsets.symmetric(vertical: 8),
child: Text('Support',
style: TextStyle(
decoration: TextDecoration.underline,
)),
)),
]),
null),
2020-11-26 00:33:45 +08:00
() async => true,
true);
}
String validate(value) {
value = value.trim();
if (value.isEmpty) {
return null;
}
final res = FFI.getByName('test_if_valid_server', value);
return res.isEmpty ? null : res;
}