-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Her 74 availability and booking full calendar #64
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ng-team-3 into HER-74-Availability-and-Booking-FullCalendar
…abilities weekly, added calendar to speaker profile
…ng-team-3 into HER-74-Availability-and-Booking-FullCalendar
…ng-team-3 into HER-74-Availability-and-Booking-FullCalendar
…//github.com/Code-the-Dream-School/herring-team-3 into HER-74-Availability-and-Booking-FullCalendar
dewi-anggraini
approved these changes
Jan 19, 2025
olesiamironenko
approved these changes
Jan 19, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
HER- 74: Full calendar and Booking
Issue
https://raquelanaroman.atlassian.net/browse/HER-74
Description
As a teacher user, I want to provide specific details when booking so that the speaker has all the necessary information for my booking. As a teacher user, I want to view speaker availabilities so that I can choose the best time for my booking. As a speaker, I want to be able to create availabilities so that a teacher user can view them. Allow bookings to be modified within availability time frame by teachers. Allow speakers to modify booking status. Display a confirmation with booking details upon successful booking and remove the availability from the calendar.
Acceptance Criteria
The booking modal should appear when a teacher selects a time slot.
The modal should include pre-populated fields for name, speaker, date, organization, and address.
The modal should include fields for start time, end time, and a drop-down box for speaker events.
All required fields should have validation, and error messages should be displayed for any missing or incorrect information.
The calendar should display all one-time and recurring availabilities for each speaker.
Users should be able to hover over specific time slots to view more details.
A confirmation modal should appear upon successful booking submission, listing the booking details and notifying the user of emails sent.
The speaker's availability should be updated on FullCalendar, removing the booked date and time slot.
Implementation
Fetch availability data from the Availability and RecurringAvailability models, ensuring that both one-time and recurring availabilities are included for the specified month and year.
Ensure the job to create recurring availabilities for the next month is triggered when the user navigates to the next month.
Integrate FullCalendar into the application; use the fetched availability data to populate the calendar.
Distinguish between one time and recurring availabilities.
Allow users to view details about each availability by hovering over time slots.
Write tests to ensure that the availability data is correctly fetched and displayed on the calendar.
Changes
Review Checklist