mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-21 23:19:17 +00:00
Begin UI Redesign, switch to icon font
This commit is contained in:
@@ -0,0 +1,147 @@
|
||||
using Xamarin.Forms;
|
||||
using System.Net;
|
||||
using System;
|
||||
using Acr.UserDialogs;
|
||||
using Acr.Settings;
|
||||
using Zeroconf;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace qController
|
||||
{
|
||||
|
||||
public partial class QConnectionPage : ContentPage
|
||||
{
|
||||
public QConnectionPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
InitGUI();
|
||||
App.rootPage.MenuItemSelected += OnMenuItemSelected;
|
||||
}
|
||||
|
||||
private void OnMenuItemSelected(object source, MenuEventArgs args)
|
||||
{
|
||||
Console.WriteLine("Menu Item Selected: " + args.Command);
|
||||
if(args.Command == "scan")
|
||||
{
|
||||
Scan();
|
||||
}
|
||||
else if(args.Command == "add")
|
||||
{
|
||||
AddWorkspace();
|
||||
}else if(args.Command == "open_link")
|
||||
{
|
||||
Device.OpenUri(new Uri("http://www.example.com"));
|
||||
}
|
||||
}
|
||||
|
||||
private void InitGUI()
|
||||
{
|
||||
NavigationPage.SetHasNavigationBar(this, false);
|
||||
lstView.ItemsSource = QStorage.qInstances;
|
||||
|
||||
|
||||
lstView.ItemTemplate = new DataTemplate(typeof(QInstanceCell));
|
||||
lstView.SeparatorVisibility = SeparatorVisibility.None;
|
||||
lstView.ItemTapped += (object sender, ItemTappedEventArgs e) =>
|
||||
{
|
||||
// don't do anything if we just de-selected the row
|
||||
if (e.Item == null) return;
|
||||
// do something with e.SelectedItem
|
||||
((ListView)sender).SelectedItem = null; // de-select the row
|
||||
};
|
||||
topBar.BackgroundColor = Color.FromHex("71AEFF");
|
||||
|
||||
switch (Device.RuntimePlatform)
|
||||
{
|
||||
case Device.iOS:
|
||||
menuButton.Margin = new Thickness(20, 35, 20, 10);
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
menuButton.Text = "\uF0C9";
|
||||
|
||||
lstView.BackgroundColor = Color.FromHex("4A4A4A");
|
||||
BackgroundColor = Color.FromHex("4A4A4A");
|
||||
var scanButtonGesture = new TapGestureRecognizer();
|
||||
|
||||
scanButtonGesture.Tapped += showMenu;
|
||||
menuButton.GestureRecognizers.Add(scanButtonGesture);
|
||||
|
||||
}
|
||||
|
||||
void AddWorkspace(){
|
||||
|
||||
UserDialogs.Instance.Prompt(new PromptConfig
|
||||
{
|
||||
Title = "Enter IP of QLab Computer",
|
||||
Message = "Enter an IP Address to save",
|
||||
OkText = "Next",
|
||||
OnTextChanged = args =>
|
||||
{
|
||||
//IPAddress ugh
|
||||
args.IsValid = IPHelper.IsValidAddress(args.Value);
|
||||
},
|
||||
OnAction = (qAddress) =>
|
||||
{
|
||||
if (!qAddress.Ok)
|
||||
return;
|
||||
|
||||
UserDialogs.Instance.Prompt(new PromptConfig
|
||||
{
|
||||
Title="Enter Name",
|
||||
Message = "Enter a Name for " + qAddress.Text,
|
||||
OkText="Save",
|
||||
OnAction = (qName) => {
|
||||
if (!qName.Ok)
|
||||
return;
|
||||
QStorage.AddInstance(qName.Text,qAddress.Text);
|
||||
showToast("Manual Workspace Added!");
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
async void Scan(){
|
||||
bool workspacesFound = false;
|
||||
showToast("Scanning for Workspaces...");
|
||||
Console.WriteLine("Begin Scanning");
|
||||
|
||||
IReadOnlyList<IZeroconfHost> results = await ZeroconfResolver.ResolveAsync("_qlab._udp.local.",TimeSpan.FromSeconds(3));
|
||||
if(results != null){
|
||||
foreach (var result in results)
|
||||
{
|
||||
if (result != null)
|
||||
{
|
||||
QStorage.AddInstance(result.DisplayName, result.IPAddress);
|
||||
Console.WriteLine(result.DisplayName + " @ " + result.IPAddress + " added");
|
||||
workspacesFound = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(workspacesFound){
|
||||
showToast("Workspace Found and Added!");
|
||||
}else{
|
||||
showToast("No Workspaces Found!");
|
||||
}
|
||||
}
|
||||
|
||||
void showMenu(object sender, EventArgs e)
|
||||
{
|
||||
App.MenuIsPresented = true;
|
||||
}
|
||||
|
||||
void showToast(string message)
|
||||
{
|
||||
var toastConfig = new ToastConfig(message);
|
||||
toastConfig.SetDuration(3000);
|
||||
toastConfig.SetPosition(ToastPosition.Bottom);
|
||||
UserDialogs.Instance.Toast(toastConfig);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user