feat(photos): add Photos timeline view with lightbox and infinite scroll

Backend: new GET /api/photos endpoint with cursor-based pagination that
queries image/video files sorted by EXIF captured_at (falling back to
created_at), joining file_metadata for sort dates.

Frontend: dense photo grid grouped by day with lazy-loaded thumbnails,
IntersectionObserver infinite scroll, multi-select with batch
download/delete, and a full-screen lightbox with prev/next navigation,
EXIF metadata display, and download/favorite/delete toolbar.

Includes navigation wiring, CSS (with dark theme), and i18n translations
for all 9 locales.
This commit is contained in:
Jared Wolff
2026-03-05 13:40:02 -05:00
parent 69fe3a8b07
commit 53e4f5afe6
23 changed files with 1318 additions and 3 deletions
+258
View File
@@ -0,0 +1,258 @@
/* Photos timeline view */
.photos-container {
padding: 0;
display: none;
}
.photos-container.active {
display: block;
}
/* Day group header */
.photos-day-header {
position: sticky;
top: 0;
z-index: 10;
padding: 12px 4px 8px;
font-size: 15px;
font-weight: 600;
color: #2d3748;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.photos-day-header .photos-day-count {
font-weight: 400;
color: #94a3b8;
font-size: 13px;
margin-left: 8px;
}
/* Photo grid */
.photos-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 4px;
padding: 0 4px 4px;
}
/* Individual photo tile */
.photo-tile {
position: relative;
aspect-ratio: 1;
overflow: hidden;
border-radius: 4px;
cursor: pointer;
background: #e2e8f0;
}
.photo-tile img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.2s ease;
}
.photo-tile:hover img {
transform: scale(1.05);
}
/* Selection checkbox */
.photo-tile .photo-check {
position: absolute;
top: 6px;
left: 6px;
width: 22px;
height: 22px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.8);
background: rgba(0, 0, 0, 0.25);
opacity: 0;
transition: opacity 0.15s ease;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 11px;
z-index: 2;
}
.photo-tile:hover .photo-check,
.photo-tile.selected .photo-check {
opacity: 1;
}
.photo-tile.selected .photo-check {
background: #ff5e3a;
border-color: #ff5e3a;
}
.photo-tile.selected {
outline: 3px solid #ff5e3a;
outline-offset: -3px;
}
.photo-tile.selected img {
transform: scale(0.92);
}
/* Video badge */
.photo-tile .video-badge {
position: absolute;
bottom: 6px;
right: 6px;
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.55);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 12px;
z-index: 2;
}
/* Duration badge for videos */
.photo-tile .video-duration {
position: absolute;
bottom: 6px;
left: 6px;
font-size: 11px;
color: #fff;
background: rgba(0, 0, 0, 0.55);
padding: 2px 6px;
border-radius: 4px;
z-index: 2;
}
/* Empty state */
.photos-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 20px;
text-align: center;
color: #94a3b8;
}
.photos-empty i {
font-size: 56px;
margin-bottom: 16px;
color: #cbd5e1;
}
.photos-empty p {
margin: 4px 0;
font-size: 15px;
}
.photos-empty .photos-empty-title {
font-size: 18px;
font-weight: 600;
color: #64748b;
}
/* Infinite scroll sentinel */
.photos-sentinel {
height: 1px;
width: 100%;
}
/* Loading spinner */
.photos-loading {
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
color: #94a3b8;
font-size: 14px;
gap: 8px;
}
.photos-loading i {
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Selection bar */
.photos-selection-bar {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: #1e293b;
color: #fff;
padding: 10px 20px;
border-radius: 12px;
display: flex;
align-items: center;
gap: 16px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
z-index: 1000;
font-size: 14px;
}
.photos-selection-bar button {
background: none;
border: none;
color: #fff;
cursor: pointer;
padding: 6px 10px;
border-radius: 6px;
font-size: 14px;
transition: background 0.15s;
}
.photos-selection-bar button:hover {
background: rgba(255, 255, 255, 0.15);
}
.photos-selection-bar .selection-count {
font-weight: 600;
}
/* Responsive */
@media (max-width: 768px) {
.photos-grid {
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
gap: 2px;
padding: 0 2px 2px;
}
.photo-tile .photo-check {
opacity: 1;
}
.photos-day-header {
font-size: 14px;
padding: 10px 2px 6px;
}
}
/* Dark theme */
[data-theme="dark"] .photos-day-header {
color: #e2e8f0;
background: rgba(15, 23, 42, 0.92);
}
[data-theme="dark"] .photo-tile {
background: #334155;
}
[data-theme="dark"] .photos-empty i {
color: #475569;
}
[data-theme="dark"] .photos-empty .photos-empty-title {
color: #94a3b8;
}
[data-theme="dark"] .photos-empty p {
color: #64748b;
}