Added marginal search. Some refactoring

This commit is contained in:
Simon Martens
2022-11-11 02:15:45 +01:00
parent 3327155eb5
commit 8c26cb44d0
24 changed files with 361 additions and 186 deletions

View File

@@ -8,27 +8,37 @@ public enum SearchResultType {
InvalidSearchTerm
}
public enum SearchType {
Letters,
Register,
Science
}
public class SucheViewModel {
public List<(int Year, List<BriefeMetaViewModel> LetterList)>? Letters { get; private set; }
public List<CommentModel>? Comments { get; private set; }
public Dictionary<string, List<(Marginal, string)>>? Marginals { get; private set; }
public int Count { get; private set; }
public int ActivePage { get; private set; }
public List<string>? AvailablePages { get; private set; }
public bool? IncludeComments { get; private set; }
public string ActiveSearch { get; private set; }
public List<string>? AvailablePages { get; private set; }
public Dictionary<string, List<SearchResult>>? SearchResults { get; private set; }
public SearchResultType SearchResultType { get; private set; }
public string SearchType { get; private set; }
public SearchType SearchType { get; private set; }
public SucheViewModel(
string searchType,
SearchType searchType,
SearchResultType searchResultType,
bool? includeComments,
int activePage,
List<string>? availablePages,
string activeSearch,
Dictionary<string, List<SearchResult>>? searchResults,
List<(int Year, List<BriefeMetaViewModel> LetterList)>? letters,
List<CommentModel>? comments
List<CommentModel>? comments,
Dictionary<string, List<(Marginal, string)>>? marginals
) {
Letters = letters;
if (letters != null)
@@ -43,5 +53,7 @@ public class SucheViewModel {
ActiveSearch = activeSearch;
SearchResults = searchResults;
Comments = comments;
Marginals = marginals;
IncludeComments = includeComments;
}
}

View File

@@ -70,7 +70,7 @@ public class XMLRootDocument {
}
private string _removeInvalidChars(string? s) {
if (String.IsNullOrWhiteSpace(s)) return "";
if (String.IsNullOrWhiteSpace(s)) return string.Empty;
foreach (var c in Path.GetInvalidFileNameChars()) {
s = s.Replace(c, '-');
}