summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/CarouselViewRenderer.cs
blob: 3e1fd0969808cdb6aa05cbe736cba2bd26098676 (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
using System;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
using WFlipView = Windows.UI.Xaml.Controls.FlipView;
using WBinding = Windows.UI.Xaml.Data.Binding;
using WApp = Windows.UI.Xaml.Application;
using WSize = Windows.Foundation.Size;
using WDataTemplate = Windows.UI.Xaml.DataTemplate;

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	public class CarouselViewRenderer : ViewRenderer<CarouselView, FrameworkElement>
	{
		WFlipView _flipView;

		bool _leftAdd;

		ICarouselViewController Controller
		{
			get { return Element; }
		}

		protected override void OnElementChanged(ElementChangedEventArgs<CarouselView> e)
		{
			base.OnElementChanged(e);

			if (e.OldElement != null)
			{
				_flipView.SelectionChanged -= SelectionChanged;
				_flipView.ItemsSource = null;
				Element.CollectionChanged -= CollectionChanged;
			}

			if (e.NewElement != null)
			{
				if (_flipView == null)
				{
					_flipView = new FlipView { IsSynchronizedWithCurrentItem = false, ItemTemplate = (WDataTemplate)WApp.Current.Resources["ItemTemplate"] };
				}

				_flipView.ItemsSource = Element.ItemsSource;
				_flipView.SelectedIndex = Element.Position;
				_flipView.SelectionChanged += SelectionChanged;
				Element.CollectionChanged += CollectionChanged;
			}

			if (_flipView != Control)
				SetNativeControl(_flipView);
		}

		protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
		{
			if (e.PropertyName == "Position" && _flipView.SelectedIndex != Element.Position)
			{
				if (!_leftAdd)
					_flipView.SelectedIndex = Element.Position;
				_leftAdd = false;
			}

			base.OnElementPropertyChanged(sender, e);
		}

		void CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
		{
			Controller.SendSelectedPositionChanged(_flipView.SelectedIndex);

			switch (e.Action)
			{
				case NotifyCollectionChangedAction.Add:
					if (e.NewStartingIndex <= Element.Position)
					{
						_leftAdd = true;
						int position = Element.Position + e.NewItems.Count;
						PositionChanged(position);
					}
					break;

				case NotifyCollectionChangedAction.Move:
					break;

				case NotifyCollectionChangedAction.Remove:
					if (Element.Count == 0)
						throw new InvalidOperationException("CarouselView must retain a least one item.");

					if (e.OldStartingIndex < Element.Position)
						PositionChanged(Element.Position - e.OldItems.Count);
					break;

				case NotifyCollectionChangedAction.Replace:
					break;

				case NotifyCollectionChangedAction.Reset:
					break;

				default:
					throw new Exception($"Enum value '{(int)e.Action}' is not a member of NotifyCollectionChangedAction enumeration.");
			}
		}

		void PositionChanged(int position)
		{
			if (!_leftAdd)
				_flipView.SelectedIndex = position;
			Element.Position = position;
			Controller.SendSelectedPositionChanged(position);
		}

		void SelectionChanged(object sender, SelectionChangedEventArgs e)
		{
			object[] addedItems = e.AddedItems.ToArray();
			object[] removedItems = e.RemovedItems.ToArray();

			object addedItem = addedItems.SingleOrDefault();
			if (addedItem != null)
			{
				PositionChanged(_flipView.SelectedIndex);
				Controller.SendSelectedItemChanged(addedItems.Single());
			}
		}
	}

	public class ItemControl : ContentControl
	{
		CarouselView _carouselView;
		object _item;
		View _view;

		public ItemControl()
		{
			DataContextChanged += OnDataContextChanged;
		}

		CarouselView CarouselView => LoadCarouselView();

		IItemViewController Controller => CarouselView;

		protected override WSize ArrangeOverride(WSize finalSize)
		{
			_view.Layout(new Rectangle(0, 0, CarouselView.Width, CarouselView.Height));
			return base.ArrangeOverride(finalSize);
		}

		protected override WSize MeasureOverride(WSize availableSize)
		{
			LoadCarouselView();

			if (_item != null)
			{
				SetDataContext(_item);
				_item = null;
			}

			return base.MeasureOverride(availableSize);
		}

		CarouselView LoadCarouselView()
		{
			if (_carouselView != null)
				return _carouselView;

			DependencyObject parent = VisualTreeHelper.GetParent(this);
			CarouselViewRenderer renderer = default(CarouselViewRenderer);

			do
			{
				if (parent == null)
					return null;

				renderer = parent as CarouselViewRenderer;
				if (renderer != null)
					break;

				parent = VisualTreeHelper.GetParent(parent);
			} while (true);

			_carouselView = renderer.Element;
			return _carouselView;
		}

		void OnDataContextChanged(FrameworkElement sender, DataContextChangedEventArgs args)
		{
			object item = args.NewValue;

			if (_carouselView != null)
				SetDataContext(item);

			else if (item != null)
				_item = item;
		}

		void SetDataContext(object item)
		{
			// type item
			object type = Controller.GetItemType(item);

			// activate item
			_view = Controller.CreateView(type);
			_view.Parent = CarouselView;
			_view.Layout(new Rectangle(0, 0, CarouselView.Width, CarouselView.Height));

			// render item
			IVisualElementRenderer renderer = Platform.CreateRenderer(_view);
			Platform.SetRenderer(_view, renderer);
			Content = renderer;

			// bind item
			Controller.BindView(_view, item);
		}
	}
}