feat: board thumbnails, inline rename, UX overhaul + zoom/counter fixes

- Auto-generate board thumbnail from canvas content on save (webp, 400px)
- Collection cards show stacked/fanned board thumbnails with random offsets
- Three-dot menu on all cards with Rename, Share, Delete actions
- Inline rename for collections (header + card) and boards
- Collection cards show public/private status and member count
- Share button on collection cards for quick access
- Add updateCollection/updateBoard API functions
- Add thumbnail + object_count columns to boards table with migration
- Fix zoom drift: use element-relative coords (offsetX/Y) not getScenePoint
- Fix thumbnail generation breaking viewport: use finally block for restore
- Fix thumbnail bounds: use scene-space obj coords not screen-space getBoundingRect
- Fix object counter: live count from canvas instead of stale DB images table
- Fix three-dot menu clipping by removing overflow:hidden from card containers
- Status bar shows "objects" instead of "images", updates on add/delete
This commit is contained in:
Hiren
2026-03-09 19:10:25 +05:30
parent 00c3370634
commit 0c9ab32aef
8 changed files with 824 additions and 305 deletions
+361 -143
View File
@@ -1,4 +1,4 @@
import React, { useState, useEffect, useCallback } from 'react';
import React, { useState, useEffect, useCallback, useRef } from 'react';
import { useParams, useNavigate } from 'react-router-dom';
import { useAuth } from '../auth';
import {
@@ -6,6 +6,8 @@ import {
getCollectionByShareToken,
createBoard,
deleteBoard as apiDeleteBoard,
updateBoard,
updateCollection,
} from '../api';
import ShareDialog from '../components/ShareDialog';
@@ -14,6 +16,7 @@ interface Board {
name: string;
description: string;
image_count: number;
thumbnail: string | null;
created_at: string;
updated_at: string;
}
@@ -22,22 +25,93 @@ interface CollectionDetailProps {
isPublicView?: boolean;
}
const gradients = [
'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
'linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)',
'linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)',
'linear-gradient(135deg, #fa709a 0%, #fee140 100%)',
'linear-gradient(135deg, #f093fb 0%, #f5576c 100%)',
'linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%)',
];
function timeAgo(dateStr: string): string {
const d = new Date(dateStr);
const now = new Date();
const diff = now.getTime() - d.getTime();
const mins = Math.floor(diff / 60000);
if (mins < 1) return 'just now';
if (mins < 60) return `${mins}m ago`;
const hrs = Math.floor(mins / 60);
if (hrs < 24) return `${hrs}h ago`;
const days = Math.floor(hrs / 24);
if (days < 30) return `${days}d ago`;
return d.toLocaleDateString();
}
function hashCode(str: string): number {
let hash = 0;
for (let i = 0; i < str.length; i++) {
hash = ((hash << 5) - hash) + str.charCodeAt(i);
hash |= 0;
}
return Math.abs(hash);
function CardMenu({ onRename, onDelete, canEdit, canDelete }: {
onRename: () => void;
onDelete?: () => void;
canEdit: boolean;
canDelete: boolean;
}) {
const [open, setOpen] = useState(false);
const ref = useRef<HTMLDivElement>(null);
useEffect(() => {
if (!open) return;
const close = (e: MouseEvent) => { if (ref.current && !ref.current.contains(e.target as Node)) setOpen(false); };
document.addEventListener('mousedown', close);
return () => document.removeEventListener('mousedown', close);
}, [open]);
if (!canEdit && !canDelete) return null;
return (
<div ref={ref} style={{ position: 'relative' }}>
<button
onClick={(e) => { e.stopPropagation(); setOpen(!open); }}
style={{
width: '24px', height: '24px', background: 'transparent', border: 'none',
color: '#666', cursor: 'pointer', borderRadius: '4px', display: 'flex',
alignItems: 'center', justifyContent: 'center', transition: 'all 0.15s', padding: 0,
}}
onMouseEnter={(e) => { e.currentTarget.style.background = '#222'; e.currentTarget.style.color = '#ccc'; }}
onMouseLeave={(e) => { e.currentTarget.style.background = 'transparent'; e.currentTarget.style.color = '#666'; }}
>
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<circle cx="8" cy="3" r="1.5" /><circle cx="8" cy="8" r="1.5" /><circle cx="8" cy="13" r="1.5" />
</svg>
</button>
{open && (
<div style={{
position: 'absolute', right: 0, top: '100%', marginTop: '4px',
background: '#1a1a1a', border: '1px solid #2a2a2a', borderRadius: '8px',
padding: '4px', minWidth: '110px', zIndex: 100,
boxShadow: '0 8px 24px rgba(0,0,0,0.4)',
}} onClick={(e) => e.stopPropagation()}>
{canEdit && (
<button
onClick={() => { setOpen(false); onRename(); }}
style={{
display: 'block', width: '100%', padding: '7px 12px', background: 'transparent',
border: 'none', color: '#ccc', fontSize: '12px', cursor: 'pointer',
textAlign: 'left', borderRadius: '5px', transition: 'background 0.1s',
}}
onMouseEnter={(e) => { e.currentTarget.style.background = '#222'; }}
onMouseLeave={(e) => { e.currentTarget.style.background = 'transparent'; }}
>
Rename
</button>
)}
{canDelete && onDelete && (
<button
onClick={() => { setOpen(false); onDelete(); }}
style={{
display: 'block', width: '100%', padding: '7px 12px', background: 'transparent',
border: 'none', color: '#ff6b6b', fontSize: '12px', cursor: 'pointer',
textAlign: 'left', borderRadius: '5px', transition: 'background 0.1s',
}}
onMouseEnter={(e) => { e.currentTarget.style.background = '#1f1111'; }}
onMouseLeave={(e) => { e.currentTarget.style.background = 'transparent'; }}
>
Delete
</button>
)}
</div>
)}
</div>
);
}
export default function CollectionDetail({ isPublicView }: CollectionDetailProps) {
@@ -55,6 +129,12 @@ export default function CollectionDetail({ isPublicView }: CollectionDetailProps
const [newName, setNewName] = useState('');
const [newDesc, setNewDesc] = useState('');
const [creating, setCreating] = useState(false);
const [editingTitle, setEditingTitle] = useState(false);
const [titleText, setTitleText] = useState('');
const [renamingBoardId, setRenamingBoardId] = useState<string | null>(null);
const [renameBoardText, setRenameBoardText] = useState('');
const titleRef = useRef<HTMLInputElement>(null);
const boardRenameRef = useRef<HTMLInputElement>(null);
const load = useCallback(async () => {
try {
@@ -83,6 +163,9 @@ export default function CollectionDetail({ isPublicView }: CollectionDetailProps
const isOwner = members.some((m: any) => m.user_id === user?.id && m.role === 'owner');
const isEditor = isOwner || members.some((m: any) => m.user_id === user?.id && (m.role === 'editor' || m.role === 'owner'));
useEffect(() => { if (editingTitle) titleRef.current?.select(); }, [editingTitle]);
useEffect(() => { if (renamingBoardId) boardRenameRef.current?.select(); }, [renamingBoardId]);
async function handleCreateBoard() {
if (!newName.trim() || !resolvedId) return;
setCreating(true);
@@ -100,8 +183,7 @@ export default function CollectionDetail({ isPublicView }: CollectionDetailProps
}
}
async function handleDeleteBoard(e: React.MouseEvent, boardId: string) {
e.stopPropagation();
async function handleDeleteBoard(boardId: string) {
if (!confirm('Delete this board? This cannot be undone.')) return;
try {
await apiDeleteBoard(boardId);
@@ -111,19 +193,43 @@ export default function CollectionDetail({ isPublicView }: CollectionDetailProps
}
}
async function commitBoardRename(boardId: string) {
const trimmed = renameBoardText.trim();
const board = boards.find(b => b.id === boardId);
if (trimmed && trimmed !== board?.name) {
try {
await updateBoard(boardId, { name: trimmed });
setBoards((prev) => prev.map((b) => b.id === boardId ? { ...b, name: trimmed } : b));
} catch (err) {
console.error('Failed to rename board:', err);
}
}
setRenamingBoardId(null);
}
async function handleRenameCollection(name: string) {
if (!resolvedId) return;
try {
await updateCollection(resolvedId, { name });
setCollection((prev: any) => ({ ...prev, name }));
} catch (err) {
console.error('Failed to rename collection:', err);
}
}
if (loading) {
return (
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'center', height: '100vh', background: '#0d0d0d', color: '#555', fontSize: '14px' }}>
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'center', height: '100vh', background: '#0a0a0a', color: '#555', fontSize: '14px' }}>
Loading...
</div>
);
}
if (error) {
return (
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', height: '100vh', background: '#0d0d0d', gap: '16px' }}>
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', height: '100vh', background: '#0a0a0a', gap: '16px' }}>
<div style={{ color: '#ff6b6b', fontSize: '14px' }}>{error}</div>
<button onClick={() => navigate('/')} style={{
padding: '8px 20px', background: 'linear-gradient(135deg, #4a9eff, #3d7dd8)',
padding: '8px 20px', background: '#4a9eff',
border: 'none', borderRadius: '8px', color: '#fff', cursor: 'pointer', fontSize: '13px',
}}>
Back
@@ -133,89 +239,155 @@ export default function CollectionDetail({ isPublicView }: CollectionDetailProps
}
return (
<div style={{ height: '100vh', display: 'flex', flexDirection: 'column', background: '#0d0d0d' }}>
<div style={{ height: '100vh', display: 'flex', flexDirection: 'column', background: '#0a0a0a' }}>
{/* Header */}
<div style={{
display: 'flex', alignItems: 'center', justifyContent: 'space-between',
padding: '12px 28px', background: '#111', borderBottom: '1px solid #1a1a1a',
padding: '12px 32px', background: '#0f0f0f', borderBottom: '1px solid #1a1a1a',
flexShrink: 0, gap: '16px',
}}>
<button
onClick={() => navigate('/')}
style={{
padding: '5px 12px', background: 'transparent', border: '1px solid #222',
borderRadius: '6px', color: '#666', fontSize: '12px', cursor: 'pointer',
whiteSpace: 'nowrap', transition: 'all 0.15s',
}}
onMouseEnter={(e) => { e.currentTarget.style.borderColor = '#444'; e.currentTarget.style.color = '#aaa'; }}
onMouseLeave={(e) => { e.currentTarget.style.borderColor = '#222'; e.currentTarget.style.color = '#666'; }}
>
Back
</button>
<div style={{
fontSize: '16px', fontWeight: 600, color: '#e0e0e0', flex: 1,
overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap',
letterSpacing: '-0.2px',
}}>
{collection?.name || 'Collection'}
</div>
{user && !isPublicView && (
<div style={{ display: 'flex', alignItems: 'center', gap: '12px', flex: 1, minWidth: 0 }}>
<button
onClick={() => setShowShare(true)}
onClick={() => navigate('/')}
style={{
padding: '5px 16px', background: 'transparent',
border: '1px solid rgba(74,158,255,0.3)', borderRadius: '6px',
color: '#4a9eff', fontSize: '12px', fontWeight: 600, cursor: 'pointer',
transition: 'all 0.15s',
}}
onMouseEnter={(e) => {
e.currentTarget.style.background = 'rgba(74,158,255,0.08)';
e.currentTarget.style.borderColor = '#4a9eff';
}}
onMouseLeave={(e) => {
e.currentTarget.style.background = 'transparent';
e.currentTarget.style.borderColor = 'rgba(74,158,255,0.3)';
padding: '5px 12px', background: 'transparent', border: '1px solid #252525',
borderRadius: '6px', color: '#666', fontSize: '12px', cursor: 'pointer',
whiteSpace: 'nowrap', transition: 'all 0.15s', flexShrink: 0,
}}
onMouseEnter={(e) => { e.currentTarget.style.borderColor = '#444'; e.currentTarget.style.color = '#aaa'; }}
onMouseLeave={(e) => { e.currentTarget.style.borderColor = '#252525'; e.currentTarget.style.color = '#666'; }}
>
Share
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" strokeWidth="1.5" style={{ marginRight: '4px', verticalAlign: 'middle' }}>
<path d="M8 1L3 6l5 5" strokeLinecap="round" strokeLinejoin="round" />
</svg>
Collections
</button>
)}
<span style={{ color: '#333', flexShrink: 0 }}>/</span>
{editingTitle ? (
<input
ref={titleRef}
value={titleText}
onChange={(e) => setTitleText(e.target.value)}
onBlur={() => {
const t = titleText.trim();
if (t && t !== collection?.name) handleRenameCollection(t);
setEditingTitle(false);
}}
onKeyDown={(e) => {
if (e.key === 'Enter') (e.target as HTMLInputElement).blur();
if (e.key === 'Escape') setEditingTitle(false);
}}
style={{
fontSize: '15px', fontWeight: 600, color: '#e0e0e0',
background: '#0a0a0a', border: '1px solid #4a9eff', borderRadius: '4px',
padding: '2px 8px', outline: 'none', minWidth: '120px', maxWidth: '300px',
}}
autoFocus
/>
) : (
<div style={{ display: 'flex', alignItems: 'center', gap: '6px', minWidth: 0 }}>
<span
style={{
fontSize: '15px', fontWeight: 600, color: '#e0e0e0',
overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap',
}}
>
{collection?.name || 'Collection'}
</span>
{isEditor && (
<button
onClick={(e) => {
e.stopPropagation();
setTitleText(collection?.name || '');
setEditingTitle(true);
}}
style={{
width: '22px', height: '22px', background: 'transparent', border: 'none',
color: '#555', cursor: 'pointer', borderRadius: '4px', display: 'flex',
alignItems: 'center', justifyContent: 'center', transition: 'all 0.15s',
flexShrink: 0, padding: 0,
}}
onMouseEnter={(e) => { e.currentTarget.style.background = '#222'; e.currentTarget.style.color = '#ccc'; }}
onMouseLeave={(e) => { e.currentTarget.style.background = 'transparent'; e.currentTarget.style.color = '#555'; }}
title="Rename collection"
>
<svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round">
<path d="M17 3a2.83 2.83 0 114 4L7.5 20.5 2 22l1.5-5.5L17 3z" />
</svg>
</button>
)}
</div>
)}
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '8px', flexShrink: 0 }}>
{user && !isPublicView && (
<button
onClick={() => setShowShare(true)}
style={{
padding: '5px 14px', background: 'transparent',
border: '1px solid rgba(74,158,255,0.3)', borderRadius: '6px',
color: '#4a9eff', fontSize: '12px', fontWeight: 600, cursor: 'pointer',
transition: 'all 0.15s',
}}
onMouseEnter={(e) => {
e.currentTarget.style.background = 'rgba(74,158,255,0.08)';
e.currentTarget.style.borderColor = '#4a9eff';
}}
onMouseLeave={(e) => {
e.currentTarget.style.background = 'transparent';
e.currentTarget.style.borderColor = 'rgba(74,158,255,0.3)';
}}
>
Share
</button>
)}
</div>
</div>
{/* Controls */}
<div style={{ display: 'flex', alignItems: 'center', gap: '12px', padding: '16px 28px', flexShrink: 0 }}>
{isEditor && (
<button
onClick={() => setShowModal(true)}
style={{
padding: '9px 20px', background: 'linear-gradient(135deg, #4a9eff, #3d7dd8)',
color: '#fff', border: 'none', borderRadius: '8px', fontSize: '13px',
fontWeight: 600, cursor: 'pointer', whiteSpace: 'nowrap',
boxShadow: '0 2px 12px rgba(74,158,255,0.25)', transition: 'opacity 0.15s',
}}
onMouseEnter={(e) => { e.currentTarget.style.opacity = '0.85'; }}
onMouseLeave={(e) => { e.currentTarget.style.opacity = '1'; }}
>
+ New Board
</button>
)}
{collection?.description && (
<span style={{ fontSize: '13px', color: '#555' }}>{collection.description}</span>
)}
<div style={{ padding: '16px 32px', flexShrink: 0, display: 'flex', alignItems: 'center', justifyContent: 'space-between' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '12px' }}>
{isEditor && (
<button
onClick={() => setShowModal(true)}
style={{
padding: '8px 18px', background: '#4a9eff',
color: '#fff', border: 'none', borderRadius: '8px', fontSize: '13px',
fontWeight: 600, cursor: 'pointer', whiteSpace: 'nowrap',
transition: 'background 0.15s',
}}
onMouseEnter={(e) => { e.currentTarget.style.background = '#3d8be0'; }}
onMouseLeave={(e) => { e.currentTarget.style.background = '#4a9eff'; }}
>
+ New Board
</button>
)}
{collection?.description && (
<span style={{ fontSize: '13px', color: '#555' }}>{collection.description}</span>
)}
</div>
<span style={{ fontSize: '12px', color: '#444' }}>
{boards.length} board{boards.length !== 1 ? 's' : ''}
</span>
</div>
{/* Grid */}
{/* Board Grid */}
<div style={{
flex: 1, overflow: 'auto', padding: '0 28px 28px',
display: 'grid', gridTemplateColumns: 'repeat(auto-fill, minmax(240px, 1fr))',
flex: 1, overflow: 'auto', padding: '0 32px 32px',
display: 'grid', gridTemplateColumns: 'repeat(auto-fill, minmax(220px, 1fr))',
gap: '16px', alignContent: 'start',
}}>
{boards.length === 0 && (
<div style={{
gridColumn: '1 / -1', textAlign: 'center', padding: '80px 20px', color: '#444', fontSize: '14px',
gridColumn: '1 / -1', textAlign: 'center', padding: '100px 20px', color: '#444',
}}>
<div style={{ fontSize: '40px', marginBottom: '12px', opacity: 0.2 }}>+</div>
No boards in this collection yet.
<svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#333" strokeWidth="1" style={{ marginBottom: '14px' }}>
<rect x="2" y="3" width="20" height="18" rx="2" />
<circle cx="8.5" cy="10.5" r="2" />
<path d="M21 15l-5-5L5 21" />
</svg>
<div style={{ fontSize: '15px', fontWeight: 500, color: '#555', marginBottom: '6px' }}>No boards yet</div>
<div style={{ fontSize: '13px', color: '#444' }}>Create a board to start collecting references</div>
</div>
)}
{boards.map((board) => (
@@ -223,60 +395,101 @@ export default function CollectionDetail({ isPublicView }: CollectionDetailProps
key={board.id}
onClick={() => navigate(`/board/${board.id}`)}
style={{
background: '#141414', borderRadius: '12px', border: '1px solid #1e1e1e',
overflow: 'hidden', cursor: 'pointer', transition: 'all 0.2s ease',
background: '#131313', borderRadius: '10px', border: '1px solid #1c1c1c',
cursor: 'pointer', transition: 'all 0.2s ease', position: 'relative',
}}
onMouseEnter={(e) => {
(e.currentTarget as HTMLElement).style.borderColor = '#333';
(e.currentTarget as HTMLElement).style.transform = 'translateY(-2px)';
(e.currentTarget as HTMLElement).style.boxShadow = '0 8px 24px rgba(0,0,0,0.3)';
const el = e.currentTarget as HTMLElement;
el.style.borderColor = '#2a2a2a';
el.style.transform = 'translateY(-2px)';
el.style.boxShadow = '0 8px 24px rgba(0,0,0,0.3)';
}}
onMouseLeave={(e) => {
(e.currentTarget as HTMLElement).style.borderColor = '#1e1e1e';
(e.currentTarget as HTMLElement).style.transform = 'none';
(e.currentTarget as HTMLElement).style.boxShadow = 'none';
const el = e.currentTarget as HTMLElement;
el.style.borderColor = '#1c1c1c';
el.style.transform = 'none';
el.style.boxShadow = 'none';
}}
>
{/* Preview — auto-generated from board content */}
<div style={{
height: '90px', display: 'flex', alignItems: 'center', justifyContent: 'center',
background: gradients[hashCode(board.id) % gradients.length],
fontSize: '28px', color: 'rgba(255,255,255,0.4)', fontWeight: 700,
height: '140px',
background: '#0c0c0c',
display: 'flex', alignItems: 'center', justifyContent: 'center',
overflow: 'hidden', borderRadius: '10px 10px 0 0',
}}>
{board.name.charAt(0).toUpperCase()}
</div>
<div style={{ padding: '12px 14px 8px' }}>
<p style={{
fontSize: '14px', fontWeight: 600, color: '#e0e0e0', margin: 0,
overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap',
}}>
{board.name}
</p>
</div>
<div style={{
display: 'flex', alignItems: 'center', justifyContent: 'space-between',
padding: '6px 14px', borderTop: '1px solid #1a1a1a',
}}>
<span style={{ fontSize: '11px', color: '#555' }}>
{board.image_count} img{board.image_count !== 1 ? 's' : ''}
</span>
<span style={{ fontSize: '11px', color: '#444' }}>
{new Date(board.updated_at).toLocaleDateString()}
</span>
{isOwner && (
<button
onClick={(e) => handleDeleteBoard(e, board.id)}
style={{
padding: '3px 8px', background: 'transparent', border: '1px solid #2a1515',
borderRadius: '4px', color: '#ff6b6b', fontSize: '10px', cursor: 'pointer',
opacity: 0.6, transition: 'opacity 0.15s',
}}
onMouseEnter={(e) => { e.currentTarget.style.opacity = '1'; }}
onMouseLeave={(e) => { e.currentTarget.style.opacity = '0.6'; }}
>
Delete
</button>
{board.thumbnail ? (
<img
src={board.thumbnail}
alt=""
style={{ width: '100%', height: '100%', objectFit: 'cover' }}
draggable={false}
/>
) : (
<div style={{
display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '6px', color: '#2a2a2a',
}}>
<svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.2">
<rect x="2" y="3" width="20" height="18" rx="2" />
<circle cx="8.5" cy="10.5" r="2" />
<path d="M21 15l-5-5L5 21" />
</svg>
<span style={{ fontSize: '10px', color: '#333' }}>
{board.image_count > 0 ? `${board.image_count} image${board.image_count !== 1 ? 's' : ''}` : 'Empty board'}
</span>
</div>
)}
</div>
{/* Board name + menu */}
<div style={{ padding: '10px 12px 6px', display: 'flex', alignItems: 'center', gap: '6px' }}>
<div style={{ flex: 1, minWidth: 0 }}>
{renamingBoardId === board.id ? (
<input
ref={boardRenameRef}
value={renameBoardText}
onChange={(e) => setRenameBoardText(e.target.value)}
onBlur={() => commitBoardRename(board.id)}
onKeyDown={(e) => {
if (e.key === 'Enter') commitBoardRename(board.id);
if (e.key === 'Escape') setRenamingBoardId(null);
e.stopPropagation();
}}
onClick={(e) => e.stopPropagation()}
style={{
width: '100%', fontSize: '13px', fontWeight: 600, color: '#e0e0e0',
background: '#0a0a0a', border: '1px solid #4a9eff', borderRadius: '4px',
padding: '2px 6px', outline: 'none', boxSizing: 'border-box',
}}
autoFocus
/>
) : (
<p style={{
fontSize: '13px', fontWeight: 600, color: '#e0e0e0', margin: 0,
overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap',
}}>
{board.name}
</p>
)}
</div>
<CardMenu
onRename={() => { setRenameBoardText(board.name); setRenamingBoardId(board.id); }}
onDelete={() => handleDeleteBoard(board.id)}
canEdit={isEditor}
canDelete={isOwner}
/>
</div>
{/* Footer */}
<div style={{
display: 'flex', alignItems: 'center', gap: '6px',
padding: '6px 12px', borderTop: '1px solid #191919',
fontSize: '10px', color: '#555',
}}>
<span>{board.image_count} img{board.image_count !== 1 ? 's' : ''}</span>
<span style={{ color: '#2a2a2a' }}>|</span>
<span style={{ color: '#444' }}>{timeAgo(board.updated_at)}</span>
</div>
</div>
))}
</div>
@@ -284,49 +497,54 @@ export default function CollectionDetail({ isPublicView }: CollectionDetailProps
{/* Create board modal */}
{showModal && (
<div style={{
position: 'fixed', inset: 0, background: 'rgba(0,0,0,0.7)',
position: 'fixed', inset: 0, background: 'rgba(0,0,0,0.75)',
display: 'flex', alignItems: 'center', justifyContent: 'center', zIndex: 1000,
backdropFilter: 'blur(4px)',
backdropFilter: 'blur(8px)',
}} onClick={() => setShowModal(false)}>
<div style={{
background: '#161616', borderRadius: '16px', padding: '32px',
width: '100%', maxWidth: '420px', border: '1px solid #222',
boxShadow: '0 24px 64px rgba(0,0,0,0.5)',
background: '#151515', borderRadius: '14px', padding: '28px',
width: '100%', maxWidth: '400px', border: '1px solid #252525',
boxShadow: '0 24px 64px rgba(0,0,0,0.6)',
}} onClick={(e) => e.stopPropagation()}>
<h2 style={{ margin: '0 0 24px', fontSize: '18px', fontWeight: 600, color: '#e0e0e0' }}>New Board</h2>
<h2 style={{ margin: '0 0 20px', fontSize: '17px', fontWeight: 600, color: '#e0e0e0' }}>New Board</h2>
<input
type="text" placeholder="Board name" value={newName}
onChange={(e) => setNewName(e.target.value)} autoFocus
onKeyDown={(e) => { if (e.key === 'Enter') handleCreateBoard(); }}
style={{
width: '100%', padding: '10px 14px', marginBottom: '12px',
background: '#0d0d0d', border: '1px solid #2a2a2a', borderRadius: '8px',
width: '100%', padding: '10px 14px', marginBottom: '10px',
background: '#0a0a0a', border: '1px solid #2a2a2a', borderRadius: '8px',
color: '#e0e0e0', fontSize: '14px', outline: 'none', boxSizing: 'border-box',
}}
onFocus={(e) => { e.currentTarget.style.borderColor = '#4a9eff'; }}
onBlur={(e) => { e.currentTarget.style.borderColor = '#2a2a2a'; }}
/>
<input
type="text" placeholder="Description (optional)" value={newDesc}
onChange={(e) => setNewDesc(e.target.value)}
onKeyDown={(e) => { if (e.key === 'Enter') handleCreateBoard(); }}
style={{
width: '100%', padding: '10px 14px', marginBottom: '16px',
background: '#0d0d0d', border: '1px solid #2a2a2a', borderRadius: '8px',
width: '100%', padding: '10px 14px', marginBottom: '20px',
background: '#0a0a0a', border: '1px solid #2a2a2a', borderRadius: '8px',
color: '#e0e0e0', fontSize: '14px', outline: 'none', boxSizing: 'border-box',
}}
onFocus={(e) => { e.currentTarget.style.borderColor = '#4a9eff'; }}
onBlur={(e) => { e.currentTarget.style.borderColor = '#2a2a2a'; }}
/>
<div style={{ display: 'flex', justifyContent: 'flex-end', gap: '10px' }}>
<div style={{ display: 'flex', justifyContent: 'flex-end', gap: '8px' }}>
<button onClick={() => setShowModal(false)} style={{
padding: '8px 18px', background: 'transparent', border: '1px solid #222',
padding: '8px 16px', background: 'transparent', border: '1px solid #252525',
borderRadius: '8px', color: '#888', fontSize: '13px', cursor: 'pointer',
}}>
Cancel
</button>
<button onClick={handleCreateBoard} disabled={creating} style={{
<button onClick={handleCreateBoard} disabled={creating || !newName.trim()} style={{
padding: '8px 20px',
background: creating ? '#333' : 'linear-gradient(135deg, #4a9eff, #3d7dd8)',
background: creating || !newName.trim() ? '#333' : '#4a9eff',
color: '#fff', border: 'none', borderRadius: '8px', fontSize: '13px',
fontWeight: 600, cursor: creating ? 'default' : 'pointer',
opacity: creating ? 0.6 : 1,
fontWeight: 600, cursor: creating || !newName.trim() ? 'default' : 'pointer',
opacity: creating || !newName.trim() ? 0.5 : 1,
transition: 'all 0.15s',
}}>
{creating ? 'Creating...' : 'Create'}
</button>