Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PanelViewModel.cs « ViewModels « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23bf245e91913d80a9b978234500cd63d18c06eb (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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Cadenza.Collections;

namespace Xamarin.PropertyEditing.ViewModels
{
	internal class PanelGroupViewModel
		: NotifyingObject
	{
		public PanelGroupViewModel (TargetPlatform targetPlatform, string category, IEnumerable<EditorViewModel> editors, bool separateUncommon = true)
		{
			if (targetPlatform == null)
				throw new ArgumentNullException (nameof(targetPlatform));
			if (editors == null)
				throw new ArgumentNullException (nameof(editors));

			this.targetPlatform = targetPlatform;
			Category = category;
			AddCore (editors, separateUncommon);
		}

		public string Category
		{
			get;
		}

		public IReadOnlyList<EditorViewModel> Editors => this.editors;

		public IReadOnlyList<EditorViewModel> UncommonEditors => this.uncommonEditors;

		public bool HasChildElements => Editors.Count > 0 || HasUncommonElements;

		public bool HasUncommonElements => UncommonEditors.Count > 0;

		public bool UncommonShown
		{
			get;
			set;
		}

		public void Add (IEnumerable<EditorViewModel> editors)
		{
			AddCore (editors, separate: true);
		}

		public void Add (EditorViewModel editor)
		{
			AddCore (editor, separate: true);
		}

		public bool Remove (EditorViewModel editor)
		{
			if (editor == null)
				throw new ArgumentNullException (nameof(editor));

			var list = GetList (editor, separate: true);
			if (editor is PropertyViewModel pvm && this.targetPlatform.GroupedTypes != null && this.targetPlatform.GroupedTypes.TryGetValue (pvm.Property.Type, out string groupName)) {
				var group = list.OfType<PropertyGroupViewModel> ().First (gvm => gvm.Category == groupName);
				if (group != null) {
					bool found = group.Remove (pvm);
					if (!group.HasChildElements)
						list.Remove (group);

					return found;
				}
			}

			return list.Remove (editor);
		}

		public bool GetIsExpanded (PropertyArrangeMode mode)
		{
			if (this.isExpanded == null)
				return false;

			this.isExpanded.TryGetValue (mode, out bool expanded);
			return expanded;
		}

		public void SetIsExpanded (PropertyArrangeMode mode, bool expanded)
		{
			if (this.isExpanded == null) {
				if (!expanded)
					return;

				this.isExpanded = new Dictionary<PropertyArrangeMode, bool> ();
			}

			this.isExpanded[mode] = expanded;
		}

		private Dictionary<PropertyArrangeMode, bool> isExpanded;
		private readonly ObservableCollectionEx<EditorViewModel> editors = new ObservableCollectionEx<EditorViewModel> ();
		private readonly ObservableCollectionEx<EditorViewModel> uncommonEditors = new ObservableCollectionEx<EditorViewModel> ();
		private readonly TargetPlatform targetPlatform;

		private void AddCore (IEnumerable<EditorViewModel> editors, bool separate)
		{
			if (editors == null)
				throw new ArgumentNullException (nameof (editors));

			foreach (EditorViewModel evm in editors)
				AddCore (evm, separate);
		}

		private void AddCore (EditorViewModel editor, bool separate)
		{
			if (editor == null)
				throw new ArgumentNullException (nameof (editor));

			var list = GetList (editor, separate);
			if (editor is PropertyViewModel pvm && this.targetPlatform.GroupedTypes != null && this.targetPlatform.GroupedTypes.TryGetValue (pvm.Property.Type, out string groupName)) {
				var group = list.OfType<PropertyGroupViewModel> ().FirstOrDefault (gvm => gvm.Category == groupName);
				if (group != null)
					group.Add (pvm);
				else
					list.Add (editor);
			} else
				list.Add (editor);

			OnPropertyChanged (nameof(HasChildElements));
			OnPropertyChanged (nameof(HasUncommonElements));
		}

		private IList<EditorViewModel> GetList (EditorViewModel evm, bool separate)
		{
			if (separate && evm is PropertyViewModel pvm)
				return pvm.Property.IsUncommon ? this.uncommonEditors : this.editors;
			else
				return this.editors;
		}
	}

	internal class PanelViewModel
		: PropertiesViewModel, IFilterable
	{
		public PanelViewModel (TargetPlatform targetPlatform)
			: base (targetPlatform)
		{
			if (targetPlatform == null)
				throw new ArgumentNullException (nameof(targetPlatform));

			var modes = new List<ArrangeModeViewModel> ();
			if (targetPlatform.ArrangeModes == null || targetPlatform.ArrangeModes.Count == 0)
				modes.Add (new ArrangeModeViewModel (PropertyArrangeMode.Name, this));
			else {
				for (int i = 0; i < targetPlatform.ArrangeModes.Count; i++)
					modes.Add (new ArrangeModeViewModel (targetPlatform.ArrangeModes[i], this));
			}

			ArrangeModes = modes;
		}

		public event EventHandler ArrangedPropertiesChanged;

		public IReadOnlyList<PanelGroupViewModel> ArrangedEditors => (IReadOnlyList<PanelGroupViewModel>)this.arranged.Values;

		/// <summary>
		/// Gets or sets whether all categories should automatically expand.
		/// </summary>
		public bool AutoExpand
		{
			get { return this.autoExpand; }
			set
			{
				if (this.autoExpand == value)
					return;

				this.autoExpand = value;
				UpdateExpanded (value);
				OnPropertyChanged();
			}
		}

		public bool HasChildElements => (this.arranged.Count > 0);

		public bool IsFiltering => !String.IsNullOrWhiteSpace (FilterText);

		public string FilterText
		{
			get { return this.filterText; }
			set
			{
				if (this.filterText == value)
					return;

				string oldFilter = this.filterText;
				this.filterText = value;
				Filter (oldFilter);
				OnPropertyChanged ();
				if (String.IsNullOrWhiteSpace (oldFilter) != String.IsNullOrWhiteSpace (value))
					OnPropertyChanged (nameof(IsFiltering));
			}
		}

		public PropertyArrangeMode ArrangeMode
		{
			get { return this.arrangeMode; }
			set
			{
				if (this.arrangeMode == value)
					return;

				this.arrangeMode = value;
				Arrange ();
				OnPropertyChanged ();
			}
		}

		public IReadOnlyList<ArrangeModeViewModel> ArrangeModes
		{
			get;
		}

		public bool GetIsExpanded (string group)
		{
			if (group == null || !this.arranged.TryGetValue (group, out PanelGroupViewModel panelGroup))
				return false;

			return panelGroup.GetIsExpanded (ArrangeMode);
		}

		public void SetIsExpanded (string group, bool isExpanded)
		{
			SetIsExpanded (ArrangeMode, group, isExpanded);
		}

		public Task<Stream> GetIconAsync ()
		{
			if (TargetPlatform.IconProvider == null)
				return Task.FromResult<Stream> (null);

			return TargetPlatform.IconProvider.GetTypeIconAsync (ObjectEditors.Select (oe => oe.TargetType).ToArray ());
		}

		protected override void OnAddEditors (IEnumerable<EditorViewModel> editors)
		{
			IEnumerable<EditorViewModel> props = Properties;
			if (!String.IsNullOrWhiteSpace (FilterText))
				props = props.Where (MatchesFilter);

			props = props.OrderBy (vm => vm);

			Dictionary<string, List<PropertyViewModel>> groupedTypeProperties = null;

			bool isFlat = ArrangeMode == PropertyArrangeMode.Name;

			this.arranged.Clear ();
			foreach (var grouping in props.GroupBy (GetGroup).OrderBy (g => g.Key, CategoryComparer.Instance)) {
				HashSet<EditorViewModel> remainingItems = null;

				if (ArrangeMode == PropertyArrangeMode.Category) {
					foreach (EditorViewModel editorVm in grouping) {
						var vm = editorVm as PropertyViewModel;
						if (vm != null && TargetPlatform.GroupedTypes != null && TargetPlatform.GroupedTypes.TryGetValue (vm.Property.Type, out string category)) {
							if (remainingItems == null)
								remainingItems = new HashSet<EditorViewModel> (grouping);

							remainingItems.Remove (vm);

							if (groupedTypeProperties == null)
								groupedTypeProperties = new Dictionary<string, List<PropertyViewModel>> ();
							if (!groupedTypeProperties.TryGetValue (category, out List<PropertyViewModel> group))
								groupedTypeProperties[category] = group = new List<PropertyViewModel> ();

							group.Add (vm);
						}
					}
				}

				string key = grouping.Key;
				if (remainingItems != null) {// TODO: pretty sure this was out of order before, add test
					if (remainingItems.Count > 0)
						this.arranged.Add (key, new PanelGroupViewModel (TargetPlatform, key, grouping.Where (evm => remainingItems.Contains (evm))));
				} else
					this.arranged.Add (key, new PanelGroupViewModel (TargetPlatform, key, grouping, separateUncommon: !isFlat));

				AutoExpandGroup (key);
			}

			if (groupedTypeProperties != null) { // Insert type-grouped properties back in sorted.
				int i = 0;
				foreach (var kvp in groupedTypeProperties.OrderBy (kvp => kvp.Key, CategoryComparer.Instance)) {
					var group = new PanelGroupViewModel (TargetPlatform, kvp.Key, new[] { new PropertyGroupViewModel (TargetPlatform, kvp.Key, kvp.Value, ObjectEditors) });

					bool added = false;
					for (; i < this.arranged.Count; i++) {
						var g = this.arranged[i];

						// TODO: Are we translating categories? If so this needs to lookup the resource and be culture specific
						// nulls go on the bottom.
						if (String.IsNullOrEmpty (g.Category) || String.Compare (g.Category, kvp.Key, StringComparison.Ordinal) > 0) {
							added = true;
							this.arranged.Insert (i, group.Category, group);
							break;
						}
					}

					if (!added)
						this.arranged.Add (group.Category, group);

					AutoExpandGroup (group.Category);
				}
			}

			ArrangedPropertiesChanged?.Invoke (this, EventArgs.Empty);
		}

		protected override void OnRemoveEditors (IEnumerable<EditorViewModel> editors)
		{
			foreach (EditorViewModel vm in editors) {
				string g = GetGroup (vm);
				PanelGroupViewModel group = this.arranged[g];
				if (group == null)
					continue;

				group.Remove (vm);
				if (!group.HasChildElements)
					this.arranged.Remove (group.Category);
			}

			ArrangedPropertiesChanged?.Invoke (this, EventArgs.Empty);
		}

		protected override void OnClearProperties ()
		{
			this.arranged.Clear ();

			ArrangedPropertiesChanged?.Invoke (this, EventArgs.Empty);
		}

		private readonly OrderedDictionary<string, PanelGroupViewModel> arranged = new OrderedDictionary<string, PanelGroupViewModel> ();

		private PropertyArrangeMode arrangeMode;
		private string filterText;
		private bool autoExpand;

		private void AutoExpandGroup (string group)
		{
			if (group == null || !this.arranged.TryGetValue (group, out PanelGroupViewModel panelGroup))
				return;
			if (!AutoExpand && (TargetPlatform.AutoExpandGroups == null || !TargetPlatform.AutoExpandGroups.Contains (group)))
				return;

			UpdateExpanded (new[] { panelGroup }, true);
		}

		private void SetIsExpanded (PropertyArrangeMode mode, string group, bool isExpanded)
		{
			if (!this.arranged.TryGetValue (group, out PanelGroupViewModel panelGroup) || mode == PropertyArrangeMode.Name)
				return;

			panelGroup.SetIsExpanded (mode, isExpanded);
		}

		private void UpdateExpanded (bool expanded)
		{
			UpdateExpanded (this.arranged.Values, expanded);
		}

		private void UpdateExpanded (IEnumerable<PanelGroupViewModel> groups, bool expanded)
		{
			foreach (PanelGroupViewModel group in groups) {
				foreach (var mode in ArrangeModes) {
					if (mode.ArrangeMode == PropertyArrangeMode.Name)
						continue;

					group.SetIsExpanded (mode.ArrangeMode, expanded);
				}
			}
		}

		private void Arrange()
		{
			this.arranged.Clear ();

			OnAddEditors (Properties);
		}

		private void Filter (string oldFilter)
		{
			bool hadChildren = HasChildElements;

			if (FilterText != null && (String.IsNullOrWhiteSpace (oldFilter) || FilterText.StartsWith (oldFilter, StringComparison.OrdinalIgnoreCase))) {
				var toRemove = new List<EditorViewModel> ();
				foreach (PanelGroupViewModel g in this.arranged.Values) {
					foreach (EditorViewModel vm in g.Editors.Concat (g.UncommonEditors)) {
						if (!MatchesFilter (vm))
							toRemove.Add (vm);
						else if (vm is IFilterable) {
							var filterable = (IFilterable) vm;
							filterable.FilterText = FilterText;
							if (!filterable.HasChildElements)
								toRemove.Add (vm);
						}
					}
				}

				OnRemoveEditors (toRemove);
			} else {
				OnAddEditors (Properties);
			}

			if (hadChildren != HasChildElements)
				OnPropertyChanged (nameof(HasChildElements));
		}

		private string GetGroup (EditorViewModel vm)
		{
			if (ArrangeMode == PropertyArrangeMode.Name)
				return "0";
			if (vm is PropertyViewModel pvm) {
				if (TargetPlatform.GroupedTypes != null && TargetPlatform.GroupedTypes.TryGetValue (pvm.Property.Type, out string groupName))
					return groupName;
			}

			return vm.Category ?? String.Empty;
		}

		private bool MatchesFilter (EditorViewModel vm)
		{
			if (String.IsNullOrWhiteSpace (FilterText))
				return true;
			if (ArrangeMode == PropertyArrangeMode.Category && !String.IsNullOrEmpty (vm.Category) && vm.Category.Contains (FilterText, StringComparison.OrdinalIgnoreCase))
				return true;
			if (String.IsNullOrWhiteSpace (vm.Name))
				return false;

			return vm.Name.Contains (FilterText, StringComparison.OrdinalIgnoreCase);
		}
	}
}