- Turbopack activé (dev: next dev --turbopack) - NOTE_LIST_SELECT: exclut embedding (~6KB/note) des requêtes de liste - getAllNotes/getNotes/getArchivedNotes/getNotesWithReminders optimisés - searchNotes: filtrage DB-side au lieu de full-scan JS en mémoire - getAllNotes: requêtes ownNotes + sharedNotes parallélisées avec Promise.all - syncLabels: upsert en transaction () vs N boucles séquentielles - app/(main)/page.tsx converti en Server Component (RSC) - HomeClient: composant client hydraté avec données pré-chargées - NoteEditor/BatchOrganizationDialog/AutoLabelSuggestionDialog: lazy-loaded avec dynamic() - MasonryGrid: remplace Muuri par CSS grid auto-fill + @dnd-kit/sortable - 13 packages supprimés: muuri, web-animations-js, react-masonry-css, react-grid-layout - next.config.ts nettoyé: suppression webpack override, activation image optimization
143 lines
4.0 KiB
CSS
143 lines
4.0 KiB
CSS
/**
|
||
* Masonry Grid Styles — CSS columns natif (sans Muuri)
|
||
* Layout responsive pur CSS, drag-and-drop via @dnd-kit
|
||
*/
|
||
|
||
/* ─── Container ──────────────────────────────────── */
|
||
.masonry-container {
|
||
width: 100%;
|
||
padding: 0 8px 40px 8px;
|
||
}
|
||
|
||
/* ─── CSS Grid Masonry ───────────────────────────── */
|
||
.masonry-css-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
||
grid-auto-rows: auto;
|
||
gap: 12px;
|
||
align-items: start;
|
||
}
|
||
|
||
/* ─── Sortable items ─────────────────────────────── */
|
||
.masonry-sortable-item {
|
||
break-inside: avoid;
|
||
box-sizing: border-box;
|
||
will-change: transform;
|
||
}
|
||
|
||
/* Notes "medium" et "large" occupent 2 colonnes si disponibles */
|
||
.masonry-sortable-item[data-size="medium"] {
|
||
grid-column: span 2;
|
||
}
|
||
|
||
.masonry-sortable-item[data-size="large"] {
|
||
grid-column: span 2;
|
||
}
|
||
|
||
/* ─── Drag overlay ───────────────────────────────── */
|
||
.masonry-drag-overlay {
|
||
cursor: grabbing;
|
||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.15);
|
||
border-radius: 12px;
|
||
opacity: 0.95;
|
||
pointer-events: none;
|
||
}
|
||
|
||
/* ─── Note card base ─────────────────────────────── */
|
||
.note-card {
|
||
width: 100% !important;
|
||
min-width: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
/* ─── Note size min-heights ──────────────────────── */
|
||
.masonry-sortable-item[data-size="small"] .note-card {
|
||
min-height: 120px;
|
||
}
|
||
|
||
.masonry-sortable-item[data-size="medium"] .note-card {
|
||
min-height: 280px;
|
||
}
|
||
|
||
.masonry-sortable-item[data-size="large"] .note-card {
|
||
min-height: 440px;
|
||
}
|
||
|
||
/* ─── Transitions ────────────────────────────────── */
|
||
.masonry-sortable-item {
|
||
transition: opacity 0.15s ease-out;
|
||
}
|
||
|
||
/* ─── Mobile (< 480px) : 1 colonne ──────────────── */
|
||
@media (max-width: 479px) {
|
||
.masonry-css-grid {
|
||
grid-template-columns: 1fr;
|
||
gap: 10px;
|
||
}
|
||
|
||
.masonry-sortable-item[data-size="medium"],
|
||
.masonry-sortable-item[data-size="large"] {
|
||
grid-column: span 1;
|
||
}
|
||
|
||
.masonry-container {
|
||
padding: 0 4px 16px 4px;
|
||
}
|
||
}
|
||
|
||
/* ─── Small tablet (480–767px) : 2 colonnes ─────── */
|
||
@media (min-width: 480px) and (max-width: 767px) {
|
||
.masonry-css-grid {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 10px;
|
||
}
|
||
|
||
.masonry-container {
|
||
padding: 0 8px 20px 8px;
|
||
}
|
||
}
|
||
|
||
/* ─── Tablet (768–1023px) : 2–3 colonnes ────────── */
|
||
@media (min-width: 768px) and (max-width: 1023px) {
|
||
.masonry-css-grid {
|
||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||
gap: 12px;
|
||
}
|
||
}
|
||
|
||
/* ─── Desktop (1024–1279px) : 3–4 colonnes ──────── */
|
||
@media (min-width: 1024px) and (max-width: 1279px) {
|
||
.masonry-css-grid {
|
||
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
||
gap: 12px;
|
||
}
|
||
}
|
||
|
||
/* ─── Large Desktop (1280px+): 4–5 colonnes ─────── */
|
||
@media (min-width: 1280px) {
|
||
.masonry-css-grid {
|
||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||
gap: 14px;
|
||
}
|
||
|
||
.masonry-container {
|
||
max-width: 1600px;
|
||
margin: 0 auto;
|
||
padding: 0 12px 32px 12px;
|
||
}
|
||
}
|
||
|
||
/* ─── Print ──────────────────────────────────────── */
|
||
@media print {
|
||
.masonry-sortable-item {
|
||
break-inside: avoid;
|
||
page-break-inside: avoid;
|
||
}
|
||
}
|
||
|
||
/* ─── Reduced motion ─────────────────────────────── */
|
||
@media (prefers-reduced-motion: reduce) {
|
||
.masonry-sortable-item {
|
||
transition: none;
|
||
}
|
||
} |