Compare commits
4 Commits
b48b66bd76
...
3baeb0378c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3baeb0378c | ||
|
|
6db93d9c5a | ||
|
|
5a628fd85b | ||
|
|
bc7e394913 |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": "1.1",
|
||||
"generatedAt": "2026-05-11T18:07:36.883Z",
|
||||
"generatedAt": "2026-05-11T22:29:46.546Z",
|
||||
"nodes": [
|
||||
{
|
||||
"id": "contrat-social-medecine-corps-social",
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
// MILIEU : preview article (V1.2-P) - inseree au clic journal-item-click.
|
||||
// BAS : iframe carte AEP (toujours visible).
|
||||
// V1.3-D : ChatbotV2 retire du DOM (backlog V2). Pour reactivation -> reintroduire le tab + panel.
|
||||
// V1.4-C : cadre Carte O + bouton toggle desktop + drag fix (window listeners) + preview hydration (client:load) + transitions.
|
||||
import CarteOWrapper from '../vue/CarteOWrapper.vue';
|
||||
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
||||
import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
@@ -19,11 +20,13 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
data-preview-open="false"
|
||||
style="height: 100%; overflow-y: hidden;"
|
||||
>
|
||||
<!-- HAUT (default flex-1 base 33%) : V1.3-D bandeau "Sommaire editorial" + legende + Carte O plein espace -->
|
||||
<!-- HAUT (default flex-1 base 33%) : V1.3-D bandeau "Sommaire editorial" + legende + Carte O plein espace
|
||||
V1.4-C1 : cadre 1px renforce (border-neutral-300) + transition height pour toggle collapse desktop -->
|
||||
<section
|
||||
id="col-centre-haut"
|
||||
class="border border-neutral-200 rounded flex flex-col overflow-hidden bg-white"
|
||||
style="min-height: 0; flex: 1 1 33%;"
|
||||
class="rounded flex flex-col overflow-hidden bg-white"
|
||||
style="min-height: 0; flex: 1 1 33%; border: 1px solid #CBD5E1; border-radius: 6px; transition: flex-basis 0.3s ease, min-height 0.3s ease;"
|
||||
data-collapsed="false"
|
||||
>
|
||||
<!-- V1.3-D : bandeau header (titre gauche + legende droite) -->
|
||||
<header
|
||||
@@ -33,32 +36,45 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
<span class="text-xs truncate" style="color: #475569;">
|
||||
Sommaire éditorial d'architecture d'écologie politique
|
||||
</span>
|
||||
<ul class="flex items-center gap-3 shrink-0 text-xs" style="color: #475569;" aria-label="Légende">
|
||||
<li class="flex items-center gap-1.5">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
style="width: 8px; height: 8px; border-radius: 999px; background: #0F172A; display: inline-block;"
|
||||
></span>
|
||||
<span>publié</span>
|
||||
</li>
|
||||
<li class="flex items-center gap-1.5">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
style="width: 8px; height: 8px; border-radius: 999px; background: transparent; border: 1px solid #0F172A; display: inline-block;"
|
||||
></span>
|
||||
<span>à venir</span>
|
||||
</li>
|
||||
<li class="flex items-center gap-1.5">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
style="width: 8px; height: 8px; border-radius: 999px; background: #B45309; display: inline-block;"
|
||||
></span>
|
||||
<span>projet</span>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="flex items-center gap-3 shrink-0">
|
||||
<ul class="flex items-center gap-3 shrink-0 text-xs" style="color: #475569;" aria-label="Légende">
|
||||
<li class="flex items-center gap-1.5">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
style="width: 8px; height: 8px; border-radius: 999px; background: #0F172A; display: inline-block;"
|
||||
></span>
|
||||
<span>publié</span>
|
||||
</li>
|
||||
<li class="flex items-center gap-1.5">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
style="width: 8px; height: 8px; border-radius: 999px; background: transparent; border: 1px solid #0F172A; display: inline-block;"
|
||||
></span>
|
||||
<span>à venir</span>
|
||||
</li>
|
||||
<li class="flex items-center gap-1.5">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
style="width: 8px; height: 8px; border-radius: 999px; background: #B45309; display: inline-block;"
|
||||
></span>
|
||||
<span>projet</span>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- V1.4-C2 : bouton toggle Carte O desktop (replier/deployer la zone HAUT) -->
|
||||
<button
|
||||
id="col-centre-haut-toggle-desktop"
|
||||
type="button"
|
||||
aria-label="Replier la Carte O"
|
||||
class="hidden md:inline-flex items-center justify-center w-5 h-5 text-neutral-500 hover:text-neutral-900 cursor-pointer transition-colors"
|
||||
style="font-size: 10px; line-height: 1;"
|
||||
title="Replier la Carte O"
|
||||
>
|
||||
<span id="col-centre-haut-toggle-icon">▼</span>
|
||||
</button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="flex-1 overflow-hidden relative">
|
||||
<div id="col-centre-haut-body" class="flex-1 overflow-hidden relative" style="transition: opacity 0.25s ease;">
|
||||
<div id="panel-mindmap" class="absolute inset-0">
|
||||
<CarteOWrapper client:visible />
|
||||
</div>
|
||||
@@ -86,16 +102,19 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
|
||||
<!-- MILIEU (V1.2-P) : preview article inseree entre Carte O et iframe AEP.
|
||||
Pas de border ici - PreviewArticle.vue gere son propre conteneur.
|
||||
shrink-0 pour preserver sa taille auto, sinon flex pourrait l'ecraser. -->
|
||||
shrink-0 pour preserver sa taille auto, sinon flex pourrait l'ecraser.
|
||||
V1.4-E1 : client:load (vs client:visible) pour garantir hydration immediate des listeners
|
||||
'preview-open' / 'journal-item-click' (le v-if rendait l'observer aveugle). -->
|
||||
<div id="col-centre-preview-slot" class="shrink-0" style="display: contents;">
|
||||
<PreviewArticle client:visible />
|
||||
<PreviewArticle client:load />
|
||||
</div>
|
||||
|
||||
<!-- BAS (default flex-1 base 67%) : iframe carte AEP toujours visible -->
|
||||
<!-- BAS (default flex-1 base 67%) : iframe carte AEP toujours visible
|
||||
V1.4-E2 : transition flex-basis 0.3s ease (smooth quand preview ouvre/ferme) -->
|
||||
<section
|
||||
id="col-centre-bas"
|
||||
class="border border-neutral-200 rounded overflow-hidden bg-white"
|
||||
style="min-height: 0; flex: 1 1 67%;"
|
||||
style="min-height: 0; flex: 1 1 67%; transition: flex-basis 0.3s ease;"
|
||||
>
|
||||
<div class="h-full min-h-[60vh] md:min-h-[400px]">
|
||||
<EmbedDynamique client:visible />
|
||||
@@ -104,11 +123,14 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// Poignee repli zone HAUT (mobile only)
|
||||
// Poignee repli zone HAUT (mobile only) + toggle desktop V1.4-C2
|
||||
const grid = document.getElementById('col-centre-grid');
|
||||
const haut = document.getElementById('col-centre-haut');
|
||||
const bas = document.getElementById('col-centre-bas');
|
||||
const poignee = document.getElementById('col-centre-poignee');
|
||||
const toggleDesktop = document.getElementById('col-centre-haut-toggle-desktop');
|
||||
const toggleDesktopIcon = document.getElementById('col-centre-haut-toggle-icon');
|
||||
const hautBody = document.getElementById('col-centre-haut-body');
|
||||
|
||||
// Sauvegarde flex-basis defaults pour restaure apres fermeture preview
|
||||
let defaultHautFlex = '1 1 33%';
|
||||
@@ -140,6 +162,44 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
applyRepliState(next);
|
||||
});
|
||||
|
||||
// V1.4-C2 : bouton toggle Carte O desktop (replier/deployer la zone HAUT).
|
||||
// Etat distinct de l'etat mobile (clef differente) pour permettre persistance par device.
|
||||
// Replie : flex 0 0 36px (juste le bandeau header reste visible), body masque.
|
||||
// Deploye : restaure flex-basis precedent (default 33% ou drag-resize sauvegarde).
|
||||
const applyDesktopCollapseState = (collapsed: boolean) => {
|
||||
if (!haut) return;
|
||||
if (grid && grid.dataset.previewOpen === 'true') return; // skip si preview ouverte (preview pilote la mise en page)
|
||||
if (collapsed) {
|
||||
haut.style.flex = '0 0 36px';
|
||||
haut.dataset.collapsed = 'true';
|
||||
if (hautBody) hautBody.style.opacity = '0';
|
||||
if (toggleDesktopIcon) toggleDesktopIcon.textContent = '▶';
|
||||
toggleDesktop?.setAttribute('aria-label', 'Deployer la Carte O');
|
||||
toggleDesktop?.setAttribute('title', 'Deployer la Carte O');
|
||||
} else {
|
||||
// Restaure flex-basis precedent (drag-resize ou default)
|
||||
haut.style.flex = defaultHautFlex;
|
||||
haut.dataset.collapsed = 'false';
|
||||
if (hautBody) hautBody.style.opacity = '1';
|
||||
if (toggleDesktopIcon) toggleDesktopIcon.textContent = '▼';
|
||||
toggleDesktop?.setAttribute('aria-label', 'Replier la Carte O');
|
||||
toggleDesktop?.setAttribute('title', 'Replier la Carte O');
|
||||
}
|
||||
};
|
||||
|
||||
const savedDesktopCollapsed = sessionStorage.getItem('tf-carte-o-collapsed') === 'true';
|
||||
if (savedDesktopCollapsed) {
|
||||
// applique apres que defaultHautFlex soit defini (deja le cas)
|
||||
applyDesktopCollapseState(true);
|
||||
}
|
||||
|
||||
toggleDesktop?.addEventListener('click', () => {
|
||||
const current = sessionStorage.getItem('tf-carte-o-collapsed') === 'true';
|
||||
const next = !current;
|
||||
sessionStorage.setItem('tf-carte-o-collapsed', String(next));
|
||||
applyDesktopCollapseState(next);
|
||||
});
|
||||
|
||||
// V1.2-P : preview ouverte = container scrollable, Carte O et iframe AEP figes en vh.
|
||||
const applyPreviewState = (open: boolean) => {
|
||||
if (!grid || !haut || !bas) return;
|
||||
@@ -196,19 +256,27 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
let startHautH = 0;
|
||||
let containerH = 0;
|
||||
|
||||
// V1.4-D : fix drag handle qui ne se "decliquait" pas au mouseup.
|
||||
// - Listeners poses sur window (vs document) pour capter les events meme si la souris quitte l'iframe
|
||||
// - Ajout mouseleave/blur/pointerup pour robustesse cross-browser / cross-flow utilisateur
|
||||
// - Desactive aussi les transitions CSS pendant le drag (pas de lag visuel) puis restaure
|
||||
dragHandle.addEventListener('mousedown', (e: MouseEvent) => {
|
||||
if (grid.dataset.previewOpen === 'true') return;
|
||||
if (sessionStorage.getItem('tf-haut-replie') === 'true') return;
|
||||
if (sessionStorage.getItem('tf-carte-o-collapsed') === 'true') return;
|
||||
isDragging = true;
|
||||
startY = e.clientY;
|
||||
startHautH = haut.getBoundingClientRect().height;
|
||||
containerH = grid.getBoundingClientRect().height;
|
||||
document.body.style.cursor = 'row-resize';
|
||||
document.body.style.userSelect = 'none';
|
||||
// Suspend transitions pendant drag pour responsivite
|
||||
haut.style.transition = 'none';
|
||||
bas.style.transition = 'none';
|
||||
e.preventDefault();
|
||||
});
|
||||
|
||||
document.addEventListener('mousemove', (e: MouseEvent) => {
|
||||
const onMouseMove = (e: MouseEvent) => {
|
||||
if (!isDragging) return;
|
||||
const delta = e.clientY - startY;
|
||||
const newHautH = Math.min(Math.max(startHautH + delta, containerH * 0.2), containerH * 0.8);
|
||||
@@ -216,24 +284,37 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||
const basPct = 100 - hautPct;
|
||||
haut.style.flex = `1 1 ${hautPct.toFixed(1)}%`;
|
||||
bas.style.flex = `1 1 ${basPct.toFixed(1)}%`;
|
||||
});
|
||||
};
|
||||
|
||||
document.addEventListener('mouseup', () => {
|
||||
if (isDragging) {
|
||||
isDragging = false;
|
||||
document.body.style.cursor = '';
|
||||
document.body.style.userSelect = '';
|
||||
const hf = haut.style.flex;
|
||||
const bf = bas.style.flex;
|
||||
if (hf) {
|
||||
sessionStorage.setItem('tf-centre-haut-flex', hf);
|
||||
defaultHautFlex = hf;
|
||||
}
|
||||
if (bf) {
|
||||
sessionStorage.setItem('tf-centre-bas-flex', bf);
|
||||
defaultBasFlex = bf;
|
||||
}
|
||||
const stopDrag = () => {
|
||||
if (!isDragging) return;
|
||||
isDragging = false;
|
||||
document.body.style.cursor = '';
|
||||
document.body.style.userSelect = '';
|
||||
// Restaure transitions
|
||||
haut.style.transition = 'flex-basis 0.3s ease, min-height 0.3s ease';
|
||||
bas.style.transition = 'flex-basis 0.3s ease';
|
||||
const hf = haut.style.flex;
|
||||
const bf = bas.style.flex;
|
||||
if (hf) {
|
||||
sessionStorage.setItem('tf-centre-haut-flex', hf);
|
||||
defaultHautFlex = hf;
|
||||
}
|
||||
if (bf) {
|
||||
sessionStorage.setItem('tf-centre-bas-flex', bf);
|
||||
defaultBasFlex = bf;
|
||||
}
|
||||
};
|
||||
|
||||
// Listeners multiples sur window pour couvrir tous les cas (sortie iframe, perte focus, etc.)
|
||||
window.addEventListener('mousemove', onMouseMove);
|
||||
window.addEventListener('mouseup', stopDrag);
|
||||
window.addEventListener('pointerup', stopDrag);
|
||||
window.addEventListener('mouseleave', stopDrag);
|
||||
window.addEventListener('blur', stopDrag);
|
||||
// Si on rentre dans la fenetre sans bouton souris enfonce, on stoppe (l'user a relache hors-page)
|
||||
window.addEventListener('mouseenter', (e: MouseEvent) => {
|
||||
if (isDragging && e.buttons === 0) stopDrag();
|
||||
});
|
||||
|
||||
// Restaurer position depuis sessionStorage
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
---
|
||||
import JournalList from '../vue/JournalList.vue';
|
||||
|
||||
// V1.3-F : palette desopacifiee — chaque categorie a une pastel pour le fill pill inactive.
|
||||
// Regle bicouche : pastel = FILL pill inactive uniquement. Border + texte = encre couleur 100%.
|
||||
// V1.4-B : pill inactive en transparent (revert pastels V1.3-F).
|
||||
// Active = fill couleur 100% + texte blanc. Inactive = transparent + border + texte couleur 100%.
|
||||
const categories = [
|
||||
{
|
||||
id: 'politique',
|
||||
@@ -78,14 +78,14 @@ const categories = [
|
||||
))}
|
||||
</div>
|
||||
|
||||
<!-- Selecteur plateforme Politique (V1.3-F : pastel #E5C3BE en fill inactive) -->
|
||||
<!-- Selecteur plateforme Politique (V1.4-B : transparent en fill inactive) -->
|
||||
<div id="politique-selector" class="mt-2 hidden flex gap-2">
|
||||
{categories[0].plateformes.map((p) => (
|
||||
<button
|
||||
type="button"
|
||||
data-platform-id={p.id}
|
||||
class="platform-pill"
|
||||
style="font-family:'Courier New',Courier,monospace;font-size:12px;padding:2px 8px;border-radius:12px;cursor:pointer;border:1px solid #B5443A;background:#E5C3BE;color:#B5443A;"
|
||||
style="font-family:'Courier New',Courier,monospace;font-size:12px;padding:2px 8px;border-radius:12px;cursor:pointer;border:1px solid #B5443A;background:transparent;color:#B5443A;"
|
||||
>
|
||||
{p.label}
|
||||
</button>
|
||||
@@ -210,18 +210,17 @@ const categories = [
|
||||
window.dispatchEvent(new CustomEvent('platform-filter-change', { detail: { platform } }));
|
||||
};
|
||||
|
||||
// V1.3-F : palette desopacifiee.
|
||||
// V1.4-B : revert pastels — pill inactive en transparent (papier visible).
|
||||
// Active = fill couleur 100% + texte blanc.
|
||||
// Inactive = fill pastel + texte couleur 100% + border couleur 100% (regle bicouche).
|
||||
// Inactive = transparent + texte couleur 100% + border couleur 100%.
|
||||
const updateBadgeStyle = (btn: HTMLElement, active: boolean) => {
|
||||
const color = btn.dataset.color || '#000';
|
||||
const pastel = btn.dataset.pastel || '#E5C3BE';
|
||||
if (active) {
|
||||
btn.style.background = color;
|
||||
btn.style.color = '#fff';
|
||||
btn.style.border = `1px solid ${color}`;
|
||||
} else {
|
||||
btn.style.background = pastel;
|
||||
btn.style.background = 'transparent';
|
||||
btn.style.color = color;
|
||||
btn.style.border = `1px solid ${color}`;
|
||||
}
|
||||
@@ -239,9 +238,9 @@ const categories = [
|
||||
}
|
||||
};
|
||||
|
||||
// V1.3-F : sub-pills Politique, regle bicouche identique.
|
||||
// V1.4-B : sub-pills Politique, transparent au lieu de pastel.
|
||||
// Active (ou aucun filtre) = fill brique #B5443A + texte blanc.
|
||||
// Inactive = fill pastel #E5C3BE + texte brique + border brique 100%.
|
||||
// Inactive = transparent + texte brique + border brique 100%.
|
||||
const updatePillStyles = () => {
|
||||
const pills = document.querySelectorAll<HTMLElement>('.platform-pill');
|
||||
const active = platformFilters['politique'];
|
||||
@@ -251,7 +250,7 @@ const categories = [
|
||||
pill.style.background = '#B5443A';
|
||||
pill.style.color = '#fff';
|
||||
} else {
|
||||
pill.style.background = '#E5C3BE';
|
||||
pill.style.background = 'transparent';
|
||||
pill.style.color = '#B5443A';
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1,30 +1,32 @@
|
||||
---
|
||||
// Footer.astro - V1.2-L : 1 ligne 3 zones (nav / subscribe / logos RS)
|
||||
// Style monochrome encre #0F172A palette terre V1.2
|
||||
// Footer.astro - V1.4-F : 1 ligne 3 zones (nav / subscribe / logos RS).
|
||||
// Alignement vertical centre + padding-y reduit (py-2) pour profil plus fin.
|
||||
// Subscribe input/button compact (py-1) cale sur baseline des autres elements.
|
||||
---
|
||||
<footer class="border-t border-neutral-200 px-6 py-4 bg-[#FAFAF7] text-[#0F172A]">
|
||||
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-3 md:gap-6">
|
||||
<footer class="border-t border-neutral-200 px-6 py-2 bg-[#FAFAF7] text-[#0F172A]">
|
||||
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-2 md:gap-6">
|
||||
|
||||
<!-- ZONE GAUCHE : liens nav -->
|
||||
<nav class="flex gap-4 text-xs justify-center md:justify-start">
|
||||
<nav class="flex gap-4 text-xs items-center justify-center md:justify-start">
|
||||
<a href="/manifeste" data-manifeste-link class="opacity-60 hover:opacity-100 transition-opacity">Manifeste</a>
|
||||
<a href="/a-propos" class="opacity-60 hover:opacity-100 transition-opacity">A propos</a>
|
||||
<a href="/mentions-legales" class="opacity-60 hover:opacity-100 transition-opacity">Mentions legales</a>
|
||||
</nav>
|
||||
|
||||
<!-- ZONE CENTRE : subscribe form compact (endpoint /api/subscribe V1.1-I) -->
|
||||
<div class="flex flex-col items-center gap-1">
|
||||
<!-- ZONE CENTRE : subscribe form compact (endpoint /api/subscribe V1.1-I).
|
||||
V1.4-F : padding-y reduit (py-1) pour caler input sur la baseline des liens + logos. -->
|
||||
<div class="flex flex-col items-center gap-0.5">
|
||||
<form id="subscribe-form" class="flex gap-2 items-center">
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
required
|
||||
placeholder="ton@email.fr"
|
||||
class="px-3 py-1.5 border border-neutral-300 rounded text-xs focus:outline-none focus:border-[#0F172A] bg-white"
|
||||
class="px-3 py-1 border border-neutral-300 rounded text-xs focus:outline-none focus:border-[#0F172A] bg-white leading-tight"
|
||||
/>
|
||||
<button
|
||||
type="submit"
|
||||
class="px-3 py-1.5 bg-[#0F172A] text-white rounded text-xs hover:bg-[#475569] transition-colors whitespace-nowrap"
|
||||
class="px-3 py-1 bg-[#0F172A] text-white rounded text-xs hover:bg-[#475569] transition-colors whitespace-nowrap leading-tight"
|
||||
>
|
||||
s'abonner
|
||||
</button>
|
||||
@@ -33,7 +35,7 @@
|
||||
</div>
|
||||
|
||||
<!-- ZONE DROITE : logos RS cliquables (SVG inline, fill #0F172A 60%) -->
|
||||
<!-- V1.3-F : gap-4 mobile / gap-6 desktop pour espacer les logos -->
|
||||
<!-- V1.3-F : gap-4 mobile / gap-6 desktop pour espacer les logos. V1.4-F : items-center force baseline. -->
|
||||
<div class="flex gap-4 md:gap-6 items-center justify-center md:justify-end text-[#0F172A]">
|
||||
<!-- Instagram -->
|
||||
<a
|
||||
|
||||
@@ -404,12 +404,14 @@ function render() {
|
||||
return -220
|
||||
}))
|
||||
.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
||||
.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.05))
|
||||
.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
|
||||
// V1.4-C1 : rappel horizontal/vertical renforce (0.05 -> 0.08) + collide +14 (vs +12)
|
||||
// pour mieux contenir les nodes dans le cadre visible de la zone Carte O.
|
||||
.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.08))
|
||||
.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.08))
|
||||
.force('collide', d3.forceCollide<SimNode>().radius(d => {
|
||||
// V1.3-D : central traite comme zone large (rect 300x64 -> rayon equivalent 160)
|
||||
if (d.niveau === 0) return CENTRAL_COLLIDE_RADIUS
|
||||
return getRadius(d) + 12
|
||||
return getRadius(d) + 14
|
||||
}))
|
||||
.alphaDecay(0.025)
|
||||
.velocityDecay(0.4)
|
||||
@@ -476,8 +478,9 @@ onMounted(() => {
|
||||
}
|
||||
if (simulation) {
|
||||
simulation.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
||||
simulation.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.05))
|
||||
simulation.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
|
||||
// V1.4-C1 : aligne avec la simulation initiale (strength 0.08)
|
||||
simulation.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.08))
|
||||
simulation.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.08))
|
||||
simulation.alpha(0.3).restart()
|
||||
}
|
||||
})
|
||||
|
||||
@@ -112,6 +112,7 @@ const formatDate = (iso: string) => {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Transition name="preview-fade">
|
||||
<div v-if="mode" class="preview-article border border-neutral-200 rounded overflow-hidden bg-white flex flex-col">
|
||||
|
||||
<!-- Header : reset + label (hashtag article OU "Manifeste") -->
|
||||
@@ -199,4 +200,21 @@ const formatDate = (iso: string) => {
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</Transition>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
/* V1.4-E2 : animation legere ouverture/fermeture preview (fade + slide-up subtil) */
|
||||
.preview-fade-enter-active,
|
||||
.preview-fade-leave-active {
|
||||
transition: opacity 0.25s ease, transform 0.25s ease;
|
||||
}
|
||||
.preview-fade-enter-from {
|
||||
opacity: 0;
|
||||
transform: translateY(8px);
|
||||
}
|
||||
.preview-fade-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateY(4px);
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -15,39 +15,43 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
||||
<MobileTabBar />
|
||||
<PopupOnboarding />
|
||||
|
||||
<!-- Desktop : grid 3 colonnes V1.3-F avec toggle replier latéraux.
|
||||
Layout dynamique pilote par CSS vars --col-left / --col-right (320px par defaut, 0 quand replie).
|
||||
Header et footer fixes (flex-shrink-0), pas de calc(100vh - X). -->
|
||||
<!-- Desktop : grid 3 colonnes V1.4-A avec toggle CACHER latéraux (bidirectionnel).
|
||||
Layout dynamique pilote par CSS vars --col-left / --col-right (320px visible, 0 cache).
|
||||
Aside cache via display:none ET width 0 → centre s'elargit pour occuper la place.
|
||||
Re-clic = bidirectionnel : col reapparait, centre se retracte. sessionStorage persist.
|
||||
Pas de full-screen lateral : juste cacher pour focus simple. -->
|
||||
<div
|
||||
id="desktop-grid"
|
||||
class="hidden md:grid h-full overflow-hidden relative"
|
||||
style="grid-template-columns: var(--col-left, 320px) 1fr var(--col-right, 320px);"
|
||||
>
|
||||
<aside id="col-left-aside" class="border-r border-neutral-200 overflow-y-auto h-full"><ColJournal /></aside>
|
||||
<aside id="col-left-aside" class="border-r border-neutral-200 overflow-hidden h-full"><div class="h-full overflow-y-auto"><ColJournal /></div></aside>
|
||||
<main class="overflow-hidden h-full relative">
|
||||
<ColCentre />
|
||||
<!-- Toggle gauche : pose sur le bord gauche de la colonne centrale -->
|
||||
<!-- Toggle gauche : pose sur le bord gauche de la colonne centrale.
|
||||
Icone < quand col visible (clic = cacher) ; > quand col cachee (clic = rouvrir). -->
|
||||
<button
|
||||
type="button"
|
||||
id="toggle-col-left"
|
||||
aria-label="Replier/deplier colonne gauche"
|
||||
aria-label="Cacher/afficher colonne gauche"
|
||||
class="hidden md:flex absolute left-0 top-1/2 -translate-y-1/2 z-20 w-5 h-12 items-center justify-center bg-white border border-neutral-200 border-l-0 rounded-r text-neutral-500 hover:bg-neutral-50 hover:text-neutral-900 transition-colors cursor-pointer"
|
||||
style="font-family:'Courier New',Courier,monospace;font-size:14px;line-height:1;"
|
||||
>
|
||||
<span id="toggle-col-left-icon">‹</span>
|
||||
</button>
|
||||
<!-- Toggle droite : pose sur le bord droit de la colonne centrale -->
|
||||
<!-- Toggle droite : pose sur le bord droit de la colonne centrale.
|
||||
Icone > quand col visible (clic = cacher) ; < quand col cachee (clic = rouvrir). -->
|
||||
<button
|
||||
type="button"
|
||||
id="toggle-col-right"
|
||||
aria-label="Replier/deplier colonne droite"
|
||||
aria-label="Cacher/afficher colonne droite"
|
||||
class="hidden md:flex absolute right-0 top-1/2 -translate-y-1/2 z-20 w-5 h-12 items-center justify-center bg-white border border-neutral-200 border-r-0 rounded-l text-neutral-500 hover:bg-neutral-50 hover:text-neutral-900 transition-colors cursor-pointer"
|
||||
style="font-family:'Courier New',Courier,monospace;font-size:14px;line-height:1;"
|
||||
>
|
||||
<span id="toggle-col-right-icon">›</span>
|
||||
</button>
|
||||
</main>
|
||||
<aside id="col-right-aside" class="border-l border-neutral-200 overflow-y-auto h-full"><ColInsta /></aside>
|
||||
<aside id="col-right-aside" class="border-l border-neutral-200 overflow-hidden h-full"><div class="h-full overflow-y-auto"><ColInsta /></div></aside>
|
||||
</div>
|
||||
|
||||
<!-- Mobile : SwipeContainer Vue island - tabbar 44px reserve dans la zone flex-1 -->
|
||||
@@ -60,8 +64,10 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// V1.3-F : toggle replier/deplier colonnes laterales desktop.
|
||||
// Etat persiste en sessionStorage. Quand replie : col = 0px, aside cache, ColCentre s'etend.
|
||||
// V1.4-A : toggle CACHER colonnes laterales (bidirectionnel, focus simple).
|
||||
// - Clic bouton gauche / droite -> cache la col concernee (width 0 + display:none).
|
||||
// - Re-clic -> re-affiche. ColCentre s'elargit ou se retracte selon le grid recalcul.
|
||||
// - Etat persiste en sessionStorage (survit aux refresh dans la meme tab).
|
||||
const KEY_LEFT = 'tf-col-left-collapsed';
|
||||
const KEY_RIGHT = 'tf-col-right-collapsed';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user