Skip to content

Commit dec1d6d

Browse files
committed
initial commit
0 parents  commit dec1d6d

File tree

113 files changed

+10754
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+10754
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
bin/
2+
obj/
3+
packages/
4+
*.suo
5+
*.csproj.user
6+
project.lock.json
7+
*.sdf
8+

PeerConnectionClient.Shared/App.xaml

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
<Application
2+
x:Class="PeerConnectionClient.App"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5+
xmlns:local="using:PeerConnectionClient">
6+
<Application.Resources>
7+
<Style x:Key="TextBlockButtonStyle" TargetType="ButtonBase">
8+
<Setter Property="MinWidth" Value="0"/>
9+
<Setter Property="MinHeight" Value="0"/>
10+
<Setter Property="Template">
11+
<Setter.Value>
12+
<ControlTemplate TargetType="ButtonBase">
13+
<Grid Background="Transparent">
14+
<ContentPresenter x:Name="Text" Content="{TemplateBinding Content}" />
15+
<Rectangle
16+
x:Name="FocusVisualWhite"
17+
IsHitTestVisible="False"
18+
Stroke="{ThemeResource FocusVisualWhiteStrokeThemeBrush}"
19+
StrokeEndLineCap="Square"
20+
StrokeDashArray="1,1"
21+
Opacity="0"
22+
StrokeDashOffset="1.5"/>
23+
<Rectangle
24+
x:Name="FocusVisualBlack"
25+
IsHitTestVisible="False"
26+
Stroke="{ThemeResource FocusVisualBlackStrokeThemeBrush}"
27+
StrokeEndLineCap="Square"
28+
StrokeDashArray="1,1"
29+
Opacity="0"
30+
StrokeDashOffset="0.5"/>
31+
<VisualStateManager.VisualStateGroups>
32+
<VisualStateGroup x:Name="CommonStates">
33+
<VisualState x:Name="Normal"/>
34+
<VisualState x:Name="PointerOver">
35+
<Storyboard>
36+
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Foreground">
37+
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ApplicationPointerOverForegroundThemeBrush}"/>
38+
</ObjectAnimationUsingKeyFrames>
39+
</Storyboard>
40+
</VisualState>
41+
<VisualState x:Name="Pressed">
42+
<Storyboard>
43+
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Foreground">
44+
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ApplicationPressedForegroundThemeBrush}"/>
45+
</ObjectAnimationUsingKeyFrames>
46+
</Storyboard>
47+
</VisualState>
48+
<VisualState x:Name="Disabled">
49+
<Storyboard>
50+
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Foreground">
51+
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ApplicationPressedForegroundThemeBrush}"/>
52+
</ObjectAnimationUsingKeyFrames>
53+
</Storyboard>
54+
</VisualState>
55+
</VisualStateGroup>
56+
<VisualStateGroup x:Name="FocusStates">
57+
<VisualState x:Name="Focused">
58+
<Storyboard>
59+
<DoubleAnimation Duration="0" To="1" Storyboard.TargetName="FocusVisualWhite" Storyboard.TargetProperty="Opacity"/>
60+
<DoubleAnimation Duration="0" To="1" Storyboard.TargetName="FocusVisualBlack" Storyboard.TargetProperty="Opacity"/>
61+
</Storyboard>
62+
</VisualState>
63+
<VisualState x:Name="Unfocused"/>
64+
</VisualStateGroup>
65+
<VisualStateGroup x:Name="CheckStates">
66+
<VisualState x:Name="Checked"/>
67+
<VisualState x:Name="Unchecked">
68+
<Storyboard>
69+
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Foreground">
70+
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ApplicationSecondaryForegroundThemeBrush}"/>
71+
</ObjectAnimationUsingKeyFrames>
72+
</Storyboard>
73+
</VisualState>
74+
<VisualState x:Name="Indeterminate"/>
75+
</VisualStateGroup>
76+
</VisualStateManager.VisualStateGroups>
77+
</Grid>
78+
</ControlTemplate>
79+
</Setter.Value>
80+
</Setter>
81+
</Style>
82+
</Application.Resources>
83+
</Application>
+184
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
//*********************************************************
2+
//
3+
// Copyright (c) Microsoft. All rights reserved.
4+
// This code is licensed under the MIT License (MIT).
5+
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
6+
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
7+
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
8+
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
9+
//
10+
//*********************************************************
11+
12+
using System;
13+
using Windows.ApplicationModel;
14+
using Windows.ApplicationModel.Activation;
15+
using Windows.ApplicationModel.Core;
16+
using Windows.UI.Xaml;
17+
using Windows.UI.Xaml.Controls;
18+
using Windows.UI.Xaml.Media.Animation;
19+
using Windows.UI.Xaml.Navigation;
20+
using PeerConnectionClient.ViewModels;
21+
using HockeyApp;
22+
23+
namespace PeerConnectionClient
24+
{
25+
/// <summary>
26+
/// Provides application-specific behavior to supplement the default Application class.
27+
/// </summary>
28+
public sealed partial class App
29+
{
30+
#if WINDOWS_PHONE_APP
31+
private TransitionCollection _transitions;
32+
#endif
33+
private MainViewModel _mainViewModel;
34+
35+
/// <summary>
36+
/// Initializes the singleton application object. This is the first line of authored code
37+
/// executed, and as such is the logical equivalent of main() or WinMain().
38+
/// </summary>
39+
public App()
40+
{
41+
InitializeComponent();
42+
Suspending += OnSuspending;
43+
44+
// configure hockey app SDK with correct app ID for current device
45+
#if WINDOWS_PHONE_APP
46+
HockeyClient.Current.Configure("554a20152df3077b8ffca13f6eedc686");
47+
#else
48+
HockeyClient.Current.Configure("e95ace8ed81020bd1b3c468f59a1f834");
49+
#endif
50+
}
51+
52+
/// <summary>
53+
/// Invoked when the application is launched normally by the end user. Other entry points
54+
/// will be used when the application is launched to open a specific file, to display
55+
/// search results, and so forth.
56+
/// </summary>
57+
/// <param name="e">Details about the launch request and process.</param>
58+
protected async override void OnLaunched(LaunchActivatedEventArgs e)
59+
{
60+
#if DEBUG
61+
//if (System.Diagnostics.Debugger.IsAttached)
62+
//{
63+
// this.DebugSettings.EnableFrameRateCounter = true;
64+
//}
65+
#endif
66+
67+
var rootFrame = Window.Current.Content as Frame;
68+
69+
// Do not repeat app initialization when the Window already has content,
70+
// just ensure that the window is active
71+
if (rootFrame == null)
72+
{
73+
// Create a Frame to act as the navigation context and navigate to the first page
74+
rootFrame = new Frame
75+
{
76+
CacheSize = 1
77+
};
78+
79+
// Place the frame in the current Window
80+
Window.Current.Content = rootFrame;
81+
}
82+
83+
if (rootFrame.Content == null)
84+
{
85+
#if WINDOWS_PHONE_APP
86+
// Removes the turnstile navigation for startup.
87+
if (rootFrame.ContentTransitions != null)
88+
{
89+
_transitions = new TransitionCollection();
90+
foreach (var c in rootFrame.ContentTransitions)
91+
{
92+
_transitions.Add(c);
93+
}
94+
}
95+
96+
rootFrame.ContentTransitions = null;
97+
rootFrame.Navigated += RootFrame_FirstNavigated;
98+
#endif
99+
100+
// When the navigation stack isn't restored navigate to the first page,
101+
// configuring the new page by passing required information as a navigation
102+
// parameter
103+
//if (!rootFrame.Navigate(typeof(MainPage), e.Arguments))
104+
if (!rootFrame.Navigate(typeof(ExtendedSplashScreen), e.SplashScreen))
105+
{
106+
throw new Exception("Failed to create extended splashscreen");
107+
}
108+
}
109+
110+
//Do not activate now, will be activated by ExtendedSplashScreen.
111+
//https://msdn.microsoft.com/en-us/library/windows/apps/hh465338.aspx:
112+
//"Flicker occurs if you activate the current window (by calling Window.Current.Activate)
113+
//before the content of the page finishes rendering. You can reduce the likelihood of seeing
114+
//a flicker by making sure your extended splash screen image has been read before you activate
115+
//the current window. Additionally, you should use a timer to try to avoid the flicker by
116+
//making your application wait briefly, 50ms for example, before you activate the current window.
117+
//Unfortunately, there is no guaranteed way to prevent the flicker because XAML renders content
118+
//asynchronously and there is no guaranteed way to predict when rendering will be complete."
119+
//Window.Current.Activate();
120+
_mainViewModel = new MainViewModel(CoreApplication.MainView.CoreWindow.Dispatcher);
121+
_mainViewModel.OnInitialized += OnMainViewModelInitialized;
122+
123+
await HockeyClient.Current.SendCrashesAsync(true);
124+
125+
#if WINDOWS_PHONE_APP
126+
await HockeyClient.Current.CheckForAppUpdateAsync(); // updates only supported for WP apps
127+
#endif
128+
}
129+
130+
#if WINDOWS_PHONE_APP
131+
/// <summary>
132+
/// Restores the content transitions after the app has launched.
133+
/// </summary>
134+
/// <param name="sender">The object where the handler is attached.</param>
135+
/// <param name="e">Details about the navigation event.</param>
136+
private void RootFrame_FirstNavigated(object sender, NavigationEventArgs e)
137+
{
138+
var rootFrame = (Frame) sender;
139+
rootFrame.ContentTransitions = _transitions ?? new TransitionCollection { new NavigationThemeTransition() };
140+
rootFrame.Navigated -= RootFrame_FirstNavigated;
141+
}
142+
#endif
143+
144+
protected override void OnActivated(IActivatedEventArgs e)
145+
{
146+
base.OnActivated(e);
147+
#if WINDOWS_PHONE_APP
148+
HockeyClient.Current.HandleReactivationOfFeedbackFilePicker(e);
149+
#endif
150+
}
151+
152+
/// <summary>
153+
/// Invoked when application execution is being suspended. Application state is saved
154+
/// without knowing whether the application will be terminated or resumed with the contents
155+
/// of memory still intact.
156+
/// </summary>
157+
/// <param name="sender">The source of the suspend request.</param>
158+
/// <param name="e">Details about the suspend request.</param>
159+
private void OnSuspending(object sender, SuspendingEventArgs e)
160+
{
161+
var deferral = e.SuspendingOperation.GetDeferral();
162+
// Perform suspending logic on non UI thread to avoid deadlocks,
163+
// since some ongoing flows may need access to UI thread
164+
new System.Threading.Tasks.Task(async () =>
165+
{
166+
await _mainViewModel.OnAppSuspending();
167+
deferral.Complete();
168+
}).Start();
169+
}
170+
171+
/// <summary>
172+
/// Invoked when the application MainViewModel is initialized.
173+
/// Creates the application initial page
174+
/// </summary>
175+
private void OnMainViewModelInitialized()
176+
{
177+
var rootFrame = (Frame) Window.Current.Content;
178+
if (!rootFrame.Navigate(typeof(MainPage), _mainViewModel))
179+
{
180+
throw new Exception("Failed to create initial page");
181+
}
182+
}
183+
}
184+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
//*********************************************************
2+
//
3+
// Copyright (c) Microsoft. All rights reserved.
4+
// This code is licensed under the MIT License (MIT).
5+
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
6+
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
7+
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
8+
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
9+
//
10+
//*********************************************************
11+
12+
using System;
13+
using System.ComponentModel;
14+
using System.Linq.Expressions;
15+
using System.Reflection;
16+
using System.Runtime.CompilerServices;
17+
18+
namespace PeerConnectionClient.MVVM
19+
{
20+
/// <summary>
21+
/// The BindableBase class of the MVVM pattern.
22+
/// </summary>
23+
public abstract class BindableBase : INotifyPropertyChanged
24+
{
25+
public event PropertyChangedEventHandler PropertyChanged;
26+
27+
/// <summary>
28+
/// Checks if a property already matches a desired value. Sets the property and notifies listeners only when necessary.
29+
/// </summary>
30+
/// <typeparam name="T">The type of the property.</typeparam>
31+
/// <param name="storage">Reference to a property with both getter and setter.</param>
32+
/// <param name="value">Desired value for the property.</param>
33+
/// <param name="propertyName">Name of the property used to notify listeners.</param>
34+
/// <returns>True if the value was changed, false if the existing value matched the desired value.</returns>
35+
protected virtual bool SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null)
36+
{
37+
if (Equals(storage, value))
38+
{
39+
return false;
40+
}
41+
storage = value;
42+
OnPropertyChanged(propertyName);
43+
return true;
44+
}
45+
46+
/// <summary>
47+
/// Notifies listeners that a property value has changed.
48+
/// </summary>
49+
/// <param name="propertyName">Name of the property used to notify listeners.</param>
50+
protected virtual void OnPropertyChanged(string propertyName)
51+
{
52+
var changedEventHandler = PropertyChanged;
53+
if (changedEventHandler == null)
54+
{
55+
return;
56+
}
57+
changedEventHandler(this, new PropertyChangedEventArgs(propertyName));
58+
}
59+
60+
/// <summary>
61+
/// Raises this object's PropertyChanged event.
62+
/// </summary>
63+
/// <typeparam name="T">The type of the property that has a new value.</typeparam>
64+
/// <param name="propertyExpression">A Lambda expression representing the property that has a new value.</param>
65+
protected void OnPropertyChanged<T>(Expression<Func<T>> propertyExpression)
66+
{
67+
OnPropertyChanged(GetPropertyName(propertyExpression));
68+
}
69+
70+
/// <summary>
71+
/// Returns the name of a property identified by a lambda expression.
72+
/// </summary>
73+
/// <typeparam name="T">The type of the property</typeparam>
74+
/// <param name="propertyExpression">A lambda expression selecting the property.</param>
75+
/// <returns>The name of the property accessed by expression. </returns>
76+
private static string GetPropertyName<T>(Expression<Func<T>> propertyExpression)
77+
{
78+
if (propertyExpression == null)
79+
{
80+
throw new ArgumentNullException("propertyExpression");
81+
}
82+
83+
var memberExpression = propertyExpression.Body as MemberExpression;
84+
if (memberExpression == null)
85+
{
86+
throw new ArgumentException("propertyExpression");
87+
}
88+
89+
var propertyInfo = memberExpression.Member as PropertyInfo;
90+
if (propertyInfo == null)
91+
{
92+
throw new ArgumentException("propertyExpression");
93+
}
94+
95+
if (propertyInfo.GetMethod.IsStatic)
96+
{
97+
throw new ArgumentException("propertyExpression");
98+
}
99+
100+
return memberExpression.Member.Name;
101+
}
102+
}
103+
}

0 commit comments

Comments
 (0)