aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SharedUI/Components/SelectedObjectCollection.cs
blob: 8aa087ed32d601e5bc0608fa5b01787ccabfe5cb (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
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.SharedUI.Components
{
    public class SelectedObjectCollection<T> : ObservableCollection<SelectedObject<T>>
    {
        private Func<T, T, bool> _compareFunc;

        public event EventHandler SelectionChanged;
        public ObservableCollection<T> Source { get; set; }
        public ObservableCollection<T> SynchedSource { get; set; }

        public SelectedObjectCollection(ObservableCollection<T> source, ObservableCollection<T> synchedSource, Func<T, T, bool> compareFunc)
        {
            _compareFunc = compareFunc;

            SynchedSource = synchedSource;
            Source = source;

            foreach (var item in source)
            {
                var selectedItem = new SelectedObject<T>(item, _compareFunc == null ? synchedSource.Contains(item) : synchedSource.ToList().Exists(x => _compareFunc(x, item)));
                this.Add(selectedItem);
                selectedItem.IsSelectedChanged += SelectedItem_IsSelectedChanged;
            }
        }

        public SelectedObjectCollection(ObservableCollection<T> source, ObservableCollection<T> synchedSource) : this(source, synchedSource, null)
        {

        }

        private void SelectedItem_IsSelectedChanged(object sender, EventArgs e)
        {
            SelectedObject<T> item = sender as SelectedObject<T>;

            if (item.IsSelected)
            {
                if (_compareFunc == null)
                {
                    if (!SynchedSource.Contains(item.Data))
                    {
                        SynchedSource.Add(item.Data);
                    }
                }
                else
                {
                    if (!SynchedSource.ToList().Exists(x => _compareFunc(x, item.Data)))
                    {
                        SynchedSource.Add(item.Data);
                    }
                }
            }
            else
            {
                if (_compareFunc == null)
                {
                    SynchedSource.Remove(item.Data);
                }
                else
                {
                    foreach (var s in SynchedSource.ToList())
                    {
                        if (_compareFunc(s, item.Data))
                        {
                            SynchedSource.Remove(s);
                        }
                    }
                }
            }

            SelectionChanged?.Invoke(this, new EventArgs());
        }
    }
}
{ SaveCommand = new RelayCommand(Save, () => IsFree); } public async Task Init(String siteGuid, INotificationProvider notification, IAuthenticationProvider authentication, IActionLogManager actionLogManager, bool isNew, string newSiteName = null) { _notification = notification; _authentication = authentication; _actionLogManager = actionLogManager; _db = ObservablesContext.CreateDefault(); Organizations = await _db.Organizations.ToListAsync(); if (isNew) { Site = new Site(); Site.Name = newSiteName; Site.Description = "My site description"; _db.Sites.Add(Site); _isNew = true; } else { _isNew = false; Site = await new SiteBuilder(_db).Set(siteGuid) .WithSiteCatalogs() .WithCatalogs() .WithSiteRmls() .WithRmls() .WithOrganization() .BuildAsync(); } Machines = await _db.Machines.Where(x => x.SiteGuid == Site.Guid).Include(x => x.Organization).ToListAsync(); var rmls = await _db.Rmls.OrderBy(x => x.Name).ToListAsync(); var catalogs = await _db.ColorCatalogs.OrderBy(x => x.Name).ToListAsync(); Rmls = new SelectedObjectCollection<Rml>(rmls.ToObservableCollection(), Site.SitesRmls.Select(x => x.Rml).ToObservableCollection()); Catalogs = new SelectedObjectCollection<ColorCatalog>(catalogs.ToObservableCollection(), Site.SitesCatalogs.Select(x => x.ColorCatalog).ToObservableCollection()); _siteBeforeSave = SiteDTO.FromObservable(Site); } private async void Save() { try { if (!Site.Validate(_db)) { _notification.ShowError(String.Join("\n", Site.ValidationErrors)); return; } IsFree = false; using (_notification.PushTaskItem("Saving site details...")) { //Check if site organization has changed and there are no machines that belongs to this site but different organization. if (_db.Machines.Any(x => x.SiteGuid == Site.Guid && x.OrganizationGuid != Site.OrganizationGuid)) { throw new InvalidOperationException($"One or more machines belongs to this site but not to '{Site.Organization.Name}' organization."); } //Remove site rmls. Site.SitesRmls.ToList().Where(x => !Rmls.SynchedSource.ToList().Exists(y => y.Guid == x.RmlGuid)).ToList().ForEach(x => _db.SitesRmls.Remove(x)); Site.SitesCatalogs.ToList().Where(x => !Catalogs.SynchedSource.ToList().Exists(y => y.Guid == x.ColorCatalogGuid)).ToList().ForEach(x => _db.SitesCatalogs.Remove(x)); foreach (var selectedRml in Rmls.SynchedSource.Where(x => !Site.SitesRmls.ToList().Exists(y => y.RmlGuid == x.Guid))) { _db.SitesRmls.Add(new SitesRml() { SiteGuid = Site.Guid, RmlGuid = selectedRml.Guid }); } foreach (var selectedCatalog in Catalogs.SynchedSource.Where(x => !Site.SitesCatalogs.ToList().Exists(y => y.ColorCatalogGuid == x.Guid))) { _db.SitesCatalogs.Add(new SitesCatalog() { SiteGuid = Site.Guid, ColorCatalogGuid = selectedCatalog.Guid }); } await _db.SaveChangesAsync(); if (_isNew) { _actionLogManager.InsertLog(BL.Enumerations.ActionLogType.SiteCreated, _authentication.CurrentUser, Site.Name, Site, "Site created using Machine Studio."); } else { SiteDTO siteAfter = SiteDTO.FromObservable(Site); _actionLogManager.InsertLog(BL.Enumerations.ActionLogType.SiteSaved, _authentication.CurrentUser, _siteBeforeSave.Name, _siteBeforeSave, siteAfter, "Site saved using Machine Studio."); _siteBeforeSave = siteAfter; } } _db.Dispose(); Saved?.Invoke(this, new EventArgs()); } catch (Exception ex) { LogManager.Log(ex, "Error saving site details."); _notification.ShowError($"Error saving site details.\n{ex.FlattenMessage()}"); } finally { IsFree = true; } } } }