PgUpdateVm.cs 3.37 KB
Newer Older
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
using GalaSoft.MvvmLight.Command;
using Install.Core;
using Install.Core.Common;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;

namespace Install.View
{
    public class PgUpdateVm : INotifyPropertyChanged
    {
        public OPTION Option { get; set; } = OPTION.AUTORUN;

        public event PropertyChangedEventHandler PropertyChanged;

        /// <summary>
        /// 有能新安装的程序
        /// </summary>
        public bool HasNew { get; private set; }

        public Dictionary<string, BitmapSource> Icons { get; private set; }
        public ObservableCollection<ListItem> Items { get; } = new ObservableCollection<ListItem>();




        public RelayCommand NextCmd { get; private set; }
        public RelayCommand NewCmd { get; private set; }

        public RelayCommand DownloadCmd { get; private set; }

        InstallWizard installWizard;
        public InstallWizard InstallWizard => installWizard;

        public PgUpdateVm() 
        {
            NextCmd = new RelayCommand(Next);
            NewCmd = new RelayCommand(New);
            DownloadCmd = new RelayCommand(Download);
        }

        private void Download()
        {
            //打开 下载进度界面
            WdDownload w = new WdDownload();
            w.Init();
            w.ShowDialog();
            
        }

        public void Init() 
        {
潘栩锋's avatar
潘栩锋 committed
60
            installWizard = App.Resolve<InstallWizard>();
61 62 63 64 65 66 67 68

            Icons = installWizard.Icons;

            foreach (var installInfo in installWizard.HasInstalled)
            {
                Items.Add(new ListItem() { Item = installInfo, IsSelected = installInfo.NeedToUpdate });
            }

潘栩锋's avatar
潘栩锋 committed
69 70 71
            if (installWizard.HasInstalled.Count(installInfo => installInfo.NeedToUpdate) > 0)
                Option = OPTION.UPDATE;

72 73 74 75 76 77
            HasNew = installWizard.ToInstall.Count > 0;
        }
        private void New()
        {
            PgInstall p = new PgInstall();
            p.Init();
潘栩锋's avatar
潘栩锋 committed
78
            App.Resolve<NavigationService>().Navigate(p);
79 80 81 82 83 84 85 86 87 88 89 90 91
        }

        private async void Next()
        {
            //检测有没选
            var items = from item in Items where item.IsSelected select item.Item as InstallInfo;
            if (items.Count()==0)
            {
                System.Windows.MessageBox.Show("没有任何一个被选择", "异常", MessageBoxButton.OK, MessageBoxImage.Error);
                return;
            }
            PgProgress p = new PgProgress();
            p.Init();
潘栩锋's avatar
潘栩锋 committed
92
            App.Resolve<NavigationService>().Navigate(p);
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

            switch (Option)
            {
                case OPTION.AUTORUN:
                    {
                        await installWizard.SetAutoRun(items);
                    }
                    break;
                case OPTION.UPDATE:
                    {
                        await installWizard.Update(items);
                    }
                    break;
                case OPTION.REMOVE:
                    {
                        await installWizard.Remove(items);
                    }
                    break;
            }
        }
    }

    public enum OPTION
    {
        AUTORUN,
        UPDATE,
        REMOVE
    }
}