react-native-windows 0.74.0-preview.3 → 0.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.ReactNative/CompositionComponentView.idl +18 -3
- package/Microsoft.ReactNative/CompositionContext.idl +5 -5
- package/Microsoft.ReactNative/CompositionRootView.idl +22 -8
- package/Microsoft.ReactNative/CompositionSwitcher.idl +2 -2
- package/Microsoft.ReactNative/CompositionUIService.idl +8 -6
- package/Microsoft.ReactNative/Fabric/AbiViewProps.cpp +8 -1
- package/Microsoft.ReactNative/Fabric/AbiViewProps.h +7 -2
- package/Microsoft.ReactNative/Fabric/Composition/ActivityIndicatorComponentView.cpp +4 -3
- package/Microsoft.ReactNative/Fabric/Composition/ActivityIndicatorComponentView.h +5 -5
- package/Microsoft.ReactNative/Fabric/Composition/ComponentViewRegistry.cpp +1 -1
- package/Microsoft.ReactNative/Fabric/Composition/ComponentViewRegistry.h +2 -1
- package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.cpp +181 -154
- package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.h +8 -8
- package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper_emptyimpl.cpp +13 -13
- package/Microsoft.ReactNative/Fabric/Composition/CompositionHelpers.h +1 -1
- package/Microsoft.ReactNative/Fabric/Composition/CompositionHwndHost.cpp +14 -11
- package/Microsoft.ReactNative/Fabric/Composition/CompositionRootView.cpp +36 -12
- package/Microsoft.ReactNative/Fabric/Composition/CompositionRootView.h +16 -10
- package/Microsoft.ReactNative/Fabric/Composition/CompositionRootView_emptyimpl.cpp +15 -4
- package/Microsoft.ReactNative/Fabric/Composition/CompositionUIService.cpp +20 -9
- package/Microsoft.ReactNative/Fabric/Composition/CompositionUIService.h +6 -4
- package/Microsoft.ReactNative/Fabric/Composition/CompositionUIService_emptyimpl.cpp +5 -2
- package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +180 -128
- package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +25 -19
- package/Microsoft.ReactNative/Fabric/Composition/DebuggingOverlayComponentView.cpp +2 -2
- package/Microsoft.ReactNative/Fabric/Composition/DebuggingOverlayComponentView.h +2 -2
- package/Microsoft.ReactNative/Fabric/Composition/ImageComponentView.cpp +16 -22
- package/Microsoft.ReactNative/Fabric/Composition/ImageComponentView.h +5 -5
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +9 -10
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.h +5 -5
- package/Microsoft.ReactNative/Fabric/Composition/ParagraphComponentView.cpp +6 -5
- package/Microsoft.ReactNative/Fabric/Composition/ParagraphComponentView.h +5 -5
- package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.cpp +1 -1
- package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.h +5 -2
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +7 -3
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +2 -2
- package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.cpp +36 -35
- package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.h +6 -6
- package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.cpp +9 -9
- package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.h +6 -6
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +25 -19
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.h +6 -6
- package/Microsoft.ReactNative/Fabric/Composition/Theme.cpp +13 -3
- package/Microsoft.ReactNative/Fabric/Composition/Theme.h +16 -8
- package/Microsoft.ReactNative/Fabric/Composition/Theme_emptyimpl.cpp +3 -3
- package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.cpp +5 -8
- package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.h +3 -3
- package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.h +1 -1
- package/Microsoft.ReactNative/Fabric/IComponentViewRegistry.h +1 -1
- package/Microsoft.ReactNative/Modules/Animated/NativeAnimatedNodeManager.cpp +2 -1
- package/Microsoft.ReactNative/Modules/Animated/PropsAnimatedNode.cpp +7 -5
- package/Microsoft.ReactNative/Theme.idl +12 -1
- package/Microsoft.ReactNative/Utils/KeyboardUtils.cpp +10 -2
- package/Microsoft.ReactNative/Utils/KeyboardUtils.h +4 -1
- package/Microsoft.ReactNative/ViewProps.idl +11 -1
- package/Microsoft.ReactNative/packages.lock.json +70 -42
- package/Microsoft.ReactNative.Cxx/AutoDraw.h +6 -4
- package/Microsoft.ReactNative.Cxx/{CompositionSwitcher.interop.h → CompositionSwitcher.Experimental.interop.h} +3 -3
- package/Microsoft.ReactNative.Cxx/DesktopWindowBridge.h +2 -0
- package/Microsoft.ReactNative.Managed/Microsoft.ReactNative.Managed.csproj +2 -11
- package/PropertySheets/External/Microsoft.ReactNative.Composition.CppApp.props +1 -1
- package/PropertySheets/External/Microsoft.ReactNative.WindowsSdk.Default.props +5 -3
- package/PropertySheets/Generated/PackageVersion.g.props +2 -2
- package/Scripts/OfficeReact.Win32.nuspec +2 -0
- package/package.json +8 -5
- package/templates/cpp-app/windows/MyApp/MyApp.cpp +2 -7
|
@@ -6,6 +6,7 @@ import "Theme.idl";
|
|
|
6
6
|
import "ViewProps.idl";
|
|
7
7
|
import "Composition.Input.idl";
|
|
8
8
|
import "CompositionSwitcher.idl";
|
|
9
|
+
import "IReactContext.idl";
|
|
9
10
|
|
|
10
11
|
#include "DocString.h"
|
|
11
12
|
|
|
@@ -28,7 +29,7 @@ namespace Microsoft.ReactNative.Composition
|
|
|
28
29
|
[experimental]
|
|
29
30
|
[webhosthidden]
|
|
30
31
|
runtimeclass CreateCompositionComponentViewArgs : Microsoft.ReactNative.CreateComponentViewArgs {
|
|
31
|
-
|
|
32
|
+
Microsoft.UI.Composition.Compositor Compositor { get; };
|
|
32
33
|
ComponentViewFeatures Features;
|
|
33
34
|
};
|
|
34
35
|
|
|
@@ -37,13 +38,27 @@ namespace Microsoft.ReactNative.Composition
|
|
|
37
38
|
unsealed runtimeclass ComponentView : Microsoft.ReactNative.ComponentView {
|
|
38
39
|
ComponentView(CreateCompositionComponentViewArgs args);
|
|
39
40
|
|
|
40
|
-
|
|
41
|
+
Microsoft.UI.Composition.Compositor Compositor { get; };
|
|
41
42
|
Theme Theme;
|
|
42
43
|
overridable void OnThemeChanged();
|
|
43
44
|
Boolean CapturePointer(Microsoft.ReactNative.Composition.Input.Pointer pointer);
|
|
44
45
|
void ReleasePointerCapture(Microsoft.ReactNative.Composition.Input.Pointer pointer);
|
|
45
46
|
};
|
|
46
47
|
|
|
48
|
+
namespace Experimental {
|
|
49
|
+
[webhosthidden]
|
|
50
|
+
[experimental]
|
|
51
|
+
DOC_STRING("Custom ViewComponents need to implement this interface to be able to provide a custom"
|
|
52
|
+
" visual using the composition context that allows custom compositors. This is only required for"
|
|
53
|
+
" custom components that need to support running in RNW instances with custom compositors. Most"
|
|
54
|
+
" custom components can just override CreateVisual on ViewComponentView."
|
|
55
|
+
" This will be removed in a future version")
|
|
56
|
+
interface IInternalCreateVisual
|
|
57
|
+
{
|
|
58
|
+
Microsoft.ReactNative.Composition.Experimental.IVisual CreateInternalVisual();
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
47
62
|
[experimental]
|
|
48
63
|
[webhosthidden]
|
|
49
64
|
unsealed runtimeclass ViewComponentView : ComponentView {
|
|
@@ -51,7 +66,7 @@ namespace Microsoft.ReactNative.Composition
|
|
|
51
66
|
|
|
52
67
|
Microsoft.ReactNative.ViewProps ViewProps { get; };
|
|
53
68
|
|
|
54
|
-
overridable
|
|
69
|
+
overridable Microsoft.UI.Composition.Visual CreateVisual();
|
|
55
70
|
};
|
|
56
71
|
|
|
57
72
|
[experimental]
|
|
@@ -5,17 +5,17 @@
|
|
|
5
5
|
#include "DocString.h"
|
|
6
6
|
import "CompositionSwitcher.idl";
|
|
7
7
|
|
|
8
|
-
namespace Microsoft.ReactNative.Composition
|
|
8
|
+
namespace Microsoft.ReactNative.Composition.Experimental
|
|
9
9
|
{
|
|
10
10
|
[webhosthidden]
|
|
11
11
|
[default_interface]
|
|
12
12
|
[experimental]
|
|
13
|
-
DOC_STRING("A helper static class
|
|
13
|
+
DOC_STRING("A helper static class to create a @ICompositionContext based on Windows.Composition Visuals. This is not for general consumption and is expected to be removed in a future release.")
|
|
14
14
|
static runtimeclass SystemCompositionContextHelper
|
|
15
15
|
{
|
|
16
16
|
DOC_STRING(
|
|
17
17
|
"Creates a @ICompositionContext from a Compositor")
|
|
18
|
-
static ICompositionContext CreateContext(Windows.UI.Composition.Compositor compositor);
|
|
18
|
+
static Microsoft.ReactNative.Composition.Experimental.ICompositionContext CreateContext(Windows.UI.Composition.Compositor compositor);
|
|
19
19
|
|
|
20
20
|
DOC_STRING(
|
|
21
21
|
"Creates a @IVisual from a Visual")
|
|
@@ -32,12 +32,12 @@ namespace Microsoft.ReactNative.Composition
|
|
|
32
32
|
[webhosthidden]
|
|
33
33
|
[default_interface]
|
|
34
34
|
[experimental]
|
|
35
|
-
DOC_STRING("A helper static class
|
|
35
|
+
DOC_STRING("A helper static class to create a @ICompositionContext based on Microsoft.Composition Visuals. Generally it should not be required to call this directly. Instead you should call @CompositionUIService.SetCompositor. This is not for general consumption and is expected to be removed in a future release.")
|
|
36
36
|
static runtimeclass MicrosoftCompositionContextHelper
|
|
37
37
|
{
|
|
38
38
|
DOC_STRING(
|
|
39
39
|
"Creates a @ICompositionContext from a Compositor")
|
|
40
|
-
static ICompositionContext CreateContext(Microsoft.UI.Composition.Compositor compositor);
|
|
40
|
+
static Microsoft.ReactNative.Composition.Experimental.ICompositionContext CreateContext(Microsoft.UI.Composition.Compositor compositor);
|
|
41
41
|
|
|
42
42
|
DOC_STRING(
|
|
43
43
|
"Creates a @IVisual from a Visual")
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
// Copyright (c) Microsoft Corporation.
|
|
2
2
|
// Licensed under the MIT License.
|
|
3
3
|
|
|
4
|
-
import "CompositionContext.idl";
|
|
5
4
|
import "IJSValueWriter.idl";
|
|
6
5
|
import "ReactCoreInjection.idl";
|
|
7
6
|
import "ReactNativeHost.idl";
|
|
@@ -41,6 +40,27 @@ namespace Microsoft.ReactNative
|
|
|
41
40
|
Boolean WasFocusMoved {get;};
|
|
42
41
|
};
|
|
43
42
|
|
|
43
|
+
namespace Composition.Experimental {
|
|
44
|
+
[webhosthidden]
|
|
45
|
+
[experimental]
|
|
46
|
+
DOC_STRING("Custom ViewComponents need to implement this interface to be able to provide a custom"
|
|
47
|
+
" visual using the composition context that allows custom compositors. This is only required for"
|
|
48
|
+
" custom components that need to support running in RNW instances with custom compositors. Most"
|
|
49
|
+
" custom components can just override CreateVisual on ViewComponentView. This interface will be removed"
|
|
50
|
+
" in future versions")
|
|
51
|
+
interface IInternalCompositionRootView
|
|
52
|
+
{
|
|
53
|
+
DOC_STRING("The RootVisual associated with the @CompositionRootView. It must be set to show any React UI elements.")
|
|
54
|
+
Microsoft.ReactNative.Composition.Experimental.IVisual InternalRootVisual { get; set; };
|
|
55
|
+
|
|
56
|
+
DOC_STRING("Hosting Window that input is coming from. Only required when not using ContentIslands")
|
|
57
|
+
void SetWindow(UInt64 hwnd);
|
|
58
|
+
|
|
59
|
+
DOC_STRING("Forward input to the RootView. Only required when not using ContentIslands")
|
|
60
|
+
Int64 SendMessage(UInt32 Msg, UInt64 WParam, Int64 LParam);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
44
64
|
[default_interface]
|
|
45
65
|
[webhosthidden]
|
|
46
66
|
[experimental]
|
|
@@ -60,7 +80,7 @@ namespace Microsoft.ReactNative
|
|
|
60
80
|
IReactViewHost ReactViewHost { get; set; };
|
|
61
81
|
|
|
62
82
|
DOC_STRING("The RootVisual associated with the @CompositionRootView. It must be set to show any React UI elements.")
|
|
63
|
-
Microsoft.
|
|
83
|
+
Microsoft.UI.Composition.Visual RootVisual { get; };
|
|
64
84
|
|
|
65
85
|
Windows.Foundation.Size Size {get; set; };
|
|
66
86
|
|
|
@@ -73,12 +93,6 @@ namespace Microsoft.ReactNative
|
|
|
73
93
|
Windows.Foundation.Size Measure(Windows.Foundation.Size availableSize);
|
|
74
94
|
Windows.Foundation.Size Arrange(Windows.Foundation.Size availableSize);
|
|
75
95
|
|
|
76
|
-
DOC_STRING("Hosting Window that input is coming from. Only required when not using ContentIslands")
|
|
77
|
-
void SetWindow(UInt64 hwnd);
|
|
78
|
-
|
|
79
|
-
DOC_STRING("Forward input to the RootView. Only required when not using ContentIslands")
|
|
80
|
-
Int64 SendMessage(UInt32 Msg, UInt64 WParam, Int64 LParam);
|
|
81
|
-
|
|
82
96
|
Object GetUiaProvider();
|
|
83
97
|
|
|
84
98
|
DOC_STRING("Theme used for Platform colors within this RootView")
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#include "NamespaceRedirect.h"
|
|
5
5
|
#include "DocString.h"
|
|
6
6
|
|
|
7
|
-
namespace Microsoft.ReactNative.Composition
|
|
7
|
+
namespace Microsoft.ReactNative.Composition.Experimental
|
|
8
8
|
{
|
|
9
9
|
enum CompositionStretch
|
|
10
10
|
{
|
|
@@ -161,4 +161,4 @@ namespace Microsoft.ReactNative.Composition
|
|
|
161
161
|
// event Windows.Foundation.EventHandler<RenderingDeviceReplacedArgs> RenderingDeviceReplaced;
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
} // namespace Microsoft.ReactNative.Composition
|
|
164
|
+
} // namespace Microsoft.ReactNative.Composition.Experimental
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
// Copyright (c) Microsoft Corporation.
|
|
2
2
|
// Licensed under the MIT License.
|
|
3
3
|
|
|
4
|
-
import "
|
|
5
|
-
import "IReactPropertyBag.idl";
|
|
6
|
-
import "CompositionContext.idl";
|
|
4
|
+
import "ReactInstanceSettings.idl";
|
|
7
5
|
|
|
8
|
-
#include "NamespaceRedirect.h"
|
|
9
6
|
#include "DocString.h"
|
|
10
7
|
|
|
11
8
|
namespace Microsoft.ReactNative.Composition
|
|
@@ -18,7 +15,12 @@ namespace Microsoft.ReactNative.Composition
|
|
|
18
15
|
runtimeclass CompositionUIService
|
|
19
16
|
{
|
|
20
17
|
DOC_STRING(
|
|
21
|
-
"
|
|
22
|
-
static void
|
|
18
|
+
"Configures the react instance to use the provided Compositor. Setting this will opt into using the new architecture")
|
|
19
|
+
static void SetCompositor(Microsoft.ReactNative.ReactInstanceSettings settings, Microsoft.UI.Composition.Compositor compositor);
|
|
20
|
+
|
|
21
|
+
DOC_STRING(
|
|
22
|
+
"Gets the Compositor used by this ReactNative instance.")
|
|
23
|
+
static Microsoft.UI.Composition.Compositor GetCompositor(Microsoft.ReactNative.IReactPropertyBag properties);
|
|
24
|
+
|
|
23
25
|
}
|
|
24
26
|
} // namespace Microsoft.ReactNative.Composition
|
|
@@ -51,7 +51,14 @@ winrt::Windows::UI::Color Color::AsWindowsColor(
|
|
|
51
51
|
const winrt::Microsoft::ReactNative::Composition::Theme &theme) noexcept {
|
|
52
52
|
return winrt::get_self<winrt::Microsoft::ReactNative::Composition::implementation::Theme>(theme)->Color(*m_color);
|
|
53
53
|
}
|
|
54
|
-
|
|
54
|
+
#ifdef USE_WINUI3
|
|
55
|
+
winrt::Microsoft::UI::Composition::CompositionBrush Color::AsBrush(
|
|
56
|
+
const winrt::Microsoft::ReactNative::Composition::Theme theme) noexcept {
|
|
57
|
+
return winrt::Microsoft::ReactNative::Composition::Experimental::MicrosoftCompositionContextHelper::InnerBrush(
|
|
58
|
+
winrt::get_self<winrt::Microsoft::ReactNative::Composition::implementation::Theme>(theme)->Brush(*m_color));
|
|
59
|
+
}
|
|
60
|
+
#endif
|
|
61
|
+
winrt::Microsoft::ReactNative::Composition::Experimental::IBrush Color::AsInternalBrush(
|
|
55
62
|
const winrt::Microsoft::ReactNative::Composition::Theme theme) noexcept {
|
|
56
63
|
return winrt::get_self<winrt::Microsoft::ReactNative::Composition::implementation::Theme>(theme)->Brush(*m_color);
|
|
57
64
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
#include "ViewProps.g.h"
|
|
8
8
|
|
|
9
9
|
#include <react/renderer/components/view/ViewProps.h>
|
|
10
|
+
#include "winrt/Microsoft.ReactNative.Composition.Experimental.h"
|
|
10
11
|
#include "winrt/Microsoft.ReactNative.h"
|
|
11
12
|
|
|
12
13
|
namespace Microsoft::ReactNative {
|
|
@@ -35,11 +36,15 @@ class AbiViewProps final : public facebook::react::ViewProps {
|
|
|
35
36
|
|
|
36
37
|
namespace winrt::Microsoft::ReactNative::implementation {
|
|
37
38
|
|
|
38
|
-
struct Color : ColorT<Color> {
|
|
39
|
+
struct Color : ColorT<Color, Composition::Experimental::IInternalColor> {
|
|
39
40
|
Color(facebook::react::SharedColor color);
|
|
40
41
|
|
|
41
42
|
winrt::Windows::UI::Color AsWindowsColor(const winrt::Microsoft::ReactNative::Composition::Theme &theme) noexcept;
|
|
42
|
-
|
|
43
|
+
#ifdef USE_WINUI3
|
|
44
|
+
winrt::Microsoft::UI::Composition::CompositionBrush AsBrush(
|
|
45
|
+
const winrt::Microsoft::ReactNative::Composition::Theme theme) noexcept;
|
|
46
|
+
#endif
|
|
47
|
+
winrt::Microsoft::ReactNative::Composition::Experimental::IBrush AsInternalBrush(
|
|
43
48
|
const winrt::Microsoft::ReactNative::Composition::Theme theme) noexcept;
|
|
44
49
|
|
|
45
50
|
static winrt::Microsoft::ReactNative::Color ReadValue(
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
namespace winrt::Microsoft::ReactNative::Composition::implementation {
|
|
15
15
|
|
|
16
16
|
winrt::Microsoft::ReactNative::ComponentView ActivityIndicatorComponentView::Create(
|
|
17
|
-
const winrt::Microsoft::ReactNative::Composition::ICompositionContext &compContext,
|
|
17
|
+
const winrt::Microsoft::ReactNative::Composition::Experimental::ICompositionContext &compContext,
|
|
18
18
|
facebook::react::Tag tag,
|
|
19
19
|
winrt::Microsoft::ReactNative::ReactContext const &reactContext) noexcept {
|
|
20
20
|
return winrt::make<ActivityIndicatorComponentView>(compContext, tag, reactContext);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
ActivityIndicatorComponentView::ActivityIndicatorComponentView(
|
|
24
|
-
const winrt::Microsoft::ReactNative::Composition::ICompositionContext &compContext,
|
|
24
|
+
const winrt::Microsoft::ReactNative::Composition::Experimental::ICompositionContext &compContext,
|
|
25
25
|
facebook::react::Tag tag,
|
|
26
26
|
winrt::Microsoft::ReactNative::ReactContext const &reactContext)
|
|
27
27
|
: Super(compContext, tag, reactContext, ComponentViewFeatures::Default, false) {
|
|
@@ -141,7 +141,8 @@ facebook::react::Tag ActivityIndicatorComponentView::hitTest(
|
|
|
141
141
|
return -1;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
winrt::Microsoft::ReactNative::Composition::IVisual ActivityIndicatorComponentView::Visual()
|
|
144
|
+
winrt::Microsoft::ReactNative::Composition::Experimental::IVisual ActivityIndicatorComponentView::Visual()
|
|
145
|
+
const noexcept {
|
|
145
146
|
return m_visual;
|
|
146
147
|
}
|
|
147
148
|
|
|
@@ -17,7 +17,7 @@ struct ActivityIndicatorComponentView : ActivityIndicatorComponentViewT<Activity
|
|
|
17
17
|
using Super = ActivityIndicatorComponentViewT<ActivityIndicatorComponentView, ComponentView>;
|
|
18
18
|
|
|
19
19
|
[[nodiscard]] static winrt::Microsoft::ReactNative::ComponentView Create(
|
|
20
|
-
const winrt::Microsoft::ReactNative::Composition::ICompositionContext &compContext,
|
|
20
|
+
const winrt::Microsoft::ReactNative::Composition::Experimental::ICompositionContext &compContext,
|
|
21
21
|
facebook::react::Tag tag,
|
|
22
22
|
winrt::Microsoft::ReactNative::ReactContext const &reactContext) noexcept;
|
|
23
23
|
|
|
@@ -42,11 +42,11 @@ struct ActivityIndicatorComponentView : ActivityIndicatorComponentViewT<Activity
|
|
|
42
42
|
|
|
43
43
|
facebook::react::Tag hitTest(facebook::react::Point pt, facebook::react::Point &localPt, bool ignorePointerEvents)
|
|
44
44
|
const noexcept override;
|
|
45
|
-
winrt::Microsoft::ReactNative::Composition::IVisual Visual() const noexcept override;
|
|
45
|
+
winrt::Microsoft::ReactNative::Composition::Experimental::IVisual Visual() const noexcept override;
|
|
46
46
|
virtual std::string DefaultControlType() const noexcept;
|
|
47
47
|
|
|
48
48
|
ActivityIndicatorComponentView(
|
|
49
|
-
const winrt::Microsoft::ReactNative::Composition::ICompositionContext &compContext,
|
|
49
|
+
const winrt::Microsoft::ReactNative::Composition::Experimental::ICompositionContext &compContext,
|
|
50
50
|
facebook::react::Tag tag,
|
|
51
51
|
winrt::Microsoft::ReactNative::ReactContext const &reactContext);
|
|
52
52
|
|
|
@@ -55,8 +55,8 @@ struct ActivityIndicatorComponentView : ActivityIndicatorComponentViewT<Activity
|
|
|
55
55
|
void updateVisualSize() noexcept;
|
|
56
56
|
void updateProgressColor(const facebook::react::SharedColor &color) noexcept;
|
|
57
57
|
|
|
58
|
-
winrt::Microsoft::ReactNative::Composition::ISpriteVisual m_visual{nullptr};
|
|
59
|
-
winrt::Microsoft::ReactNative::Composition::IActivityVisual m_ActivityIndicatorVisual{nullptr};
|
|
58
|
+
winrt::Microsoft::ReactNative::Composition::Experimental::ISpriteVisual m_visual{nullptr};
|
|
59
|
+
winrt::Microsoft::ReactNative::Composition::Experimental::IActivityVisual m_ActivityIndicatorVisual{nullptr};
|
|
60
60
|
facebook::react::SharedViewProps m_props;
|
|
61
61
|
};
|
|
62
62
|
|
|
@@ -42,7 +42,7 @@ void ComponentViewRegistry::Initialize(winrt::Microsoft::ReactNative::ReactConte
|
|
|
42
42
|
ComponentViewDescriptor const &ComponentViewRegistry::dequeueComponentViewWithComponentHandle(
|
|
43
43
|
facebook::react::ComponentHandle componentHandle,
|
|
44
44
|
facebook::react::Tag tag,
|
|
45
|
-
const winrt::Microsoft::ReactNative::Composition::ICompositionContext &compContext) noexcept {
|
|
45
|
+
const winrt::Microsoft::ReactNative::Composition::Experimental::ICompositionContext &compContext) noexcept {
|
|
46
46
|
// TODO implement recycled components like core does
|
|
47
47
|
|
|
48
48
|
winrt::Microsoft::ReactNative::ComponentView view{nullptr};
|
|
@@ -19,7 +19,8 @@ class ComponentViewRegistry final : public IComponentViewRegistry {
|
|
|
19
19
|
ComponentViewDescriptor const &dequeueComponentViewWithComponentHandle(
|
|
20
20
|
facebook::react::ComponentHandle componentHandle,
|
|
21
21
|
facebook::react::Tag tag,
|
|
22
|
-
const winrt::Microsoft::ReactNative::Composition::ICompositionContext &compContext) noexcept
|
|
22
|
+
const winrt::Microsoft::ReactNative::Composition::Experimental::ICompositionContext &compContext) noexcept
|
|
23
|
+
override;
|
|
23
24
|
ComponentViewDescriptor const &componentViewDescriptorWithTag(facebook::react::Tag tag) const noexcept override;
|
|
24
25
|
winrt::Microsoft::ReactNative::ComponentView findComponentViewWithTag(
|
|
25
26
|
facebook::react::Tag tag) const noexcept override;
|