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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;
using Tango.BL.Entities;
using Tango.MachineStudio.Common.Notifications;
using Tango.SharedUI;
using Tango.BL;
using Tango.SharedUI.Components;
using System.Runtime.CompilerServices;
namespace Tango.MachineStudio.HardwareDesigner.ViewModels
{
public class MainViewVM : ViewModel
{
private INotificationProvider _notification;
private bool _isNew;
private ObservablesEntitiesAdapter _adapter;
public ObservablesEntitiesAdapter Adapter
{
get { return _adapter; }
set { _adapter = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<HardwareMotorType> _motorTypes;
public SelectedObjectCollection<HardwareMotorType> MotorTypes
{
get { return _motorTypes; }
set { _motorTypes = value; RaisePropertyChangedAuto(); }
}
private ObservableCollection<HardwareMotorType> _selectedMotorTypes;
public ObservableCollection<HardwareMotorType> SelectedMotorTypes
{
get { return _selectedMotorTypes; }
set { _selectedMotorTypes = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<HardwareDancerType> _dancerTypes;
public SelectedObjectCollection<HardwareDancerType> DancerTypes
{
get { return _dancerTypes; }
set { _dancerTypes = value; RaisePropertyChangedAuto(); }
}
private ObservableCollection<HardwareDancerType> _selectedDancerTypes;
public ObservableCollection<HardwareDancerType> SelectedDancerTypes
{
get { return _selectedDancerTypes; }
set { _selectedDancerTypes = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<HardwarePidControlType> _pidControlTypes;
public SelectedObjectCollection<HardwarePidControlType> PidControlTypes
{
get { return _pidControlTypes; }
set { _pidControlTypes = value; RaisePropertyChangedAuto(); }
}
private ObservableCollection<HardwarePidControlType> _selectedPidControlTypes;
public ObservableCollection<HardwarePidControlType> SelectedPidControlTypes
{
get { return _selectedPidControlTypes; }
set { _selectedPidControlTypes = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<HardwareWinderType> _winderTypes;
public SelectedObjectCollection<HardwareWinderType> WinderTypes
{
get { return _winderTypes; }
set { _winderTypes = value; RaisePropertyChangedAuto(); }
}
private ObservableCollection<HardwareWinderType> _selectedWinderTypes;
public ObservableCollection<HardwareWinderType> SelectedWinderTypes
{
get { return _selectedWinderTypes; }
set { _selectedWinderTypes = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<HardwareSpeedSensorType> _speedSensorTypes;
public SelectedObjectCollection<HardwareSpeedSensorType> SpeedSensorTypes
{
get { return _speedSensorTypes; }
set { _speedSensorTypes = value; RaisePropertyChangedAuto(); }
}
private ObservableCollection<HardwareSpeedSensorType> _selectedSpeedSensorTypes;
public ObservableCollection<HardwareSpeedSensorType> SelectedSpeedSensorTypes
{
get { return _selectedSpeedSensorTypes; }
set { _selectedSpeedSensorTypes = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<HardwareBlowerType> _blowerTypes;
public SelectedObjectCollection<HardwareBlowerType> BlowerTypes
{
get { return _blowerTypes; }
set { _blowerTypes = value; RaisePropertyChangedAuto(); }
}
private ObservableCollection<HardwareBlowerType> _selectedBlowerTypes;
public ObservableCollection<HardwareBlowerType> SelectedBlowerTypes
{
get { return _selectedBlowerTypes; }
set { _selectedBlowerTypes = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<HardwareBreakSensorType> _breakSensorTypes;
public SelectedObjectCollection<HardwareBreakSensorType> BreakSensorTypes
{
get { return _breakSensorTypes; }
set { _breakSensorTypes = value; RaisePropertyChangedAuto(); }
}
private ObservableCollection<HardwareBreakSensorType> _selectedBreakSensorTypes;
public ObservableCollection<HardwareBreakSensorType> SelectedBreakSensorTypes
{
get { return _selectedBreakSensorTypes; }
set { _selectedBreakSensorTypes = value; RaisePropertyChangedAuto(); }
}
private HardwareVersion _selectedVersion;
public HardwareVersion SelectedVersion
{
get { return _selectedVersion; }
set { _selectedVersion = value; RaisePropertyChangedAuto(); OnSelectedVersionChanged(); }
}
private HardwareVersion _currentVersion;
public HardwareVersion CurrentVersion
{
get { return _currentVersion; }
set { _currentVersion = value; RaisePropertyChangedAuto(); InvalidateRelayCommands(); }
}
private IObservableEntity _selectedHardwareObject;
public IObservableEntity SelectedHardwareObject
{
get { return _selectedHardwareObject; }
set
{
_selectedHardwareObject = null;
RaisePropertyChangedAuto();
_selectedHardwareObject = value;
RaisePropertyChangedAuto();
}
}
private Object _selectedHardwareObjectType;
public Object SelectedHardwareObjectType
{
get { return _selectedHardwareObjectType; }
set
{
_selectedHardwareObjectType = null;
RaisePropertyChangedAuto();
_selectedHardwareObjectType = value;
RaisePropertyChangedAuto();
OnSelectedHardwareObjectTypeChanged();
}
}
public RelayCommand SaveCommand { get; set; }
public RelayCommand DeleteCommand { get; set; }
public RelayCommand NewCommand { get; set; }
public RelayCommand CloneCommand { get; set; }
public RelayCommand CopyParametersCommand { get; set; }
public MainViewVM(INotificationProvider notification)
{
_notification = notification;
Adapter = ObservablesEntitiesAdapter.Instance;
SaveCommand = new RelayCommand(Save, () => SelectedVersion != null);
NewCommand = new RelayCommand(New);
DeleteCommand = new RelayCommand(Delete, () => !_isNew && SelectedVersion != null);
CurrentVersion = new HardwareVersion();
CreateTemplate(CurrentVersion);
CopyParametersCommand = new RelayCommand(CopyParameters, (x) => SelectedVersion != null && SelectedHardwareObjectType != null);
CloneCommand = new RelayCommand(CloneCurrentVersion, () => SelectedVersion != null);
}
private void CopyParameters(object obj)
{
IObservableEntity source = obj.GetType().GetProperty("Data").GetValue(obj) as IObservableEntity;
IObservableEntity target = null;
if (source is HardwareMotorType)
{
target = CurrentVersion.HardwareMotors.SingleOrDefault(x => x.HardwareMotorType == source);
}
else if (source is HardwareDancerType)
{
target = CurrentVersion.HardwareDancers.SingleOrDefault(x => x.HardwareDancerType == source);
}
else if (source is HardwarePidControlType)
{
target = CurrentVersion.HardwarePidControls.SingleOrDefault(x => x.HardwarePidControlType == source);
}
else if (source is HardwareWinderType)
{
target = CurrentVersion.HardwareWinders.SingleOrDefault(x => x.HardwareWinderType == source);
}
else if (source is HardwareSpeedSensorType)
{
target = CurrentVersion.HardwareSpeedSensors.SingleOrDefault(x => x.HardwareSpeedSensorType == source);
}
else if (source is HardwareBlowerType)
{
target = CurrentVersion.HardwareBlowers.SingleOrDefault(x => x.HardwareBlowerType == source);
}
else if (source is HardwareBreakSensorType)
{
target = CurrentVersion.HardwareBreakSensors.SingleOrDefault(x => x.HardwareBreakSensorType == source);
}
target.MapPrimitivesTo(SelectedHardwareObject);
}
private void OnSelectedHardwareObjectTypeChanged()
{
if (SelectedHardwareObjectType != null)
{
if (SelectedHardwareObjectType is SelectedObject<HardwareMotorType>)
{
var type = (SelectedHardwareObjectType as SelectedObject<HardwareMotorType>).Data;
var hardwareObj = CurrentVersion.HardwareMotors.SingleOrDefault(x => x.HardwareMotorType == type);
if (hardwareObj != null)
{
SelectedHardwareObject = hardwareObj;
}
else
{
hardwareObj = new HardwareMotor() { HardwareMotorType = type };
CurrentVersion.HardwareMotors.Add(hardwareObj);
SelectedHardwareObject = hardwareObj;
}
}
else if (SelectedHardwareObjectType is SelectedObject<HardwareDancerType>)
{
var type = (SelectedHardwareObjectType as SelectedObject<HardwareDancerType>).Data;
var hardwareObj = CurrentVersion.HardwareDancers.SingleOrDefault(x => x.HardwareDancerType == type);
if (hardwareObj != null)
{
SelectedHardwareObject = hardwareObj;
}
else
{
hardwareObj = new HardwareDancer() { HardwareDancerType = type };
CurrentVersion.HardwareDancers.Add(hardwareObj);
SelectedHardwareObject = hardwareObj;
}
}
else if (SelectedHardwareObjectType is SelectedObject<HardwarePidControlType>)
{
var type = (SelectedHardwareObjectType as SelectedObject<HardwarePidControlType>).Data;
var hardwareObj = CurrentVersion.HardwarePidControls.SingleOrDefault(x => x.HardwarePidControlType == type);
if (hardwareObj != null)
{
SelectedHardwareObject = hardwareObj;
}
else
{
hardwareObj = new HardwarePidControl() { HardwarePidControlType = type };
CurrentVersion.HardwarePidControls.Add(hardwareObj);
SelectedHardwareObject = hardwareObj;
}
}
else if (SelectedHardwareObjectType is SelectedObject<HardwareWinderType>)
{
var type = (SelectedHardwareObjectType as SelectedObject<HardwareWinderType>).Data;
var hardwareObj = CurrentVersion.HardwareWinders.SingleOrDefault(x => x.HardwareWinderType == type);
if (hardwareObj != null)
{
SelectedHardwareObject = hardwareObj;
}
else
{
hardwareObj = new HardwareWinder() { HardwareWinderType = type };
CurrentVersion.HardwareWinders.Add(hardwareObj);
SelectedHardwareObject = hardwareObj;
}
}
else if (SelectedHardwareObjectType is SelectedObject<HardwareSpeedSensorType>)
{
var type = (SelectedHardwareObjectType as SelectedObject<HardwareSpeedSensorType>).Data;
var hardwareObj = CurrentVersion.HardwareSpeedSensors.SingleOrDefault(x => x.HardwareSpeedSensorType == type);
if (hardwareObj != null)
{
SelectedHardwareObject = hardwareObj;
}
else
{
hardwareObj = new HardwareSpeedSensor() { HardwareSpeedSensorType = type };
CurrentVersion.HardwareSpeedSensors.Add(hardwareObj);
SelectedHardwareObject = hardwareObj;
}
}
else if (SelectedHardwareObjectType is SelectedObject<HardwareBlowerType>)
{
var type = (SelectedHardwareObjectType as SelectedObject<HardwareBlowerType>).Data;
var hardwareObj = CurrentVersion.HardwareBlowers.SingleOrDefault(x => x.HardwareBlowerType == type);
if (hardwareObj != null)
{
SelectedHardwareObject = hardwareObj;
}
else
{
hardwareObj = new HardwareBlower() { HardwareBlowerType = type };
CurrentVersion.HardwareBlowers.Add(hardwareObj);
SelectedHardwareObject = hardwareObj;
}
}
else if (SelectedHardwareObjectType is SelectedObject<HardwareBreakSensorType>)
{
var type = (SelectedHardwareObjectType as SelectedObject<HardwareBreakSensorType>).Data;
var hardwareObj = CurrentVersion.HardwareBreakSensors.SingleOrDefault(x => x.HardwareBreakSensorType == type);
if (hardwareObj != null)
{
SelectedHardwareObject = hardwareObj;
}
else
{
hardwareObj = new HardwareBreakSensor() { HardwareBreakSensorType = type };
CurrentVersion.HardwareBreakSensors.Add(hardwareObj);
SelectedHardwareObject = hardwareObj;
}
}
}
}
private void CreateTemplate(HardwareVersion version)
{
if (version == null)
{
SelectedMotorTypes = new ObservableCollection<HardwareMotorType>();
SelectedDancerTypes = new ObservableCollection<HardwareDancerType>();
SelectedPidControlTypes = new ObservableCollection<HardwarePidControlType>();
SelectedWinderTypes = new ObservableCollection<HardwareWinderType>();
SelectedSpeedSensorTypes = new ObservableCollection<HardwareSpeedSensorType>();
SelectedBlowerTypes = new ObservableCollection<HardwareBlowerType>();
SelectedBreakSensorTypes = new ObservableCollection<HardwareBreakSensorType>();
}
else
{
SelectedMotorTypes = version.HardwareMotors.Select(x => x.HardwareMotorType).ToObservableCollection();
SelectedDancerTypes = version.HardwareDancers.Select(x => x.HardwareDancerType).ToObservableCollection();
SelectedPidControlTypes = version.HardwarePidControls.Select(x => x.HardwarePidControlType).ToObservableCollection();
SelectedWinderTypes = version.HardwareWinders.Select(x => x.HardwareWinderType).ToObservableCollection();
SelectedSpeedSensorTypes = version.HardwareSpeedSensors.Select(x => x.HardwareSpeedSensorType).ToObservableCollection();
SelectedBlowerTypes = version.HardwareBlowers.Select(x => x.HardwareBlowerType).ToObservableCollection();
SelectedBreakSensorTypes = version.HardwareBreakSensors.Select(x => x.HardwareBreakSensorType).ToObservableCollection();
}
MotorTypes = new SelectedObjectCollection<HardwareMotorType>(Adapter.HardwareMotorTypes, SelectedMotorTypes);
DancerTypes = new SelectedObjectCollection<HardwareDancerType>(Adapter.HardwareDancerTypes, SelectedDancerTypes);
PidControlTypes = new SelectedObjectCollection<HardwarePidControlType>(Adapter.HardwarePidControlTypes, SelectedPidControlTypes);
WinderTypes = new SelectedObjectCollection<HardwareWinderType>(Adapter.HardwareWinderTypes, SelectedWinderTypes);
SpeedSensorTypes = new SelectedObjectCollection<HardwareSpeedSensorType>(Adapter.HardwareSpeedSensorTypes, SelectedSpeedSensorTypes);
BlowerTypes = new SelectedObjectCollection<HardwareBlowerType>(Adapter.HardwareBlowerTypes, SelectedBlowerTypes);
BreakSensorTypes = new SelectedObjectCollection<HardwareBreakSensorType>(Adapter.HardwareBreakSensorTypes, SelectedBreakSensorTypes);
}
private void OnSelectedVersionChanged()
{
if (SelectedVersion != null)
{
_isNew = false;
CurrentVersion = SelectedVersion.Clone();
CreateTemplate(CurrentVersion);
}
InvalidateRelayCommands();
}
private bool CheckCurrentVersionNull()
{
if (CurrentVersion == null)
{
_notification.ShowInfo("Please select a hardware version before attempting to insert any components.");
return true;
}
return false;
}
private void New()
{
String name = _notification.ShowTextInput("Enter hardware version name", "Name");
if (!String.IsNullOrWhiteSpace(name))
{
SelectedVersion = null;
CurrentVersion = new HardwareVersion();
CurrentVersion.Version = Adapter.HardwareVersions.Max(x => x.Version) + 1;
CurrentVersion.Name = name;
CreateTemplate(CurrentVersion);
_isNew = true;
InvalidateRelayCommands();
}
}
private async void Save()
{
if (CurrentVersion != null)
{
using (_notification.PushTaskItem("Saving hardware version..."))
{
await Task.Factory.StartNew(() =>
{
HardwareVersion realVersion = null;
if (_isNew)
{
realVersion = CurrentVersion.Clone();
realVersion.HardwareMotors.ToList().Where(x => !SelectedMotorTypes.Contains(x.HardwareMotorType)).ToList().ForEach(x => realVersion.HardwareMotors.Remove(x));
realVersion.HardwareDancers.ToList().Where(x => !SelectedDancerTypes.Contains(x.HardwareDancerType)).ToList().ForEach(x => realVersion.HardwareDancers.Remove(x));
realVersion.HardwarePidControls.ToList().Where(x => !SelectedPidControlTypes.Contains(x.HardwarePidControlType)).ToList().ForEach(x => realVersion.HardwarePidControls.Remove(x));
realVersion.HardwareWinders.ToList().Where(x => !SelectedWinderTypes.Contains(x.HardwareWinderType)).ToList().ForEach(x => realVersion.HardwareWinders.Remove(x));
realVersion.HardwareSpeedSensors.ToList().Where(x => !SelectedSpeedSensorTypes.Contains(x.HardwareSpeedSensorType)).ToList().ForEach(x => realVersion.HardwareSpeedSensors.Remove(x));
realVersion.HardwareBlowers.ToList().Where(x => !SelectedBlowerTypes.Contains(x.HardwareBlowerType)).ToList().ForEach(x => realVersion.HardwareBlowers.Remove(x));
realVersion.HardwareBreakSensors.ToList().Where(x => !SelectedBreakSensorTypes.Contains(x.HardwareBreakSensorType)).ToList().ForEach(x => realVersion.HardwareBreakSensors.Remove(x));
}
else
{
realVersion = Adapter.HardwareVersions.SingleOrDefault(x => x.Guid == SelectedVersion.Guid);
realVersion.Version = CurrentVersion.Version;
realVersion.Name = CurrentVersion.Name;
realVersion.HardwareDancers.ToList().ForEach(x => x.DefferedDelete(Adapter.Context));
realVersion.HardwareMotors.ToList().ForEach(x => x.DefferedDelete(Adapter.Context));
realVersion.HardwarePidControls.ToList().ForEach(x => x.DefferedDelete(Adapter.Context));
realVersion.HardwareWinders.ToList().ForEach(x => x.DefferedDelete(Adapter.Context));
realVersion.HardwareSpeedSensors.ToList().ForEach(x => x.DefferedDelete(Adapter.Context));
realVersion.HardwareBlowers.ToList().ForEach(x => x.DefferedDelete(Adapter.Context));
realVersion.HardwareBreakSensors.ToList().ForEach(x => x.DefferedDelete(Adapter.Context));
realVersion.HardwareDancers.Clear();
realVersion.HardwareMotors.Clear();
realVersion.HardwarePidControls.Clear();
realVersion.HardwareWinders.Clear();
realVersion.HardwareSpeedSensors.Clear();
realVersion.HardwareBlowers.Clear();
realVersion.HardwareBreakSensors.Clear();
foreach (var type in SelectedDancerTypes)
{
var item = CurrentVersion.HardwareDancers.SingleOrDefault(x => x.HardwareDancerType == type);
if (item != null)
{
item.HardwareVersionGuid = realVersion.Guid;
realVersion.HardwareDancers.Add(item);
}
else
{
realVersion.HardwareDancers.Add(new HardwareDancer()
{
HardwareVersionGuid = realVersion.Guid,
HardwareDancerType = type
});
}
}
foreach (var type in SelectedMotorTypes)
{
var item = CurrentVersion.HardwareMotors.SingleOrDefault(x => x.HardwareMotorType == type);
if (item != null)
{
item.HardwareVersionGuid = realVersion.Guid;
realVersion.HardwareMotors.Add(item);
}
else
{
realVersion.HardwareMotors.Add(new HardwareMotor()
{
HardwareVersionGuid = realVersion.Guid,
HardwareMotorType = type
});
}
}
foreach (var type in SelectedPidControlTypes)
{
var item = CurrentVersion.HardwarePidControls.SingleOrDefault(x => x.HardwarePidControlType == type);
if (item != null)
{
item.HardwareVersionGuid = realVersion.Guid;
realVersion.HardwarePidControls.Add(item);
}
else
{
realVersion.HardwarePidControls.Add(new HardwarePidControl()
{
HardwareVersionGuid = realVersion.Guid,
HardwarePidControlType = type
});
}
}
foreach (var type in SelectedWinderTypes)
{
var item = CurrentVersion.HardwareWinders.SingleOrDefault(x => x.HardwareWinderType == type);
if (item != null)
{
item.HardwareVersionGuid = realVersion.Guid;
realVersion.HardwareWinders.Add(item);
}
else
{
realVersion.HardwareWinders.Add(new HardwareWinder()
{
HardwareVersionGuid = realVersion.Guid,
HardwareWinderType = type
});
}
}
foreach (var type in SelectedSpeedSensorTypes)
{
var item = CurrentVersion.HardwareSpeedSensors.SingleOrDefault(x => x.HardwareSpeedSensorType == type);
if (item != null)
{
item.HardwareVersionGuid = realVersion.Guid;
realVersion.HardwareSpeedSensors.Add(item);
}
else
{
realVersion.HardwareSpeedSensors.Add(new HardwareSpeedSensor()
{
HardwareVersionGuid = realVersion.Guid,
HardwareSpeedSensorType = type
});
}
}
foreach (var type in SelectedBlowerTypes)
{
var item = CurrentVersion.HardwareBlowers.SingleOrDefault(x => x.HardwareBlowerType == type);
if (item != null)
{
item.HardwareVersionGuid = realVersion.Guid;
realVersion.HardwareBlowers.Add(item);
}
else
{
realVersion.HardwareBlowers.Add(new HardwareBlower()
{
HardwareVersionGuid = realVersion.Guid,
HardwareBlowerType = type
});
}
}
foreach (var type in SelectedBreakSensorTypes)
{
var item = CurrentVersion.HardwareBreakSensors.SingleOrDefault(x => x.HardwareBreakSensorType == type);
if (item != null)
{
item.HardwareVersionGuid = realVersion.Guid;
realVersion.HardwareBreakSensors.Add(item);
}
else
{
realVersion.HardwareBreakSensors.Add(new HardwareBreakSensor()
{
HardwareVersionGuid = realVersion.Guid,
HardwareBreakSensorType = type
});
}
}
}
if (_isNew)
{
Adapter.Context.HardwareVersions.Add(realVersion);
}
realVersion.Save(Adapter.Context);
SelectedVersion = Adapter.HardwareVersions.SingleOrDefault(x => x.Guid == realVersion.Guid);
});
}
}
}
private async void CloneCurrentVersion()
{
if (CurrentVersion != null)
{
String name = _notification.ShowTextInput("Enter new hardware configuration name", "Name", CurrentVersion.Name + " - Copy");
if (!String.IsNullOrWhiteSpace(name))
{
using (_notification.PushTaskItem("Cloning hardware configuration..."))
{
await Task.Factory.StartNew(() =>
{
var realVersion = CurrentVersion.Clone();
realVersion.Name = name;
realVersion.Version = 1;
realVersion.HardwareMotors.ToList().Where(x => !SelectedMotorTypes.Contains(x.HardwareMotorType)).ToList().ForEach(x => realVersion.HardwareMotors.Remove(x));
realVersion.HardwareDancers.ToList().Where(x => !SelectedDancerTypes.Contains(x.HardwareDancerType)).ToList().ForEach(x => realVersion.HardwareDancers.Remove(x));
realVersion.HardwarePidControls.ToList().Where(x => !SelectedPidControlTypes.Contains(x.HardwarePidControlType)).ToList().ForEach(x => realVersion.HardwarePidControls.Remove(x));
realVersion.HardwareWinders.ToList().Where(x => !SelectedWinderTypes.Contains(x.HardwareWinderType)).ToList().ForEach(x => realVersion.HardwareWinders.Remove(x));
realVersion.HardwareSpeedSensors.ToList().Where(x => !SelectedSpeedSensorTypes.Contains(x.HardwareSpeedSensorType)).ToList().ForEach(x => realVersion.HardwareSpeedSensors.Remove(x));
realVersion.HardwareBlowers.ToList().Where(x => !SelectedBlowerTypes.Contains(x.HardwareBlowerType)).ToList().ForEach(x => realVersion.HardwareBlowers.Remove(x));
realVersion.HardwareBreakSensors.ToList().Where(x => !SelectedBreakSensorTypes.Contains(x.HardwareBreakSensorType)).ToList().ForEach(x => realVersion.HardwareBreakSensors.Remove(x));
realVersion.HardwareMotors.ToList().ForEach(x => x.HardwareVersionGuid = realVersion.Guid);
realVersion.HardwareDancers.ToList().ForEach(x => x.HardwareVersionGuid = realVersion.Guid);
realVersion.HardwarePidControls.ToList().ForEach(x => x.HardwareVersionGuid = realVersion.Guid);
realVersion.HardwareWinders.ToList().ForEach(x => x.HardwareVersionGuid = realVersion.Guid);
realVersion.HardwareSpeedSensors.ToList().ForEach(x => x.HardwareVersionGuid = realVersion.Guid);
realVersion.HardwareBlowers.ToList().ForEach(x => x.HardwareVersionGuid = realVersion.Guid);
realVersion.HardwareBreakSensors.ToList().ForEach(x => x.HardwareVersionGuid = realVersion.Guid);
realVersion.HardwareMotors.ToList().ForEach(x => x.HardwareVersion = realVersion);
realVersion.HardwareDancers.ToList().ForEach(x => x.HardwareVersion = realVersion);
realVersion.HardwarePidControls.ToList().ForEach(x => x.HardwareVersion = realVersion);
realVersion.HardwareWinders.ToList().ForEach(x => x.HardwareVersion = realVersion);
realVersion.HardwareSpeedSensors.ToList().ForEach(x => x.HardwareVersion = realVersion);
realVersion.HardwareBlowers.ToList().ForEach(x => x.HardwareVersion = realVersion);
realVersion.HardwareBreakSensors.ToList().ForEach(x => x.HardwareVersion = realVersion);
Adapter.Context.HardwareVersions.Add(realVersion);
realVersion.Save(Adapter.Context);
SelectedVersion = Adapter.HardwareVersions.SingleOrDefault(x => x.Guid == realVersion.Guid);
});
}
}
}
}
private void Delete()
{
if (_notification.ShowQuestion("Are you sure you want to delete this hardware version?"))
{
using (_notification.PushTaskItem("Deleting hardware version..."))
{
SelectedVersion.DeleteAsync(Adapter.Context);
SelectedVersion = null;
CurrentVersion = null;
}
}
}
protected override void RaisePropertyChangedAuto([CallerMemberName] string caller = null)
{
base.RaisePropertyChangedAuto(caller);
InvalidateRelayCommands();
}
}
}
|