Summary:
This change is the direct results of doing the following:
npx react-native-windows-init --overwrite
Notes: ignore the format warnings below. In this case, the ordering of includes does matter. Missing license is for auto-generated files, so ignore too.
Reviewed By: aigoncharov
Differential Revision: D36775215
fbshipit-source-id: 1cd00ff2bfc258c8505e97dcdbd9cb4365c4acfb
109 lines
3.4 KiB
C++
109 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "pch.h"
|
|
|
|
#include "App.h"
|
|
|
|
#include <ReactPackageProvider.h>
|
|
#include "AutolinkedNativeModules.g.h"
|
|
|
|
#include <winrt/ReactNativeFlipper.h>
|
|
|
|
using namespace winrt;
|
|
using namespace xaml;
|
|
using namespace xaml::Controls;
|
|
using namespace xaml::Navigation;
|
|
|
|
using namespace Windows::ApplicationModel;
|
|
namespace winrt::ReactNativeFlipperExample::implementation {
|
|
/// <summary>
|
|
/// Initializes the singleton application object. This is the first line of
|
|
/// authored code executed, and as such is the logical equivalent of main() or
|
|
/// WinMain().
|
|
/// </summary>
|
|
App::App() noexcept {
|
|
#if BUNDLE
|
|
JavaScriptBundleFile(L"index.windows");
|
|
InstanceSettings().UseWebDebugger(false);
|
|
InstanceSettings().UseFastRefresh(false);
|
|
#else
|
|
JavaScriptBundleFile(L"index");
|
|
InstanceSettings().UseWebDebugger(true);
|
|
InstanceSettings().UseFastRefresh(true);
|
|
#endif
|
|
|
|
#if _DEBUG
|
|
InstanceSettings().UseDeveloperSupport(true);
|
|
#else
|
|
InstanceSettings().UseDeveloperSupport(false);
|
|
#endif
|
|
|
|
RegisterAutolinkedNativeModulePackages(
|
|
PackageProviders()); // Includes any autolinked modules
|
|
|
|
PackageProviders().Append(
|
|
make<ReactPackageProvider>()); // Includes all modules in this project
|
|
|
|
PackageProviders().Append(winrt::ReactNativeFlipper::ReactPackageProvider());
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invoked when the application is launched normally by the end user. Other
|
|
/// entry points will be used such as when the application is launched to open a
|
|
/// specific file.
|
|
/// </summary>
|
|
/// <param name="e">Details about the launch request and process.</param>
|
|
void App::OnLaunched(activation::LaunchActivatedEventArgs const& e) {
|
|
super::OnLaunched(e);
|
|
|
|
Frame rootFrame = Window::Current().Content().as<Frame>();
|
|
rootFrame.Navigate(xaml_typename<MainPage>(), box_value(e.Arguments()));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invoked when the application is activated by some means other than normal
|
|
/// launching.
|
|
/// </summary>
|
|
void App::OnActivated(Activation::IActivatedEventArgs const& e) {
|
|
auto preActivationContent = Window::Current().Content();
|
|
super::OnActivated(e);
|
|
if (!preActivationContent && Window::Current()) {
|
|
Frame rootFrame = Window::Current().Content().as<Frame>();
|
|
rootFrame.Navigate(xaml_typename<MainPage>(), nullptr);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invoked when application execution is being suspended. Application state is
|
|
/// saved without knowing whether the application will be terminated or resumed
|
|
/// with the contents of memory still intact.
|
|
/// </summary>
|
|
/// <param name="sender">The source of the suspend request.</param>
|
|
/// <param name="e">Details about the suspend request.</param>
|
|
void App::OnSuspending(
|
|
[[maybe_unused]] IInspectable const& sender,
|
|
[[maybe_unused]] SuspendingEventArgs const& e) {
|
|
// Save application state and stop any background activity
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invoked when Navigation to a certain page fails
|
|
/// </summary>
|
|
/// <param name="sender">The Frame which failed navigation</param>
|
|
/// <param name="e">Details about the navigation failure</param>
|
|
void App::OnNavigationFailed(
|
|
IInspectable const&,
|
|
NavigationFailedEventArgs const& e) {
|
|
throw hresult_error(
|
|
E_FAIL, hstring(L"Failed to load Page ") + e.SourcePageType().Name);
|
|
}
|
|
|
|
} // namespace winrt::ReactNativeFlipperExample::implementation
|