Consistent sorting of output

This commit is contained in:
Christoph Hagen 2025-01-27 07:56:36 +01:00
parent 09b1f48aea
commit 82c40cc080
6 changed files with 23 additions and 6 deletions

View File

@ -32,7 +32,7 @@ final class PostListPageGenerator {
// Sort by newest first, filter drafts
let posts = posts
.filter { !$0.isDraft }
.sorted(ascending: false) { $0.startDate }
.sorted { $0.startDate > $1.startDate && $0.id < $1.id }
let totalCount = posts.count
guard totalCount > 0 else {

View File

@ -2,6 +2,8 @@ import Foundation
protocol DateItem {
var id: String { get }
var startDate: Date { get }
var hasEndDate: Bool { get }
@ -9,6 +11,18 @@ protocol DateItem {
var potentialEndDate: Date { get }
}
extension Sequence where Element: DateItem {
func sortedByStartDateAndId() -> [Element] {
sorted { (lhs, rhs) -> Bool in
if lhs.startDate == rhs.startDate {
return lhs.id < rhs.id
}
return lhs.startDate > rhs.startDate
}
}
}
extension DateItem {
var endDate: Date? {

View File

@ -24,8 +24,8 @@ final class LoadingContext {
func results() -> LoadingResult {
.init(
settings: settings ?? .default,
posts: posts.values.sorted(ascending: false) { $0.startDate },
pages: pages.values.sorted(ascending: false) { $0.startDate },
posts: posts.values.sortedByStartDateAndId(),
pages: pages.values.sortedByStartDateAndId(),
tags: tags.values.sorted(),
files: files.values.sorted { $0.id },
tagOverview: tagOverview,

View File

@ -13,14 +13,17 @@ struct AudioPlayerScript: HtmlProducer {
let items: [AmplitudeSong]
private let encoder = JSONEncoder()
init(items: [AmplitudeSong]) {
self.items = items
encoder.outputFormatting = [.prettyPrinted, .sortedKeys]
}
func populate(_ result: inout String) {
result += "<script>\nwindow.onload = () => { "
result += "Amplitude.init({ songs: "
let songData = try! JSONEncoder().encode(items)
let songData = try! encoder.encode(items)
result += String(data: songData, encoding: .utf8)!
result += "}); };\n" // Close Amplitude.init and window.onload
result += "function playEntry(index) { Amplitude.playSongAtIndex(index) };"

View File

@ -61,7 +61,7 @@ struct PageHeader: HtmlProducer {
return ""
}
var result = "<div style='display:none'>"
for icon in icons {
for icon in icons.sorted(using: { $0.id} ) {
result += icon.icon.svgString
}
result += "</div>"

View File

@ -66,7 +66,7 @@ struct PostListView: View {
}
private var filteredAndSortedPosts: [Post] {
filteredPosts.sorted(ascending: false) { $0.startDate }
filteredPosts.sortedByStartDateAndId()
}
var body: some View {