Hey @linonetwo, this is incredibly cool, I am definitely going to incorporate this into my workflow
A small pile of questions and notes:
Is there any native way to push calendar events to one’s google calendar? I already have a system working for doing it with my current setup, but if you’ve already got something native to this plugin that works well I’ll switch to yours.
Also, have you implemented any sort of recurring event feature? I have toyed around with that in the past, but never have gotten very far – would love to see your approach.
I notice that if I open the sidebar and then close (in the calendar view), there remains a gap on the calendar
Have replicated on an empty as well.
I have implemented an independent css for this sidebar, because it wasn’t playing nicely with how I’ve got mine configured:
.event-calendar-sidebar {
width: 25vw !important;
max-width: 25vw !important;
min-width: 200px;
right: 0;
position: relative;
display: none;
height: calc(100vh - 50px); /* Adjust the 50px based on your header height */
overflow-y: auto; /* Enable vertical scrolling */
overflow-x: hidden; /* Hide horizontal scrollbar */
}
.tc-sidebar-scrollable:not(.tc-sidebar-hidden) .event-calendar-sidebar {
display: block;
}
.tc-sidebar-scrollable.tc-sidebar-hidden .event-calendar-sidebar {
overflow: hidden !important;
}
.event-calendar-sidebar::-webkit-scrollbar {
width: 6px;
}
.event-calendar-sidebar::-webkit-scrollbar-track {
background: #f1f1f1;
}
.event-calendar-sidebar::-webkit-scrollbar-thumb {
background: #888;
border-radius: 3px;
}
The resulting sidebar scrolls independently of the calendar, in case you have long todo lists.
What is the relationship between the dragged item and the calendar supposed to be? I am finding that when I make a draggable list of items I can move them into the calendar, but the resulting calendar blocks don’t reflect anything about the tiddler the dragged item links to – am I doing something wrong?