Use case or problem
I would like a heatmap view in bases, similar to what is shown in this plugin GitHub - mokkiebear/heatmap-tracker: A customizable heatmap tracker plugin for Obsidian to visualize daily data trends with intuitive navigation and flexible settings.
I have event notes with metadata, and a date-string in the title of the event notes, and it would be very convenient to be able to have an overview of the events that match a query in bases, and have the tiles in the heatmap be clickable and bring me to the note (or hover over them to obtain a preview). This is in a way a simpler version of the request for a calendar view in Base: Calendar view
Proposed solution
Integrate the functionality and view from the current heatmap plugin with the bases view.
Current workaround (optional)
use GitHub - mokkiebear/heatmap-tracker: A customizable heatmap tracker plugin for Obsidian to visualize daily data trends with intuitive navigation and flexible settings. and the code I use to make an embed looks like:
for(let page of page_selection){
calendarData.entries.push({
date: String(page.file.day).slice(0,10),
content: await dv.span(`[[${page.file.name}| ]]`)
})
}