forked from CommunityToolkit/WindowsCommunityToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageExBase.cs
More file actions
278 lines (237 loc) · 8.35 KB
/
Copy pathImageExBase.cs
File metadata and controls
278 lines (237 loc) · 8.35 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Linq;
using Microsoft.Toolkit.Uwp.Extensions;
using Microsoft.Toolkit.Uwp.UI.Extensions;
using Windows.Foundation;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
namespace Microsoft.Toolkit.Uwp.UI.Controls
{
/// <summary>
/// Base Code for ImageEx
/// </summary>
[TemplateVisualState(Name = LoadingState, GroupName = CommonGroup)]
[TemplateVisualState(Name = LoadedState, GroupName = CommonGroup)]
[TemplateVisualState(Name = UnloadedState, GroupName = CommonGroup)]
[TemplateVisualState(Name = FailedState, GroupName = CommonGroup)]
[TemplatePart(Name = PartImage, Type = typeof(object))]
[TemplatePart(Name = PartProgress, Type = typeof(ProgressRing))]
public abstract partial class ImageExBase : Control
{
private bool _isInViewport;
/// <summary>
/// Image name in template
/// </summary>
protected const string PartImage = "Image";
/// <summary>
/// ProgressRing name in template
/// </summary>
protected const string PartProgress = "Progress";
/// <summary>
/// VisualStates name in template
/// </summary>
protected const string CommonGroup = "CommonStates";
/// <summary>
/// Loading state name in template
/// </summary>
protected const string LoadingState = "Loading";
/// <summary>
/// Loaded state name in template
/// </summary>
protected const string LoadedState = "Loaded";
/// <summary>
/// Unloaded state name in template
/// </summary>
protected const string UnloadedState = "Unloaded";
/// <summary>
/// Failed name in template
/// </summary>
protected const string FailedState = "Failed";
/// <summary>
/// Gets the backing image object
/// </summary>
protected object Image { get; private set; }
/// <summary>
/// Gets backing object for the ProgressRing
/// </summary>
protected ProgressRing Progress { get; private set; }
/// <summary>
/// Gets object used for lock
/// </summary>
protected object LockObj { get; private set; }
/// <summary>
/// Initializes a new instance of the <see cref="ImageExBase"/> class.
/// </summary>
public ImageExBase()
{
LockObj = new object();
LayoutUpdated += ImageExBase_LayoutUpdated;
}
/// <summary>
/// Attach image opened event handler
/// </summary>
/// <param name="handler">Routed Event Handler</param>
protected void AttachImageOpened(RoutedEventHandler handler)
{
var image = Image as Image;
var brush = Image as ImageBrush;
if (image != null)
{
image.ImageOpened += handler;
}
else if (brush != null)
{
brush.ImageOpened += handler;
}
}
/// <summary>
/// Remove image opened handler
/// </summary>
/// <param name="handler">RoutedEventHandler</param>
protected void RemoveImageOpened(RoutedEventHandler handler)
{
var image = Image as Image;
var brush = Image as ImageBrush;
if (image != null)
{
image.ImageOpened -= handler;
}
else if (brush != null)
{
brush.ImageOpened -= handler;
}
}
/// <summary>
/// Attach image failed event handler
/// </summary>
/// <param name="handler">Exception Routed Event Handler</param>
protected void AttachImageFailed(ExceptionRoutedEventHandler handler)
{
var image = Image as Image;
var brush = Image as ImageBrush;
if (image != null)
{
image.ImageFailed += handler;
}
else if (brush != null)
{
brush.ImageFailed += handler;
}
}
/// <summary>
/// Remove Image Failed handler
/// </summary>
/// <param name="handler">Exception Routed Event Handler</param>
protected void RemoveImageFailed(ExceptionRoutedEventHandler handler)
{
var image = Image as Image;
var brush = Image as ImageBrush;
if (image != null)
{
image.ImageFailed -= handler;
}
else if (brush != null)
{
brush.ImageFailed -= handler;
}
}
/// <summary>
/// Update the visual state of the control when its template is changed.
/// </summary>
protected override void OnApplyTemplate()
{
RemoveImageOpened(OnImageOpened);
RemoveImageFailed(OnImageFailed);
Image = GetTemplateChild(PartImage) as object;
Progress = GetTemplateChild(PartProgress) as ProgressRing;
IsInitialized = true;
ImageExInitialized?.Invoke(this, EventArgs.Empty);
if (Source == null || !EnableLazyLoading || _isInViewport)
{
_lazyLoadingSource = null;
SetSource(Source);
}
else
{
_lazyLoadingSource = Source;
}
AttachImageOpened(OnImageOpened);
AttachImageFailed(OnImageFailed);
base.OnApplyTemplate();
}
/// <inheritdoc/>
protected override Size ArrangeOverride(Size finalSize)
{
var newSquareSize = Math.Min(finalSize.Width, finalSize.Height) / 8.0;
if (Progress?.Width == newSquareSize)
{
Progress.Height = newSquareSize;
}
return base.ArrangeOverride(finalSize);
}
private void OnImageOpened(object sender, RoutedEventArgs e)
{
ImageExOpened?.Invoke(this, new ImageExOpenedEventArgs());
VisualStateManager.GoToState(this, LoadedState, true);
}
private void OnImageFailed(object sender, ExceptionRoutedEventArgs e)
{
ImageExFailed?.Invoke(this, new ImageExFailedEventArgs(new Exception(e.ErrorMessage)));
VisualStateManager.GoToState(this, FailedState, true);
}
private void ImageExBase_LayoutUpdated(object sender, object e)
{
InvalidateLazyLoading();
}
private void InvalidateLazyLoading()
{
if (!IsLoaded)
{
_isInViewport = false;
return;
}
// Find the first ascendant ScrollViewer, if not found, use the root element.
FrameworkElement hostElement = null;
var ascendants = this.FindAscendants().OfType<FrameworkElement>();
foreach (var ascendant in ascendants)
{
hostElement = ascendant;
if (hostElement is ScrollViewer)
{
break;
}
}
if (hostElement == null)
{
_isInViewport = false;
return;
}
var controlRect = TransformToVisual(hostElement)
.TransformBounds(new Rect(0, 0, ActualWidth, ActualHeight));
var lazyLoadingThreshold = LazyLoadingThreshold;
var hostRect = new Rect(
0 - lazyLoadingThreshold,
0 - lazyLoadingThreshold,
hostElement.ActualWidth + (2 * lazyLoadingThreshold),
hostElement.ActualHeight + (2 * lazyLoadingThreshold));
if (controlRect.IntersectsWith(hostRect))
{
_isInViewport = true;
if (_lazyLoadingSource != null)
{
var source = _lazyLoadingSource;
_lazyLoadingSource = null;
SetSource(source);
}
}
else
{
_isInViewport = false;
}
}
}
}