Implement time-based week view with scrollable 24-hour layout

- Add comprehensive time grid structure with hourly and half-hourly divisions
- Implement scrollable week view with sticky header and time labels
- Create 25 time labels (12 AM through 11 PM plus boundary) with proper formatting
- Add 25 matching time slot backgrounds for visual alignment
- Style time labels with appropriate sizing and boundary indicators
- Position events absolutely over time grid (basic positioning for now)
- Set proper container heights and scrollable content area

Note: Time slot alignment still needs refinement for complete 24-hour coverage

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Connor Johnstone
2025-08-29 10:27:24 -04:00
parent 9ab6377d16
commit dacc18fe5d
2 changed files with 322 additions and 67 deletions

View File

@@ -462,7 +462,189 @@ body {
background: white;
}
/* Week Grid */
/* Week View Container */
.week-view-container {
display: flex;
flex-direction: column;
height: 100%;
background: white;
}
/* Week Header */
.week-header {
display: grid;
grid-template-columns: 80px repeat(7, 1fr);
background: #f8f9fa;
border-bottom: 2px solid #e9ecef;
position: sticky;
top: 0;
z-index: 10;
}
.time-gutter {
background: #f8f9fa;
border-right: 1px solid #e9ecef;
}
.week-day-header {
padding: 1rem;
text-align: center;
border-right: 1px solid #e9ecef;
background: #f8f9fa;
}
.week-day-header.today {
background: #e3f2fd;
color: #1976d2;
}
.weekday-name {
font-size: 0.9rem;
font-weight: 600;
color: #666;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 0.25rem;
}
.week-day-header .day-number {
font-size: 1.5rem;
font-weight: 700;
}
.week-day-header.today .weekday-name {
color: #1976d2;
}
/* Week Content */
.week-content {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
}
.time-grid {
display: grid;
grid-template-columns: 80px 1fr;
min-height: 100%;
}
/* Time Labels */
.time-labels {
background: #f8f9fa;
border-right: 1px solid #e9ecef;
position: sticky;
left: 0;
z-index: 5;
}
.time-label {
height: 60px;
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 0.5rem;
font-size: 0.75rem;
color: #666;
border-bottom: 1px solid #f0f0f0;
font-weight: 500;
}
.time-label.final-boundary {
height: 60px; /* Keep same height but this marks the end boundary */
border-bottom: 2px solid #e9ecef; /* Stronger border to show day end */
color: #999; /* Lighter color to indicate it's the boundary */
font-size: 0.7rem;
}
/* Week Days Grid */
.week-days-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
}
.week-day-column {
position: relative;
border-right: 1px solid #e9ecef;
min-height: 1500px; /* 25 time labels × 60px = 1500px total */
}
.week-day-column:last-child {
border-right: none;
}
.week-day-column.today {
background: #fafffe;
}
/* Time Slots */
.time-slot {
height: 60px;
border-bottom: 1px solid #f0f0f0;
position: relative;
}
.time-slot-half {
height: 30px;
border-bottom: 1px dotted #f5f5f5;
}
.time-slot-half:last-child {
border-bottom: none;
}
.time-slot.boundary-slot {
height: 60px; /* Match the final time label height */
border-bottom: 2px solid #e9ecef; /* Strong border to match final boundary */
background: rgba(0,0,0,0.02); /* Slightly different background to indicate boundary */
}
/* Events Container */
.events-container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}
/* Week Events */
.week-event {
position: absolute;
left: 4px;
right: 4px;
min-height: 20px;
background: #3B82F6;
color: white;
padding: 2px 6px;
border-radius: 4px;
font-size: 0.75rem;
line-height: 1.3;
cursor: pointer;
pointer-events: auto;
z-index: 3;
border: 1px solid rgba(255,255,255,0.2);
text-shadow: 0 1px 1px rgba(0,0,0,0.3);
font-weight: 500;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.week-event:hover {
filter: brightness(1.1);
z-index: 4;
box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.week-event.refreshing {
animation: pulse 1.5s ease-in-out infinite alternate;
border-color: #ff9800;
}
/* Legacy Week Grid (for backward compatibility) */
.week-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);