aboutsummaryrefslogtreecommitdiff
path: root/src/components/InfoModal.vue
AgeCommit message (Collapse)Author
2023-01-21Adjust frontend coding styleTerry Truong
2023-01-20Relayout events upon category changesTerry Truong
2023-01-20Adjust info-modal display for picked eventsTerry Truong
2023-01-14Allow showing events without imagesTerry Truong
Add setting for showing such events Fix searches not always avoiding filtered categories
2023-01-14Don't combine start/end times in info modal displayTerry Truong
Combining them causes ambiguity between starts with imprecision and starts with ends.
2023-01-14Extend info modal date displayTerry Truong
Show combined descriptions for certain (imprecise) starts and ends. Conditionally display start and end separately.
2023-01-14Improve date display in info modalTerry Truong
Make desc field of EventInfo optional Don't require desc in type=info result Fix image not showing in info modal
2023-01-05Add partially-complete search modalTerry Truong
For now, use placeholder code for jumping to a search result. Add db index for case-insensitive event title searching. Make type=info requests accept title instead of ID (for looking up a searched-for title). Make EventInfo contain an Event field (for showing info in search suggestions). Add titleToEvent map in App, for use by SearchModal to look up searched-for titles. Add keyboard shortcuts to open/close search and info modals.
2023-01-04Add event info modalTerry Truong
Add InfoModal.vue, SCollapsible.vue, and icons. Update Timeline.vue, App.vue, lib.ts, and store.ts to display modal. For testing, send/use dummy EventInfo from server (still waiting on image downloads).