enhancementgood first issuehacktoberfesthelp wanted
Repository metrics
- Stars
- (0 個のスター)
- PR merge metrics
- (PR metrics pending)
説明
🧾 Show Events for Selected Date in Calendar
📝 Description
Currently, clicking on a date in the EventKonnect calendar does not display the events scheduled for that specific date.
We want to implement functionality so that whenever a user clicks on a date in the calendar, all events associated with that date are displayed in the event tab (or event list section).
✅ Acceptance Criteria
- When a user clicks on a specific date in the calendar, the event tab updates automatically.
- Only events corresponding to the selected date should be shown.
- If no events exist for that date, show a message like: “No events scheduled for this date.”
- Ensure the UI updates without a full page refresh.
🧠 Possible Implementation Approach
- Add an
onDateClickhandler to the calendar component. - Filter the events array based on the selected date.
- Update the state to display filtered events in the event tab component.
- Optionally highlight the selected date in the calendar for better UX.
🧩 Tech Stack Reference
React + Calendar Component (e.g., react-calendar or fullcalendar-react)