wabbajack/Wabbajack.App.Wpf/View Models/ModeSelectionVM.cs

44 lines
1.4 KiB
C#
Raw Normal View History

2021-12-26 21:56:44 +00:00
using ReactiveUI;
using ReactiveUI.Fody.Helpers;
using System;
using System.IO;
using System.Linq;
using System.Reactive;
using System.Reactive.Linq;
using System.Windows.Input;
using Wabbajack.Common;
2021-12-30 00:15:37 +00:00
using Wabbajack;
using Wabbajack.Messages;
2021-12-27 05:18:52 +00:00
using Wabbajack.Paths.IO;
2021-12-26 21:56:44 +00:00
namespace Wabbajack
{
public class ModeSelectionVM : ViewModel
{
private MainWindowVM _mainVM;
public ICommand BrowseCommand { get; }
public ICommand InstallCommand { get; }
public ICommand CompileCommand { get; }
public ReactiveCommand<Unit, Unit> UpdateCommand { get; }
public ModeSelectionVM()
2021-12-26 21:56:44 +00:00
{
InstallCommand = ReactiveCommand.Create(
execute: () =>
{
/* TODO
2021-12-26 21:56:44 +00:00
var path = mainVM.Settings.Installer.LastInstalledListLocation;
2021-12-27 05:18:52 +00:00
if (path == default || !path.FileExists())
2021-12-26 21:56:44 +00:00
{
2021-12-27 05:18:52 +00:00
path = UIUtils.OpenFileDialog($"*{Ext.Wabbajack}|*{Ext.Wabbajack}");
2021-12-26 21:56:44 +00:00
}
_mainVM.OpenInstaller(path);
*/
2021-12-26 21:56:44 +00:00
});
CompileCommand = ReactiveCommand.Create(() => NavigateToGlobal.Send(NavigateToGlobal.ScreenType.Compiler));
BrowseCommand = ReactiveCommand.Create(() => NavigateToGlobal.Send(NavigateToGlobal.ScreenType.ModListGallery));
2021-12-26 21:56:44 +00:00
}
}
}