Fixing Daily Notes Sorting
The Problem
The daily notes in our digital garden weren't displaying in the correct order on the live site. Initially, we tried several approaches to fix this:
-
Frontmatter Dates: We attempted to use the
created
dates in the frontmatter, but this wasn't reliable as not all notes had these dates set. -
File System Dates: We tried using the file system's modification dates, but this proved inconsistent across different environments.
-
Full Path Sorting: Our first attempt at using
fileSlug
for sorting compared the entire path (e.g., "Daily Notes/2025-03-20"), which didn't work as expected because it was comparing the full path strings rather than just the dates.
The Solution
The breakthrough came when we realized we needed to extract just the date portion from the fileSlug. Here's what we did:
-
Path Check:
We improved the check for daily notes by removing the leading slash from the path check:
const isADailyNote = a.filePathStem.includes('Daily Notes/');
-
Date Extraction: We modified the sorting to extract just the date part from the fileSlug:
const dateA = a.fileSlug.split('/').pop();
const dateB = b.fileSlug.split('/').pop();
return dateB.localeCompare(dateA);
This solution works because:
- It only sorts notes within the Daily Notes directory
- It extracts just the YYYY-MM-DD portion of the filename
- It uses
localeCompare
to properly sort the dates in reverse order (newest first) - It's consistent across all environments since it relies on the filename format
Key Learnings
- Sometimes the simplest solution is the best - using the filename format we already had in place
- When sorting, it's important to compare exactly what we want to sort by (just the dates) rather than the full context
- The
fileSlug
property in Eleventy can be manipulated to extract specific parts of the path
Result
The daily notes are now properly sorted by date, with the newest notes appearing first, making it easier to navigate through the chronological content.