Present pages on Mac and Windows

Working on #14
This commit is contained in:
Frank A. Krueger 2017-07-06 15:39:44 -07:00
parent 311e01dada
commit 1e16f91e76
2 changed files with 32 additions and 0 deletions

View File

@ -87,6 +87,36 @@ namespace Ooui
Publish (path, () => element); Publish (path, () => element);
} }
public static void Present (string path, object presenter = null)
{
var localHost = host == "*" ? "localhost" : host;
var url = $"http://{localHost}:{port}{path}";
Console.WriteLine ($"PRESENT {url}");
var cmd = url;
var args = "";
var osv = Environment.OSVersion;
if (osv.Platform == PlatformID.Unix) {
cmd = "open";
args = url;
}
// var vs = Environment.GetEnvironmentVariables ();
// foreach (System.Collections.DictionaryEntry kv in vs) {
// System.Console.WriteLine($"K={kv.Key}, V={kv.Value}");
// }
Console.WriteLine ($"EXEC {cmd} {args}");
try {
System.Diagnostics.Process.Start (cmd, args);
}
catch (Exception ex) {
System.Console.WriteLine("FAILED TO EXEC");
System.Console.WriteLine(ex);
}
}
static void Start () static void Start ()
{ {
if (serverCts != null) return; if (serverCts != null) return;

View File

@ -26,6 +26,8 @@ namespace Samples
new ButtonSample ().Publish (); new ButtonSample ().Publish ();
new TodoSample ().Publish (); new TodoSample ().Publish ();
UI.Present ("/todo");
Console.ReadLine (); Console.ReadLine ();
} }
} }