123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- // main window right pane
- import 'dart:async';
- import 'dart:convert';
- import 'package:flutter/material.dart';
- import 'package:flutter_hbb/common/widgets/connection_page_title.dart';
- import 'package:flutter_hbb/consts.dart';
- import 'package:flutter_hbb/models/state_model.dart';
- import 'package:get/get.dart';
- import 'package:url_launcher/url_launcher_string.dart';
- import 'package:window_manager/window_manager.dart';
- import 'package:flutter_hbb/models/peer_model.dart';
- import '../../common.dart';
- import '../../common/formatter/id_formatter.dart';
- import '../../common/widgets/peer_tab_page.dart';
- import '../../common/widgets/autocomplete.dart';
- import '../../models/platform_model.dart';
- import '../widgets/button.dart';
- class OnlineStatusWidget extends StatefulWidget {
- const OnlineStatusWidget({Key? key, this.onSvcStatusChanged})
- : super(key: key);
- final VoidCallback? onSvcStatusChanged;
- @override
- State<OnlineStatusWidget> createState() => _OnlineStatusWidgetState();
- }
- /// State for the connection page.
- class _OnlineStatusWidgetState extends State<OnlineStatusWidget> {
- final _svcStopped = Get.find<RxBool>(tag: 'stop-service');
- final _svcIsUsingPublicServer = true.obs;
- Timer? _updateTimer;
- double get em => 14.0;
- double? get height => bind.isIncomingOnly() ? null : em * 3;
- void onUsePublicServerGuide() {
- const url = "https://rustdesk.com/pricing";
- canLaunchUrlString(url).then((can) {
- if (can) {
- launchUrlString(url);
- }
- });
- }
- @override
- void initState() {
- super.initState();
- _updateTimer = periodic_immediate(Duration(seconds: 1), () async {
- updateStatus();
- });
- }
- @override
- void dispose() {
- _updateTimer?.cancel();
- super.dispose();
- }
- @override
- Widget build(BuildContext context) {
- final isIncomingOnly = bind.isIncomingOnly();
- startServiceWidget() => Offstage(
- offstage: !_svcStopped.value,
- child: InkWell(
- onTap: () async {
- await start_service(true);
- },
- child: Text(translate("Start service"),
- style: TextStyle(
- decoration: TextDecoration.underline, fontSize: em)))
- .marginOnly(left: em),
- );
- setupServerWidget() => Flexible(
- child: Offstage(
- offstage: !(!_svcStopped.value &&
- stateGlobal.svcStatus.value == SvcStatus.ready &&
- _svcIsUsingPublicServer.value),
- child: Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Text(', ', style: TextStyle(fontSize: em)),
- Flexible(
- child: InkWell(
- onTap: onUsePublicServerGuide,
- child: Row(
- children: [
- Flexible(
- child: Text(
- translate('setup_server_tip'),
- style: TextStyle(
- decoration: TextDecoration.underline,
- fontSize: em),
- ),
- ),
- ],
- ),
- ),
- )
- ],
- ),
- ),
- );
- basicWidget() => Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Container(
- height: 8,
- width: 8,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(4),
- color: _svcStopped.value ||
- stateGlobal.svcStatus.value == SvcStatus.connecting
- ? kColorWarn
- : (stateGlobal.svcStatus.value == SvcStatus.ready
- ? Color.fromARGB(255, 50, 190, 166)
- : Color.fromARGB(255, 224, 79, 95)),
- ),
- ).marginSymmetric(horizontal: em),
- Container(
- width: isIncomingOnly ? 226 : null,
- child: _buildConnStatusMsg(),
- ),
- // stop
- if (!isIncomingOnly) startServiceWidget(),
- // ready && public
- // No need to show the guide if is custom client.
- if (!isIncomingOnly) setupServerWidget(),
- ],
- );
- return Container(
- height: height,
- child: Obx(() => isIncomingOnly
- ? Column(
- children: [
- basicWidget(),
- Align(
- child: startServiceWidget(),
- alignment: Alignment.centerLeft)
- .marginOnly(top: 2.0, left: 22.0),
- ],
- )
- : basicWidget()),
- ).paddingOnly(right: isIncomingOnly ? 8 : 0);
- }
- _buildConnStatusMsg() {
- widget.onSvcStatusChanged?.call();
- return Text(
- _svcStopped.value
- ? translate("Service is not running")
- : stateGlobal.svcStatus.value == SvcStatus.connecting
- ? translate("connecting_status")
- : stateGlobal.svcStatus.value == SvcStatus.notReady
- ? translate("not_ready_status")
- : translate('Ready'),
- style: TextStyle(fontSize: em),
- );
- }
- updateStatus() async {
- final status =
- jsonDecode(await bind.mainGetConnectStatus()) as Map<String, dynamic>;
- final statusNum = status['status_num'] as int;
- if (statusNum == 0) {
- stateGlobal.svcStatus.value = SvcStatus.connecting;
- } else if (statusNum == -1) {
- stateGlobal.svcStatus.value = SvcStatus.notReady;
- } else if (statusNum == 1) {
- stateGlobal.svcStatus.value = SvcStatus.ready;
- } else {
- stateGlobal.svcStatus.value = SvcStatus.notReady;
- }
- _svcIsUsingPublicServer.value = await bind.mainIsUsingPublicServer();
- try {
- stateGlobal.videoConnCount.value = status['video_conn_count'] as int;
- } catch (_) {}
- }
- }
- /// Connection page for connecting to a remote peer.
- class ConnectionPage extends StatefulWidget {
- const ConnectionPage({Key? key}) : super(key: key);
- @override
- State<ConnectionPage> createState() => _ConnectionPageState();
- }
- /// State for the connection page.
- class _ConnectionPageState extends State<ConnectionPage>
- with SingleTickerProviderStateMixin, WindowListener {
- /// Controller for the id input bar.
- final _idController = IDTextEditingController();
- final RxBool _idInputFocused = false.obs;
- bool isWindowMinimized = false;
- List<Peer> peers = [];
- bool isPeersLoading = false;
- bool isPeersLoaded = false;
- // https://github.com/flutter/flutter/issues/157244
- Iterable<Peer> _autocompleteOpts = [];
- @override
- void initState() {
- super.initState();
- if (_idController.text.isEmpty) {
- WidgetsBinding.instance.addPostFrameCallback((_) async {
- final lastRemoteId = await bind.mainGetLastRemoteId();
- if (lastRemoteId != _idController.id) {
- setState(() {
- _idController.id = lastRemoteId;
- });
- }
- });
- }
- Get.put<IDTextEditingController>(_idController);
- windowManager.addListener(this);
- }
- @override
- void dispose() {
- _idController.dispose();
- windowManager.removeListener(this);
- if (Get.isRegistered<IDTextEditingController>()) {
- Get.delete<IDTextEditingController>();
- }
- if (Get.isRegistered<TextEditingController>()) {
- Get.delete<TextEditingController>();
- }
- super.dispose();
- }
- @override
- void onWindowEvent(String eventName) {
- super.onWindowEvent(eventName);
- if (eventName == 'minimize') {
- isWindowMinimized = true;
- } else if (eventName == 'maximize' || eventName == 'restore') {
- if (isWindowMinimized && isWindows) {
- // windows can't update when minimized.
- Get.forceAppUpdate();
- }
- isWindowMinimized = false;
- }
- }
- @override
- void onWindowEnterFullScreen() {
- // Remove edge border by setting the value to zero.
- stateGlobal.resizeEdgeSize.value = 0;
- }
- @override
- void onWindowLeaveFullScreen() {
- // Restore edge border to default edge size.
- stateGlobal.resizeEdgeSize.value = stateGlobal.isMaximized.isTrue
- ? kMaximizeEdgeSize
- : windowResizeEdgeSize;
- }
- @override
- void onWindowClose() {
- super.onWindowClose();
- bind.mainOnMainWindowClose();
- }
- @override
- Widget build(BuildContext context) {
- final isOutgoingOnly = bind.isOutgoingOnly();
- return Column(
- children: [
- Expanded(
- child: Column(
- children: [
- Row(
- children: [
- Flexible(child: _buildRemoteIDTextField(context)),
- ],
- ).marginOnly(top: 22),
- SizedBox(height: 12),
- Divider().paddingOnly(right: 12),
- Expanded(child: PeerTabPage()),
- ],
- ).paddingOnly(left: 12.0)),
- if (!isOutgoingOnly) const Divider(height: 1),
- if (!isOutgoingOnly) OnlineStatusWidget()
- ],
- );
- }
- /// Callback for the connect button.
- /// Connects to the selected peer.
- void onConnect({bool isFileTransfer = false}) {
- var id = _idController.id;
- connect(context, id, isFileTransfer: isFileTransfer);
- }
- Future<void> _fetchPeers() async {
- setState(() {
- isPeersLoading = true;
- });
- await Future.delayed(Duration(milliseconds: 100));
- peers = await getAllPeers();
- setState(() {
- isPeersLoading = false;
- isPeersLoaded = true;
- });
- }
- /// UI for the remote ID TextField.
- /// Search for a peer.
- Widget _buildRemoteIDTextField(BuildContext context) {
- var w = Container(
- width: 320 + 20 * 2,
- padding: const EdgeInsets.fromLTRB(20, 24, 20, 22),
- decoration: BoxDecoration(
- borderRadius: const BorderRadius.all(Radius.circular(13)),
- border: Border.all(color: Theme.of(context).colorScheme.background)),
- child: Ink(
- child: Column(
- children: [
- getConnectionPageTitle(context, false).marginOnly(bottom: 15),
- Row(
- children: [
- Expanded(
- child: Autocomplete<Peer>(
- optionsBuilder: (TextEditingValue textEditingValue) {
- if (textEditingValue.text == '') {
- _autocompleteOpts = const Iterable<Peer>.empty();
- } else if (peers.isEmpty && !isPeersLoaded) {
- Peer emptyPeer = Peer(
- id: '',
- username: '',
- hostname: '',
- alias: '',
- platform: '',
- tags: [],
- hash: '',
- password: '',
- forceAlwaysRelay: false,
- rdpPort: '',
- rdpUsername: '',
- loginName: '',
- );
- _autocompleteOpts = [emptyPeer];
- } else {
- String textWithoutSpaces =
- textEditingValue.text.replaceAll(" ", "");
- if (int.tryParse(textWithoutSpaces) != null) {
- textEditingValue = TextEditingValue(
- text: textWithoutSpaces,
- selection: textEditingValue.selection,
- );
- }
- String textToFind = textEditingValue.text.toLowerCase();
- _autocompleteOpts = peers
- .where((peer) =>
- peer.id.toLowerCase().contains(textToFind) ||
- peer.username
- .toLowerCase()
- .contains(textToFind) ||
- peer.hostname
- .toLowerCase()
- .contains(textToFind) ||
- peer.alias.toLowerCase().contains(textToFind))
- .toList();
- }
- return _autocompleteOpts;
- },
- fieldViewBuilder: (
- BuildContext context,
- TextEditingController fieldTextEditingController,
- FocusNode fieldFocusNode,
- VoidCallback onFieldSubmitted,
- ) {
- fieldTextEditingController.text = _idController.text;
- Get.put<TextEditingController>(fieldTextEditingController);
- fieldFocusNode.addListener(() async {
- _idInputFocused.value = fieldFocusNode.hasFocus;
- if (fieldFocusNode.hasFocus && !isPeersLoading) {
- _fetchPeers();
- }
- });
- final textLength =
- fieldTextEditingController.value.text.length;
- // select all to facilitate removing text, just following the behavior of address input of chrome
- fieldTextEditingController.selection =
- TextSelection(baseOffset: 0, extentOffset: textLength);
- return Obx(() => TextField(
- autocorrect: false,
- enableSuggestions: false,
- keyboardType: TextInputType.visiblePassword,
- focusNode: fieldFocusNode,
- style: const TextStyle(
- fontFamily: 'WorkSans',
- fontSize: 22,
- height: 1.4,
- ),
- maxLines: 1,
- cursorColor:
- Theme.of(context).textTheme.titleLarge?.color,
- decoration: InputDecoration(
- filled: false,
- counterText: '',
- hintText: _idInputFocused.value
- ? null
- : translate('Enter Remote ID'),
- contentPadding: const EdgeInsets.symmetric(
- horizontal: 15, vertical: 13)),
- controller: fieldTextEditingController,
- inputFormatters: [IDTextInputFormatter()],
- onChanged: (v) {
- _idController.id = v;
- },
- onSubmitted: (_) {
- onConnect();
- },
- ).workaroundFreezeLinuxMint());
- },
- onSelected: (option) {
- setState(() {
- _idController.id = option.id;
- FocusScope.of(context).unfocus();
- });
- },
- optionsViewBuilder: (BuildContext context,
- AutocompleteOnSelected<Peer> onSelected,
- Iterable<Peer> options) {
- options = _autocompleteOpts;
- double maxHeight = options.length * 50;
- if (options.length == 1) {
- maxHeight = 52;
- } else if (options.length == 3) {
- maxHeight = 146;
- } else if (options.length == 4) {
- maxHeight = 193;
- }
- maxHeight = maxHeight.clamp(0, 200);
- return Align(
- alignment: Alignment.topLeft,
- child: Container(
- decoration: BoxDecoration(
- boxShadow: [
- BoxShadow(
- color: Colors.black.withOpacity(0.3),
- blurRadius: 5,
- spreadRadius: 1,
- ),
- ],
- ),
- child: ClipRRect(
- borderRadius: BorderRadius.circular(5),
- child: Material(
- elevation: 4,
- child: ConstrainedBox(
- constraints: BoxConstraints(
- maxHeight: maxHeight,
- maxWidth: 319,
- ),
- child: peers.isEmpty && isPeersLoading
- ? Container(
- height: 80,
- child: Center(
- child: CircularProgressIndicator(
- strokeWidth: 2,
- ),
- ))
- : Padding(
- padding:
- const EdgeInsets.only(top: 5),
- child: ListView(
- children: options
- .map((peer) =>
- AutocompletePeerTile(
- onSelect: () =>
- onSelected(peer),
- peer: peer))
- .toList(),
- ),
- ),
- ),
- ))),
- );
- },
- )),
- ],
- ),
- Padding(
- padding: const EdgeInsets.only(top: 13.0),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.end,
- children: [
- Button(
- isOutline: true,
- onTap: () => onConnect(isFileTransfer: true),
- text: "Transfer file",
- ),
- const SizedBox(
- width: 17,
- ),
- Button(onTap: onConnect, text: "Connect"),
- ],
- ),
- )
- ],
- ),
- ),
- );
- return Container(
- constraints: const BoxConstraints(maxWidth: 600), child: w);
- }
- }
|