mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
code_style: move SourceGit.ViewModels.RepositorySettings
to SourceGit.Models.RepositorySettings
This commit is contained in:
parent
183cb8a658
commit
fa9990c38c
3 changed files with 96 additions and 93 deletions
|
@ -62,7 +62,7 @@ namespace SourceGit
|
||||||
[JsonSerializable(typeof(Models.JetBrainsState))]
|
[JsonSerializable(typeof(Models.JetBrainsState))]
|
||||||
[JsonSerializable(typeof(Models.ThemeOverrides))]
|
[JsonSerializable(typeof(Models.ThemeOverrides))]
|
||||||
[JsonSerializable(typeof(Models.Version))]
|
[JsonSerializable(typeof(Models.Version))]
|
||||||
|
[JsonSerializable(typeof(Models.RepositorySettings))]
|
||||||
[JsonSerializable(typeof(ViewModels.Preference))]
|
[JsonSerializable(typeof(ViewModels.Preference))]
|
||||||
[JsonSerializable(typeof(ViewModels.RepositorySettings))]
|
|
||||||
internal partial class JsonCodeGen : JsonSerializerContext { }
|
internal partial class JsonCodeGen : JsonSerializerContext { }
|
||||||
}
|
}
|
||||||
|
|
91
src/Models/RepositorySettings.cs
Normal file
91
src/Models/RepositorySettings.cs
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
using Avalonia.Collections;
|
||||||
|
|
||||||
|
namespace SourceGit.Models
|
||||||
|
{
|
||||||
|
public class RepositorySettings
|
||||||
|
{
|
||||||
|
public DealWithLocalChanges DealWithLocalChangesOnCheckoutBranch
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = DealWithLocalChanges.DoNothing;
|
||||||
|
|
||||||
|
public bool FetchWithoutTags
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = false;
|
||||||
|
|
||||||
|
public DealWithLocalChanges DealWithLocalChangesOnPull
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = DealWithLocalChanges.DoNothing;
|
||||||
|
|
||||||
|
public bool PreferRebaseInsteadOfMerge
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = true;
|
||||||
|
|
||||||
|
public bool FetchWithoutTagsOnPull
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = false;
|
||||||
|
|
||||||
|
public bool PushAllTags
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = false;
|
||||||
|
|
||||||
|
public DealWithLocalChanges DealWithLocalChangesOnCreateBranch
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = DealWithLocalChanges.DoNothing;
|
||||||
|
|
||||||
|
public bool CheckoutBranchOnCreateBranch
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = true;
|
||||||
|
|
||||||
|
public bool AutoStageBeforeCommit
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = false;
|
||||||
|
|
||||||
|
public AvaloniaList<string> Filters
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = new AvaloniaList<string>();
|
||||||
|
|
||||||
|
public AvaloniaList<string> CommitMessages
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
} = new AvaloniaList<string>();
|
||||||
|
|
||||||
|
public void PushCommitMessage(string message)
|
||||||
|
{
|
||||||
|
var existIdx = CommitMessages.IndexOf(message);
|
||||||
|
if (existIdx == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (existIdx > 0)
|
||||||
|
{
|
||||||
|
CommitMessages.Move(existIdx, 0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CommitMessages.Count > 9)
|
||||||
|
CommitMessages.RemoveRange(9, CommitMessages.Count - 9);
|
||||||
|
|
||||||
|
CommitMessages.Insert(0, message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,7 +4,6 @@ using System.IO;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
using Avalonia.Collections;
|
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Media;
|
using Avalonia.Media;
|
||||||
using Avalonia.Media.Imaging;
|
using Avalonia.Media.Imaging;
|
||||||
|
@ -14,93 +13,6 @@ using CommunityToolkit.Mvvm.ComponentModel;
|
||||||
|
|
||||||
namespace SourceGit.ViewModels
|
namespace SourceGit.ViewModels
|
||||||
{
|
{
|
||||||
public class RepositorySettings
|
|
||||||
{
|
|
||||||
public Models.DealWithLocalChanges DealWithLocalChangesOnCheckoutBranch
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = Models.DealWithLocalChanges.DoNothing;
|
|
||||||
|
|
||||||
public bool FetchWithoutTags
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = false;
|
|
||||||
|
|
||||||
public Models.DealWithLocalChanges DealWithLocalChangesOnPull
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = Models.DealWithLocalChanges.DoNothing;
|
|
||||||
|
|
||||||
public bool PreferRebaseInsteadOfMerge
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = true;
|
|
||||||
|
|
||||||
public bool FetchWithoutTagsOnPull
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = false;
|
|
||||||
|
|
||||||
public bool PushAllTags
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = false;
|
|
||||||
|
|
||||||
public Models.DealWithLocalChanges DealWithLocalChangesOnCreateBranch
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = Models.DealWithLocalChanges.DoNothing;
|
|
||||||
|
|
||||||
public bool CheckoutBranchOnCreateBranch
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = true;
|
|
||||||
|
|
||||||
public bool AutoStageBeforeCommit
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = false;
|
|
||||||
|
|
||||||
public AvaloniaList<string> Filters
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = new AvaloniaList<string>();
|
|
||||||
|
|
||||||
public AvaloniaList<string> CommitMessages
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
} = new AvaloniaList<string>();
|
|
||||||
|
|
||||||
public void PushCommitMessage(string message)
|
|
||||||
{
|
|
||||||
var existIdx = CommitMessages.IndexOf(message);
|
|
||||||
if (existIdx == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (existIdx > 0)
|
|
||||||
{
|
|
||||||
CommitMessages.Move(existIdx, 0);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (CommitMessages.Count > 9)
|
|
||||||
CommitMessages.RemoveRange(9, CommitMessages.Count - 9);
|
|
||||||
|
|
||||||
CommitMessages.Insert(0, message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class Repository : ObservableObject, Models.IRepository
|
public class Repository : ObservableObject, Models.IRepository
|
||||||
{
|
{
|
||||||
public string FullPath
|
public string FullPath
|
||||||
|
@ -126,7 +38,7 @@ namespace SourceGit.ViewModels
|
||||||
set => SetProperty(ref _gitDir, value);
|
set => SetProperty(ref _gitDir, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public RepositorySettings Settings
|
public Models.RepositorySettings Settings
|
||||||
{
|
{
|
||||||
get => _settings;
|
get => _settings;
|
||||||
}
|
}
|
||||||
|
@ -341,12 +253,12 @@ namespace SourceGit.ViewModels
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
_settings = new RepositorySettings();
|
_settings = new Models.RepositorySettings();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_settings = new RepositorySettings();
|
_settings = new Models.RepositorySettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
_watcher = new Models.Watcher(this);
|
_watcher = new Models.Watcher(this);
|
||||||
|
@ -1985,7 +1897,7 @@ namespace SourceGit.ViewModels
|
||||||
|
|
||||||
private string _fullpath = string.Empty;
|
private string _fullpath = string.Empty;
|
||||||
private string _gitDir = string.Empty;
|
private string _gitDir = string.Empty;
|
||||||
private RepositorySettings _settings = null;
|
private Models.RepositorySettings _settings = null;
|
||||||
|
|
||||||
private Models.Watcher _watcher = null;
|
private Models.Watcher _watcher = null;
|
||||||
private Histories _histories = null;
|
private Histories _histories = null;
|
||||||
|
|
Loading…
Reference in a new issue