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
+ }
0 commit comments