summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ItemsViewSimple.cs
blob: 51b9df7ad5fd67e5c5104b85292c8f82b76e1367 (plain)
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Runtime.CompilerServices;

namespace Xamarin.Forms
{
	public abstract class ItemsView : View, IItemViewController
	{
		public static readonly BindableProperty ItemsSourceProperty = 
			BindableProperty.Create(
				propertyName: "ItemsSource",
				returnType: typeof(IEnumerable), 
				declaringType: typeof(ItemsView), 
				defaultValue: Enumerable.Empty<object>()
			);

		public static readonly BindableProperty ItemTemplateProperty = 
			BindableProperty.Create(
				propertyName: "ItemTemplate", 
				returnType: typeof(DataTemplate), 
				declaringType: typeof(ItemsView)
			);

		ItemSource _itemSource;

		internal ItemsView()
		{
		}

		public int Count => _itemSource.Count;

		public IEnumerable ItemsSource
		{
			get { return (IEnumerable)GetValue(ItemsSourceProperty); }
			set { SetValue(ItemsSourceProperty, value); }
		}

		public DataTemplate ItemTemplate
		{
			get { return (DataTemplate)GetValue(ItemTemplateProperty); }
			set { SetValue(ItemTemplateProperty, value); }
		}

		void IItemViewController.BindView(View view, object item)
		{
			view.BindingContext = item;
		}

		View IItemViewController.CreateView(object type)
		{
			var dataTemplate = (DataTemplate)type;
			object content = dataTemplate.CreateContent();
			var view = (View)content;
			view.Parent = this;
			return view;
		}

		object IItemViewController.GetItem(int index) => _itemSource[index];

		object IItemViewController.GetItemType(object item)
		{
			DataTemplate dataTemplate = ItemTemplate;
			var dataTemplateSelector = dataTemplate as DataTemplateSelector;
			if (dataTemplateSelector != null)
				dataTemplate = dataTemplateSelector.SelectTemplate(item, this);

			if (item == null)
				throw new ArgumentException($"No DataTemplate resolved for item: {item}.");

			return dataTemplate;
		}

		protected override void OnPropertyChanged([CallerMemberName] string propertyName = null)
		{
			if (propertyName == nameof(ItemsSource))
			{
				var itemsSource = ItemsSource;
				if (itemsSource == null)
					itemsSource = Enumerable.Empty<object>();
				
				// abstract enumerable, IList, IList<T>, and IReadOnlyList<T>
				_itemSource = new ItemSource(itemsSource);

				// subscribe to collection changed events
				var dynamicItemSource = _itemSource as INotifyCollectionChanged;
				if (dynamicItemSource != null)
				{
					new WeakNotifyCollectionChanged(this, dynamicItemSource);
				}
			}

			base.OnPropertyChanged(propertyName);
		}

		internal event NotifyCollectionChangedEventHandler CollectionChanged;

		internal void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
		{
			CollectionChanged?.Invoke(sender, e);
		}

		sealed class WeakNotifyCollectionChanged
		{
			readonly WeakReference<INotifyCollectionChanged> _weakCollection;
			readonly WeakReference<ItemsView> _weakSource;

			public WeakNotifyCollectionChanged(ItemsView source, INotifyCollectionChanged incc)
			{
				incc.CollectionChanged += OnCollectionChanged;

				_weakSource = new WeakReference<ItemsView>(source);
				_weakCollection = new WeakReference<INotifyCollectionChanged>(incc);
			}

			void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
			{
				ItemsView source;
				if (!_weakSource.TryGetTarget(out source))
				{
					INotifyCollectionChanged collection;
					if (_weakCollection.TryGetTarget(out collection))
						collection.CollectionChanged -= OnCollectionChanged;

					return;
				}

				source.OnCollectionChanged(sender, e);
			}
		}

		sealed class ItemSource : IEnumerable<object>, INotifyCollectionChanged
		{
			IndexableCollection _indexable;

			internal ItemSource(IEnumerable enumerable)
			{
				_indexable = new IndexableCollection(enumerable);
				var dynamicItemSource = enumerable as INotifyCollectionChanged;
				if (dynamicItemSource != null)
					dynamicItemSource.CollectionChanged += OnCollectionChanged;
			}

			public int Count => _indexable.Count;

			public IEnumerable Enumerable => _indexable.Enumerable;

