-
Notifications
You must be signed in to change notification settings - Fork 428
/
Copy pathPopUpHandler.windows.cs
230 lines (205 loc) · 7.19 KB
/
PopUpHandler.windows.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
using CommunityToolkit.Maui.Core.Extensions;
using CommunityToolkit.Maui.Core.Views;
using Microsoft.Maui.Handlers;
using Microsoft.Maui.Platform;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls.Primitives;
using Windows.UI.ViewManagement;
namespace CommunityToolkit.Maui.Core.Handlers;
public partial class PopupHandler : ElementHandler<IPopup, Popup>
{
/// <summary>
/// Action that's triggered when the Popup is Dismissed.
/// </summary>
/// <param name="handler">An instance of <see cref="PopupHandler"/>.</param>
/// <param name="view">An instance of <see cref="IPopup"/>.</param>
/// <param name="result">The result that should return from this Popup.</param>
public static void MapOnClosed(PopupHandler handler, IPopup view, object? result)
{
var window = view.GetWindow();
if (window.Overlays.FirstOrDefault() is IWindowOverlay popupOverlay)
{
window.RemoveOverlay(popupOverlay);
}
view.HandlerCompleteTCS.TrySetResult();
handler.DisconnectHandler(handler.PlatformView);
}
/// <summary>
/// Action that's triggered when the Popup is Opened.
/// </summary>
/// <param name="handler">An instance of <see cref="PopupHandler"/>.</param>
/// <param name="view">An instance of <see cref="IPopup"/>.</param>
/// <param name="result">We don't need to provide the result parameter here.</param>
public static void MapOnOpened(PopupHandler handler, IPopup view, object? result)
{
ArgumentNullException.ThrowIfNull(view.Parent);
ArgumentNullException.ThrowIfNull(handler.MauiContext);
var parent = view.Parent.ToPlatform(handler.MauiContext);
parent.IsHitTestVisible = false;
handler.PlatformView.XamlRoot = parent.XamlRoot;
handler.PlatformView.IsHitTestVisible = true;
handler.PlatformView.IsOpen = true;
AddOverlayToWindow(view.GetWindow());
view.OnOpened();
}
/// <summary>
/// Action that's triggered when the Popup is dismissed by tapping outside of the Popup.
/// </summary>
/// <param name="handler">An instance of <see cref="PopupHandler"/>.</param>
/// <param name="view">An instance of <see cref="IPopup"/>.</param>
/// <param name="result">The result that should return from this Popup.</param>
public static void MapOnDismissedByTappingOutsideOfPopup(PopupHandler handler, IPopup view, object? result)
{
view.OnDismissedByTappingOutsideOfPopup();
handler.DisconnectHandler(handler.PlatformView);
}
/// <summary>
/// Action that's triggered when the Popup <see cref="IPopup.Anchor"/> property changes.
/// </summary>
/// <param name="handler">An instance of <see cref="PopupHandler"/>.</param>
/// <param name="view">An instance of <see cref="IPopup"/>.</param>
public static void MapAnchor(PopupHandler handler, IPopup view)
{
handler.PlatformView.SetAnchor(view, handler.MauiContext);
}
/// <summary>
/// Action that's triggered when the Popup <see cref="IPopup.CanBeDismissedByTappingOutsideOfPopup"/> property changes.
/// </summary>
/// <param name="handler">An instance of <see cref="PopupHandler"/>.</param>
/// <param name="view">An instance of <see cref="IPopup"/>.</param>
public static void MapCanBeDismissedByTappingOutsideOfPopup(PopupHandler handler, IPopup view)
{
handler.PlatformView.IsLightDismissEnabled = view.CanBeDismissedByTappingOutsideOfPopup;
handler.PlatformView.LightDismissOverlayMode = LightDismissOverlayMode.Off;
}
/// <summary>
/// Action that's triggered when the Popup <see cref="IPopup.Color"/> property changes.
/// </summary>
/// <param name="handler">An instance of <see cref="PopupHandler"/>.</param>
/// <param name="view">An instance of <see cref="IPopup"/>.</param>
public static void MapColor(PopupHandler handler, IPopup view)
{
handler.PlatformView.SetColor(view);
}
/// <summary>
/// Action that's triggered when the Popup <see cref="IPopup.Size"/> property changes.
/// </summary>
/// <param name="handler">An instance of <see cref="PopupHandler"/>.</param>
/// <param name="view">An instance of <see cref="IPopup"/>.</param>
public static void MapSize(PopupHandler handler, IPopup view)
{
handler.PlatformView.SetSize(view, handler.MauiContext);
}
/// <inheritdoc/>
protected override void DisconnectHandler(Popup platformView)
{
if (VirtualView.Parent is null)
{
return;
}
ArgumentNullException.ThrowIfNull(VirtualView.Handler?.MauiContext);
var parent = VirtualView.Parent.ToPlatform(VirtualView.Handler.MauiContext);
parent.IsHitTestVisible = true;
platformView.IsOpen = false;
platformView.Closed -= OnClosed;
if (MauiContext is not null)
{
MauiContext.GetPlatformWindow().SizeChanged -= OnSizeChanged;
}
DetachSwipeControlEvent(platformView);
}
/// <inheritdoc/>
protected override Popup CreatePlatformElement()
{
var popup = new Popup();
return popup;
}
/// <inheritdoc/>
protected override void ConnectHandler(Popup platformView)
{
platformView.Closed += OnClosed;
platformView.ConfigureControl(VirtualView, MauiContext);
if (MauiContext is not null)
{
MauiContext.GetPlatformWindow().SizeChanged += OnSizeChanged;
}
AttachSwipeControlEvent(platformView);
base.ConnectHandler(platformView);
}
static void AddOverlayToWindow(IWindow window)
{
var uiSetting = new UISettings();
var backgroundColor = uiSetting.GetColorValue(UIColorType.Background).ToColor();
window.AddOverlay(new PopupOverlay(window, backgroundColor.IsDark()
? Color.FromRgba(0, 0, 0, 153)
: Color.FromRgba(255, 255, 255, 153))); // 60% Opacity
}
void OnClosed(object? sender, object e)
{
if (!PlatformView.IsOpen && VirtualView.CanBeDismissedByTappingOutsideOfPopup)
{
VirtualView.Handler?.Invoke(nameof(IPopup.OnDismissedByTappingOutsideOfPopup));
}
}
void OnSizeChanged(object? sender, WindowSizeChangedEventArgs e)
{
if (VirtualView is not null)
{
PopupExtensions.SetSize(PlatformView, VirtualView, MauiContext);
PopupExtensions.SetLayout(PlatformView, VirtualView, MauiContext);
}
}
void AttachSwipeControlEvent(Popup platformView)
{
if (platformView.Child is FrameworkElement frameworkElement)
{
if (frameworkElement is SwipeControl)
{
SwipeControl swipeControl = (SwipeControl)frameworkElement;
swipeControl.Loaded += OnLoadedSwipeControl;
}
else
{
var swipeControls = frameworkElement.GetChildren<SwipeControl>();
foreach (SwipeControl? swipeControl in swipeControls)
{
if (swipeControl is not null)
{
swipeControl.Loaded += OnLoadedSwipeControl;
}
}
}
}
}
void DetachSwipeControlEvent(Popup platformView)
{
if (platformView.Child is FrameworkElement frameworkElement)
{
if (frameworkElement is SwipeControl)
{
SwipeControl swipeControl = (SwipeControl)frameworkElement;
swipeControl.Loaded -= OnLoadedSwipeControl;
}
else
{
var swipeControls = frameworkElement.GetChildren<SwipeControl>();
foreach (SwipeControl? swipeControl in swipeControls)
{
if (swipeControl is not null)
{
swipeControl.Loaded -= OnLoadedSwipeControl;
}
}
}
}
}
void OnLoadedSwipeControl(object? sender, RoutedEventArgs e)
{
if (VirtualView is not null)
{
PopupExtensions.SetSize(PlatformView, VirtualView, MauiContext);
PopupExtensions.SetLayout(PlatformView, VirtualView, MauiContext);
}
}
}