mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reactive.Linq;
|
|
using System.Windows.Input;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Lib;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class ModeSelectionVM : ViewModel
|
|
{
|
|
private MainWindowVM _mainVM;
|
|
public ICommand BrowseCommand { get; }
|
|
public ICommand InstallCommand { get; }
|
|
public ICommand CompileCommand { get; }
|
|
|
|
public ModeSelectionVM(MainWindowVM mainVM)
|
|
{
|
|
_mainVM = mainVM;
|
|
|
|
InstallCommand = ReactiveCommand.Create(
|
|
execute: () =>
|
|
{
|
|
var path = mainVM.Settings.Installer.LastInstalledListLocation;
|
|
if (string.IsNullOrWhiteSpace(path)
|
|
|| !File.Exists(path))
|
|
{
|
|
path = UIUtils.OpenFileDialog($"*{ExtensionManager.Extension}|*{ExtensionManager.Extension}");
|
|
}
|
|
_mainVM.OpenInstaller(path);
|
|
});
|
|
|
|
CompileCommand = ReactiveCommand.Create(() => mainVM.NavigateTo(mainVM.Compiler.Value));
|
|
BrowseCommand = ReactiveCommand.Create(() => mainVM.NavigateTo(mainVM.Gallery.Value));
|
|
}
|
|
}
|
|
}
|