			public object this[int index]
			{
				get
				{
					// madness ported from listProxy
					CollectionSynchronizationContext syncContext = SyncContext;
					if (syncContext != null)
					{
						object value = null;
						syncContext.Callback(Enumerable, SyncContext.Context, () => value = _indexable[index], false);

						return value;
					}

					return _indexable[index];
				}
			}

			CollectionSynchronizationContext SyncContext
			{
				get
				{
					CollectionSynchronizationContext syncContext;
					BindingBase.TryGetSynchronizedCollection(Enumerable, out syncContext);
					return syncContext;
				}
			}

			IEnumerator IEnumerable.GetEnumerator()
			{
				return GetEnumerator();
			}

			IEnumerator<object> IEnumerable<object>.GetEnumerator()
			{
				return GetEnumerator();
			}

			public event NotifyCollectionChangedEventHandler CollectionChanged;

			public Enumerator GetEnumerator()
			{
				return new Enumerator(this);
			}

			public int IndexOf(object item)
			{
				// madness ported from listProxy
				CollectionSynchronizationContext syncContext = SyncContext;
				if (syncContext != null)
				{
					int value = -1;
					syncContext.Callback(Enumerable, SyncContext.Context, () => value = _indexable.IndexOf(item), false);

					return value;
				}

				return _indexable.IndexOf(item);
			}

			void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
			{
				Action onCollectionChanged = () =>
				{
					if (CollectionChanged != null)
						CollectionChanged(this, e);
				};

				// madness ported from listProxy
				CollectionSynchronizationContext syncContext = SyncContext;
				if (syncContext != null)
				{
					syncContext.Callback(Enumerable, syncContext.Context, () => Device.BeginInvokeOnMainThread(onCollectionChanged), false);
				}

				else if (Device.IsInvokeRequired)
					Device.BeginInvokeOnMainThread(onCollectionChanged);

				else
					onCollectionChanged();
			}

			internal struct Enumerator : IEnumerator<object>
			{
				readonly ItemSource _itemSource;
				int _index;

				internal Enumerator(ItemSource itemSource) : this()
				{
					_itemSource = itemSource;
				}

				public bool MoveNext()
				{
					if (_index == _itemSource.Count)
						return false;

					Current = _itemSource[_index++];
					return true;
				}

				public object Current { get; private set; }

				public void Reset()
				{
					Current = null;
					_index = 0;
				}

				public void Dispose()
				{
				}
			}

			struct IndexableCollection : IEnumerable<object>
			{
				internal IndexableCollection(IEnumerable list)
				{
					Enumerable = list;

					if (list is IList)
						return;

					if (list is IList<object>)
						return;

					if (list is IReadOnlyList<object>)
						return;

					Enumerable = list.Cast<object>().ToArray();
				}

				internal IEnumerable Enumerable { get; }

				internal int Count
				{
					get
					{
						var list = Enumerable as IList;
						if (list != null)
							return list.Count;

						var listOf = Enumerable as IList<object>;
						if (listOf != null)
							return listOf.Count;

						var readOnlyList = (IReadOnlyList<object>)Enumerable;
						return readOnlyList.Count;
					}
				}

				internal object this[int index]
				{
					get
					{
						var list = Enumerable as IList;
						if (list != null)
							return list[index];

						var listOf = Enumerable as IList<object>;
						if (listOf != null)
							return listOf[index];

						var readOnlyList = (IReadOnlyList<object>)Enumerable;
						return readOnlyList[index];
					}
				}

				internal int IndexOf(object item)
				{
					var list = Enumerable as IList;
					if (list != null)
						return list.IndexOf(item);

					var listOf = Enumerable as IList<object>;
					if (listOf != null)
						return listOf.IndexOf(item);

					var readOnlyList = (IReadOnlyList<object>)Enumerable;
					return readOnlyList.IndexOf(item);
				}

				public IEnumerator<object> GetEnumerator()
				{
					var list = Enumerable as IList;
					if (list != null)
						return list.Cast<object>().GetEnumerator();

					var listOf = Enumerable as IList<object>;
					if (listOf != null)
						return listOf.GetEnumerator();

					var readOnlyList = (IReadOnlyList<object>)Enumerable;
					return readOnlyList.GetEnumerator();
				}

				IEnumerator IEnumerable.GetEnumerator()
				{
					return GetEnumerator();
				}
			}
		}
	}
}