mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-11-03 19:55:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace HaWeb.Settings.XMLCollections;
 | 
						|
using HaWeb.Models;
 | 
						|
using System.Xml.Linq;
 | 
						|
 | 
						|
public class LetterCollection : HaWeb.XMLParser.IXMLCollection {
 | 
						|
    public string Key { get; } = "letters";
 | 
						|
    public string[] xPath { get; } = new string[] { "/opus/data/document/letterText", "/opus/document/letterText" };
 | 
						|
    public Func<XElement, string?> GenerateKey { get; } = GetKey;
 | 
						|
    public Func<XElement, IDictionary<string, string>?>? GenerateDataFields { get; } = null;
 | 
						|
    public Func<IEnumerable<CollectedItem>, IDictionary<string, ILookup<string, CollectedItem>>?>? GroupingsGeneration { get; } = null;
 | 
						|
    public Func<IEnumerable<CollectedItem>, IDictionary<string, IEnumerable<CollectedItem>>?>? SortingsGeneration { get; } = null;
 | 
						|
    public HaWeb.XMLParser.IXMLCollection[]? SubCollections { get; } = null;
 | 
						|
    public bool Searchable { get; } = true;
 | 
						|
 | 
						|
    public static Func<XElement, string?> GetKey { get; } = (elem) => {
 | 
						|
        var index = elem.Attribute("letter");
 | 
						|
        if (index != null && !String.IsNullOrWhiteSpace(index.Value))
 | 
						|
            return index.Value;
 | 
						|
        else return null;
 | 
						|
    };
 | 
						|
} |