2019-11-14 18:08:21 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
2019-11-13 19:26:04 +00:00
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
|
2019-11-14 18:08:21 +00:00
|
|
|
using BFR.DataModels;
|
|
|
|
using BFR.Helpers;
|
|
|
|
|
2019-11-13 19:26:04 +00:00
|
|
|
namespace BFR
|
|
|
|
{
|
2019-11-13 22:01:08 +00:00
|
|
|
public partial class MainWindow : Window
|
2019-11-13 19:26:04 +00:00
|
|
|
{
|
2019-11-14 18:08:21 +00:00
|
|
|
public async Task OpenDirectoryButtonClick() =>
|
|
|
|
OpenDirectory(await new OpenFolderDialog() { Directory = WorkingDirectory }.ShowAsync(this));
|
|
|
|
|
|
|
|
public void OpenDirectory(string directory)
|
|
|
|
{
|
|
|
|
WorkingDirectory = directory;
|
|
|
|
AllFiles.ReplaceAll(Directory.GetFiles(WorkingDirectory).Select(x => new FileModel(x)));
|
|
|
|
Filter();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Filter()
|
|
|
|
{
|
|
|
|
Files.ReplaceAll(AllFiles);
|
|
|
|
|
|
|
|
// TODO: Apply filters
|
|
|
|
|
|
|
|
Preview();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Preview()
|
|
|
|
{
|
|
|
|
// Reset all files to how they currently exist
|
|
|
|
foreach (var file in Files)
|
|
|
|
file.Path = file.OldPath;
|
|
|
|
|
|
|
|
// TODO: Apply operations
|
|
|
|
|
|
|
|
// Refresh the file list to guarantee that changes are displayed. TODO: Find a better way to do this.
|
|
|
|
Files.ReplaceAll(new List<FileModel>(Files));
|
|
|
|
}
|
|
|
|
|
2019-11-13 19:40:30 +00:00
|
|
|
public MainWindow() =>
|
2019-11-13 19:26:04 +00:00
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
{
|
|
|
|
AvaloniaXamlLoader.Load(this);
|
2019-11-13 19:40:30 +00:00
|
|
|
DataContext = this;
|
2019-11-14 18:08:21 +00:00
|
|
|
OpenDirectory(Environment.OSVersion.Platform == PlatformID.Win32NT ? @"C:\Users" : @"\home");
|
2019-11-13 19:26:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|