feat: add track change support to session change requests#75
Open
gor3a wants to merge 4 commits into
Open
Conversation
- Rename session_duration_change_requests table to session_change_requests - Add original_track_id and requested_track_id columns - Update RequestDurationChangeDialog to RequestSessionChangeDialog - Add track change UI with checkbox and searchable selector - Enhance validation to prevent same-track requests - Update queries and mutations to support track changes - Improve error handling and user feedback - Update database types and RLS policies
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Deploying agilespace with
|
| Latest commit: |
7b7f711
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://56334959.agilespace.pages.dev |
| Branch Preview URL: | https://feat-session-track-change-re.agilespace.pages.dev |
This file contains hidden or 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
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.
Add Track Change Support to Session Change Requests
Overview
This PR extends the session change request functionality to support track changes in addition to duration changes. Previously, users could only request changes to session start/end times. Now they can also request to move sessions to different tracks within the same space.
Changes Made
Database Schema Updates
session_duration_change_requests→session_change_requeststo reflect broader scopeoriginal_track_id- References the original trackrequested_track_id- References the requested track (nullable)Frontend Component Updates
RequestDurationChangeDialog→RequestSessionChangeDialogAPI and Hook Updates
UI/UX Improvements
Key Features
Track Change Request Flow
Validation Rules
Review Process
Testing Considerations
Migration Notes
Screenshots
[Add screenshots of the new track change UI here]
Breaking Changes
session_duration_change_requeststosession_change_requestsRequestDurationChangeDialogtoRequestSessionChangeDialogRelated Issues