-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: integrate the tray app with RPC #19
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using System; | ||
using Windows.UI; | ||
using Coder.Desktop.App.ViewModels; | ||
using Microsoft.UI.Xaml.Data; | ||
using Microsoft.UI.Xaml.Media; | ||
|
||
namespace Coder.Desktop.App.Converters; | ||
|
||
public class AgentStatusToColorConverter : IValueConverter | ||
{ | ||
private static readonly SolidColorBrush Green = new(Color.FromArgb(255, 52, 199, 89)); | ||
private static readonly SolidColorBrush Red = new(Color.FromArgb(255, 255, 59, 48)); | ||
private static readonly SolidColorBrush Gray = new(Color.FromArgb(255, 142, 142, 147)); | ||
|
||
public object Convert(object value, Type targetType, object parameter, string language) | ||
{ | ||
if (value is not AgentConnectionStatus status) return Gray; | ||
|
||
return status switch | ||
{ | ||
AgentConnectionStatus.Green => Green, | ||
AgentConnectionStatus.Red => Red, | ||
_ => Gray, | ||
}; | ||
} | ||
|
||
public object ConvertBack(object value, Type targetType, object parameter, string language) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using DependencyPropertyGenerator; | ||
using Microsoft.UI.Xaml; | ||
using Microsoft.UI.Xaml.Data; | ||
|
||
namespace Coder.Desktop.App.Converters; | ||
|
||
[DependencyProperty<object>("TrueValue", DefaultValue = true)] | ||
[DependencyProperty<object>("FalseValue", DefaultValue = true)] | ||
public partial class BoolToObjectConverter : DependencyObject, IValueConverter | ||
{ | ||
public object Convert(object value, Type targetType, object parameter, string language) | ||
{ | ||
return value is true ? TrueValue : FalseValue; | ||
} | ||
|
||
public object ConvertBack(object value, Type targetType, object parameter, string language) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Microsoft.UI.Xaml; | ||
|
||
namespace Coder.Desktop.App.Converters; | ||
|
||
public partial class BoolToVisibilityConverter : BoolToObjectConverter | ||
{ | ||
public BoolToVisibilityConverter() | ||
{ | ||
TrueValue = Visibility.Visible; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We're using these converters to allow the VpnLifecycle to control visibility -- would it be more readable to have these conversions operate directly on the lifecycle? So, instead of a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added a bunch of converters to replace a lot of the random bools in the ViewModel. |
||
FalseValue = Visibility.Collapsed; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Microsoft.UI.Xaml; | ||
|
||
namespace Coder.Desktop.App.Converters; | ||
|
||
public partial class InverseBoolToVisibilityConverter : BoolToObjectConverter | ||
{ | ||
public InverseBoolToVisibilityConverter() | ||
{ | ||
TrueValue = Visibility.Collapsed; | ||
FalseValue = Visibility.Visible; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using Coder.Desktop.App.Models; | ||
using DependencyPropertyGenerator; | ||
using Microsoft.UI.Xaml; | ||
using Microsoft.UI.Xaml.Data; | ||
|
||
namespace Coder.Desktop.App.Converters; | ||
|
||
[DependencyProperty<bool>("Starting", DefaultValue = false)] | ||
[DependencyProperty<bool>("Started", DefaultValue = false)] | ||
[DependencyProperty<bool>("Stopping", DefaultValue = false)] | ||
[DependencyProperty<bool>("Stopped", DefaultValue = false)] | ||
public partial class VpnLifecycleToBoolConverter : DependencyObject, IValueConverter | ||
{ | ||
public object Convert(object value, Type targetType, object parameter, string language) | ||
{ | ||
if (value is not VpnLifecycle lifecycle) return Stopped; | ||
|
||
return lifecycle switch | ||
{ | ||
VpnLifecycle.Starting => Starting, | ||
VpnLifecycle.Started => Started, | ||
VpnLifecycle.Stopping => Stopping, | ||
VpnLifecycle.Stopped => Stopped, | ||
_ => Visibility.Collapsed, | ||
}; | ||
} | ||
|
||
public object ConvertBack(object value, Type targetType, object parameter, string language) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System; | ||
using Microsoft.UI.Xaml; | ||
using Microsoft.UI.Xaml.Data; | ||
|
||
namespace Coder.Desktop.App.Converters; | ||
|
||
public partial class VpnLifecycleToVisibilityConverter : VpnLifecycleToBoolConverter, IValueConverter | ||
{ | ||
public new object Convert(object value, Type targetType, object parameter, string language) | ||
{ | ||
var boolValue = base.Convert(value, targetType, parameter, language); | ||
return boolValue is true ? Visibility.Visible : Visibility.Collapsed; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
namespace Coder.Desktop.App.Models; | ||
|
||
public enum CredentialState | ||
{ | ||
Invalid, | ||
Valid, | ||
} | ||
|
||
public class CredentialModel | ||
{ | ||
public CredentialState State { get; set; } = CredentialState.Invalid; | ||
|
||
public string? CoderUrl { get; set; } | ||
public string? ApiToken { get; set; } | ||
|
||
public CredentialModel Clone() | ||
{ | ||
return new CredentialModel | ||
{ | ||
State = State, | ||
CoderUrl = CoderUrl, | ||
ApiToken = ApiToken, | ||
}; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Coder.Desktop.App.Models; | ||
|
||
public enum RpcLifecycle | ||
{ | ||
Disconnected, | ||
Connecting, | ||
Connected, | ||
} | ||
|
||
public enum VpnLifecycle | ||
{ | ||
Stopped, | ||
Starting, | ||
Started, | ||
Stopping, | ||
} | ||
|
||
public class RpcModel | ||
{ | ||
public RpcLifecycle RpcLifecycle { get; set; } = RpcLifecycle.Disconnected; | ||
|
||
public VpnLifecycle VpnLifecycle { get; set; } = VpnLifecycle.Stopped; | ||
|
||
public List<object> Agents { get; set; } = []; | ||
|
||
public RpcModel Clone() | ||
{ | ||
return new RpcModel | ||
{ | ||
RpcLifecycle = RpcLifecycle, | ||
VpnLifecycle = VpnLifecycle, | ||
Agents = Agents, | ||
}; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we want the view models to be singletons as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we need to. They use other singletons as a source of truth for their data so there isn't really a point to making an interface for them.
Writing an interface for a ViewModel is also a pain AFAIK because of all of the observable property stuff that would need to be added to the interface for each property.