Compare commits
4 Commits
feat/v14-a
...
feat/v14-b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dbba7dee3a | ||
|
|
3baeb0378c | ||
|
|
6db93d9c5a | ||
|
|
5a628fd85b |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "1.1",
|
"version": "1.1",
|
||||||
"generatedAt": "2026-05-11T18:07:36.883Z",
|
"generatedAt": "2026-05-11T22:48:32.388Z",
|
||||||
"nodes": [
|
"nodes": [
|
||||||
{
|
{
|
||||||
"id": "contrat-social-medecine-corps-social",
|
"id": "contrat-social-medecine-corps-social",
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
// MILIEU : preview article (V1.2-P) - inseree au clic journal-item-click.
|
// MILIEU : preview article (V1.2-P) - inseree au clic journal-item-click.
|
||||||
// BAS : iframe carte AEP (toujours visible).
|
// BAS : iframe carte AEP (toujours visible).
|
||||||
// V1.3-D : ChatbotV2 retire du DOM (backlog V2). Pour reactivation -> reintroduire le tab + panel.
|
// 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 CarteOWrapper from '../vue/CarteOWrapper.vue';
|
||||||
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
||||||
import PreviewArticle from '../vue/PreviewArticle.vue';
|
import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||||
@@ -19,11 +20,13 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
data-preview-open="false"
|
data-preview-open="false"
|
||||||
style="height: 100%; overflow-y: hidden;"
|
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
|
<section
|
||||||
id="col-centre-haut"
|
id="col-centre-haut"
|
||||||
class="border border-neutral-200 rounded flex flex-col overflow-hidden bg-white"
|
class="rounded flex flex-col overflow-hidden bg-white"
|
||||||
style="min-height: 0; flex: 1 1 33%;"
|
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) -->
|
<!-- V1.3-D : bandeau header (titre gauche + legende droite) -->
|
||||||
<header
|
<header
|
||||||
@@ -33,6 +36,7 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
<span class="text-xs truncate" style="color: #475569;">
|
<span class="text-xs truncate" style="color: #475569;">
|
||||||
Sommaire éditorial d'architecture d'écologie politique
|
Sommaire éditorial d'architecture d'écologie politique
|
||||||
</span>
|
</span>
|
||||||
|
<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">
|
<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">
|
<li class="flex items-center gap-1.5">
|
||||||
<span
|
<span
|
||||||
@@ -56,9 +60,21 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
<span>projet</span>
|
<span>projet</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</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>
|
</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">
|
<div id="panel-mindmap" class="absolute inset-0">
|
||||||
<CarteOWrapper client:visible />
|
<CarteOWrapper client:visible />
|
||||||
</div>
|
</div>
|
||||||
@@ -86,16 +102,23 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
|
|
||||||
<!-- MILIEU (V1.2-P) : preview article inseree entre Carte O et iframe AEP.
|
<!-- MILIEU (V1.2-P) : preview article inseree entre Carte O et iframe AEP.
|
||||||
Pas de border ici - PreviewArticle.vue gere son propre conteneur.
|
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.
|
||||||
<div id="col-centre-preview-slot" class="shrink-0" style="display: contents;">
|
V1.4-E1 : client:load (vs client:visible) pour garantir hydration immediate des listeners
|
||||||
<PreviewArticle client:visible />
|
'preview-open' / 'journal-item-click' (le v-if rendait l'observer aveugle).
|
||||||
|
V1.4-bis FIX 3 : le wrapper en display:contents masquait l'astro-island au flex layout.
|
||||||
|
On passe en flex container explicite (column) + l'astro-island prend display:block.
|
||||||
|
Quand mode=null, PreviewArticle renvoie rien → le slot ne prend pas de hauteur.
|
||||||
|
Quand mode=manifeste/article, le slot grandit pour contenir la preview. -->
|
||||||
|
<div id="col-centre-preview-slot" class="shrink-0 flex flex-col">
|
||||||
|
<PreviewArticle client:load />
|
||||||
</div>
|
</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
|
<section
|
||||||
id="col-centre-bas"
|
id="col-centre-bas"
|
||||||
class="border border-neutral-200 rounded overflow-hidden bg-white"
|
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]">
|
<div class="h-full min-h-[60vh] md:min-h-[400px]">
|
||||||
<EmbedDynamique client:visible />
|
<EmbedDynamique client:visible />
|
||||||
@@ -103,12 +126,45 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
/* V1.4-bis FIX 3 : force l'astro-island a se comporter comme block dans le slot preview,
|
||||||
|
sinon le default inline empeche le contenu Vue (border + bg) de se rendre correctement
|
||||||
|
dans le flex column de la col centre. */
|
||||||
|
#col-centre-preview-slot > astro-island {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
/* V1.4-bis FIX 4 : scrollbar visible sur la col centre quand preview ouverte
|
||||||
|
(overflow:auto au lieu de natif fin qui se cache). Style WebKit + Firefox. */
|
||||||
|
#col-centre-grid[data-preview-open="true"] {
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: #94A3B8 #FAFAF7;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar-track {
|
||||||
|
background: #FAFAF7;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar-thumb {
|
||||||
|
background: #94A3B8;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 2px solid #FAFAF7;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #64748B;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<script>
|
<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 grid = document.getElementById('col-centre-grid');
|
||||||
const haut = document.getElementById('col-centre-haut');
|
const haut = document.getElementById('col-centre-haut');
|
||||||
const bas = document.getElementById('col-centre-bas');
|
const bas = document.getElementById('col-centre-bas');
|
||||||
const poignee = document.getElementById('col-centre-poignee');
|
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
|
// Sauvegarde flex-basis defaults pour restaure apres fermeture preview
|
||||||
let defaultHautFlex = '1 1 33%';
|
let defaultHautFlex = '1 1 33%';
|
||||||
@@ -140,6 +196,44 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
applyRepliState(next);
|
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.
|
// V1.2-P : preview ouverte = container scrollable, Carte O et iframe AEP figes en vh.
|
||||||
const applyPreviewState = (open: boolean) => {
|
const applyPreviewState = (open: boolean) => {
|
||||||
if (!grid || !haut || !bas) return;
|
if (!grid || !haut || !bas) return;
|
||||||
@@ -196,19 +290,37 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
let startHautH = 0;
|
let startHautH = 0;
|
||||||
let containerH = 0;
|
let containerH = 0;
|
||||||
|
|
||||||
|
// V1.4-bis FIX 1 : overlay full-screen pendant drag.
|
||||||
|
// ROOT CAUSE : l'iframe AEP (EmbedDynamique) capture les pointer events des qu'on
|
||||||
|
// depasse sa zone — mouseup tombe dans l'iframe et n'arrive jamais au parent window.
|
||||||
|
// SOLUTION : creer un <div fixed inset-0 z-9998> AU MOMENT DU mousedown, qui
|
||||||
|
// intercepte tous les events (mousemove + mouseup) pendant le drag. Au mouseup,
|
||||||
|
// on retire l'overlay. Garantie : peu importe ce qu'il y a en dessous (iframe,
|
||||||
|
// Vue island, browser chrome), l'overlay capte la fin du drag.
|
||||||
|
const overlayDuringDrag = document.createElement('div');
|
||||||
|
overlayDuringDrag.style.cssText = 'position:fixed;inset:0;z-index:9998;cursor:row-resize;display:none;background:transparent;';
|
||||||
|
overlayDuringDrag.setAttribute('aria-hidden', 'true');
|
||||||
|
document.body.appendChild(overlayDuringDrag);
|
||||||
|
|
||||||
dragHandle.addEventListener('mousedown', (e: MouseEvent) => {
|
dragHandle.addEventListener('mousedown', (e: MouseEvent) => {
|
||||||
if (grid.dataset.previewOpen === 'true') return;
|
if (grid.dataset.previewOpen === 'true') return;
|
||||||
if (sessionStorage.getItem('tf-haut-replie') === 'true') return;
|
if (sessionStorage.getItem('tf-haut-replie') === 'true') return;
|
||||||
|
if (sessionStorage.getItem('tf-carte-o-collapsed') === 'true') return;
|
||||||
isDragging = true;
|
isDragging = true;
|
||||||
startY = e.clientY;
|
startY = e.clientY;
|
||||||
startHautH = haut.getBoundingClientRect().height;
|
startHautH = haut.getBoundingClientRect().height;
|
||||||
containerH = grid.getBoundingClientRect().height;
|
containerH = grid.getBoundingClientRect().height;
|
||||||
document.body.style.cursor = 'row-resize';
|
document.body.style.cursor = 'row-resize';
|
||||||
document.body.style.userSelect = 'none';
|
document.body.style.userSelect = 'none';
|
||||||
|
// Suspend transitions pendant drag pour responsivite
|
||||||
|
haut.style.transition = 'none';
|
||||||
|
bas.style.transition = 'none';
|
||||||
|
// Active l'overlay : capture tous les events tant qu'on draggue
|
||||||
|
overlayDuringDrag.style.display = 'block';
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
document.addEventListener('mousemove', (e: MouseEvent) => {
|
const onMouseMove = (e: MouseEvent) => {
|
||||||
if (!isDragging) return;
|
if (!isDragging) return;
|
||||||
const delta = e.clientY - startY;
|
const delta = e.clientY - startY;
|
||||||
const newHautH = Math.min(Math.max(startHautH + delta, containerH * 0.2), containerH * 0.8);
|
const newHautH = Math.min(Math.max(startHautH + delta, containerH * 0.2), containerH * 0.8);
|
||||||
@@ -216,13 +328,18 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
const basPct = 100 - hautPct;
|
const basPct = 100 - hautPct;
|
||||||
haut.style.flex = `1 1 ${hautPct.toFixed(1)}%`;
|
haut.style.flex = `1 1 ${hautPct.toFixed(1)}%`;
|
||||||
bas.style.flex = `1 1 ${basPct.toFixed(1)}%`;
|
bas.style.flex = `1 1 ${basPct.toFixed(1)}%`;
|
||||||
});
|
};
|
||||||
|
|
||||||
document.addEventListener('mouseup', () => {
|
const stopDrag = () => {
|
||||||
if (isDragging) {
|
if (!isDragging) return;
|
||||||
isDragging = false;
|
isDragging = false;
|
||||||
|
// Retire l'overlay (rend le reste de la page de nouveau interactif)
|
||||||
|
overlayDuringDrag.style.display = 'none';
|
||||||
document.body.style.cursor = '';
|
document.body.style.cursor = '';
|
||||||
document.body.style.userSelect = '';
|
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 hf = haut.style.flex;
|
||||||
const bf = bas.style.flex;
|
const bf = bas.style.flex;
|
||||||
if (hf) {
|
if (hf) {
|
||||||
@@ -233,7 +350,20 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
sessionStorage.setItem('tf-centre-bas-flex', bf);
|
sessionStorage.setItem('tf-centre-bas-flex', bf);
|
||||||
defaultBasFlex = bf;
|
defaultBasFlex = bf;
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
|
// V1.4-bis : ecoute mousemove + mouseup SUR L'OVERLAY (le plus haut z-index garantit capture).
|
||||||
|
overlayDuringDrag.addEventListener('mousemove', onMouseMove);
|
||||||
|
overlayDuringDrag.addEventListener('mouseup', stopDrag);
|
||||||
|
overlayDuringDrag.addEventListener('pointerup', stopDrag);
|
||||||
|
overlayDuringDrag.addEventListener('mouseleave', stopDrag);
|
||||||
|
// Backup window listeners (pour le cas tres rare ou l'overlay n'aurait pas pris le focus)
|
||||||
|
window.addEventListener('mouseup', stopDrag);
|
||||||
|
window.addEventListener('pointerup', stopDrag);
|
||||||
|
window.addEventListener('blur', stopDrag);
|
||||||
|
// Si la souris revient dans la fenetre sans bouton enfonce, on stoppe
|
||||||
|
window.addEventListener('mouseenter', (e: MouseEvent) => {
|
||||||
|
if (isDragging && e.buttons === 0) stopDrag();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Restaurer position depuis sessionStorage
|
// Restaurer position depuis sessionStorage
|
||||||
|
|||||||
@@ -1,13 +1,16 @@
|
|||||||
---
|
---
|
||||||
import JournalList from '../vue/JournalList.vue';
|
import JournalList from '../vue/JournalList.vue';
|
||||||
|
|
||||||
// V1.4-B : pill inactive en transparent (revert pastels V1.3-F).
|
// V1.4-bis FIX 5 : couleurs pills actives attenuees (60% color + 40% papier).
|
||||||
// Active = fill couleur 100% + texte blanc. Inactive = transparent + border + texte couleur 100%.
|
// Active = fill couleur ATTENUEE (muted) + texte encre #0F172A (contraste WCAG ≥4.5:1).
|
||||||
|
// Inactive = transparent + border + texte couleur 100% (inchange).
|
||||||
|
// Mix 60/40 : moins agressif que 100% mais reste lisible (vs 30/70 pastels V1.3 trop dilues).
|
||||||
const categories = [
|
const categories = [
|
||||||
{
|
{
|
||||||
id: 'politique',
|
id: 'politique',
|
||||||
label: 'Politique',
|
label: 'Politique',
|
||||||
color: '#B5443A',
|
color: '#B5443A',
|
||||||
|
muted: '#C8867E',
|
||||||
pastel: '#E5C3BE',
|
pastel: '#E5C3BE',
|
||||||
hashtags: ['#politique', '#aep-politique'],
|
hashtags: ['#politique', '#aep-politique'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
@@ -21,6 +24,7 @@ const categories = [
|
|||||||
id: 'art',
|
id: 'art',
|
||||||
label: 'Art',
|
label: 'Art',
|
||||||
color: '#5B6B3A',
|
color: '#5B6B3A',
|
||||||
|
muted: '#8F9A78',
|
||||||
pastel: '#CACFBE',
|
pastel: '#CACFBE',
|
||||||
hashtags: ['#peinture', '#art'],
|
hashtags: ['#peinture', '#art'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
@@ -32,6 +36,7 @@ const categories = [
|
|||||||
id: 'outils',
|
id: 'outils',
|
||||||
label: 'Outils',
|
label: 'Outils',
|
||||||
color: '#475569',
|
color: '#475569',
|
||||||
|
muted: '#7B848E',
|
||||||
pastel: '#C4C8CC',
|
pastel: '#C4C8CC',
|
||||||
hashtags: ['#stack', '#building-public'],
|
hashtags: ['#stack', '#building-public'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
@@ -43,6 +48,7 @@ const categories = [
|
|||||||
id: 'pro',
|
id: 'pro',
|
||||||
label: 'Pro',
|
label: 'Pro',
|
||||||
color: '#0F172A',
|
color: '#0F172A',
|
||||||
|
muted: '#566375',
|
||||||
pastel: '#C4C8CC',
|
pastel: '#C4C8CC',
|
||||||
hashtags: ['#building-public', '#pro'],
|
hashtags: ['#building-public', '#pro'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
@@ -68,10 +74,11 @@ const categories = [
|
|||||||
data-category-id={cat.id}
|
data-category-id={cat.id}
|
||||||
data-hashtags={cat.hashtags.join(',')}
|
data-hashtags={cat.hashtags.join(',')}
|
||||||
data-color={cat.color}
|
data-color={cat.color}
|
||||||
|
data-muted={cat.muted}
|
||||||
data-pastel={cat.pastel}
|
data-pastel={cat.pastel}
|
||||||
data-has-selector={cat.hasSelector ? 'true' : 'false'}
|
data-has-selector={cat.hasSelector ? 'true' : 'false'}
|
||||||
class="category-badge"
|
class="category-badge"
|
||||||
style={`background:${cat.color};color:#fff;font-family:'Courier New',Courier,monospace;font-size:13px;padding:3px 10px;border-radius:4px;cursor:pointer;border:1px solid ${cat.color};`}
|
style={`background:${cat.muted};color:#0F172A;font-family:'Courier New',Courier,monospace;font-size:13px;padding:3px 10px;border-radius:4px;cursor:pointer;border:1px solid ${cat.muted};`}
|
||||||
>
|
>
|
||||||
{cat.label}
|
{cat.label}
|
||||||
</button>
|
</button>
|
||||||
@@ -210,15 +217,17 @@ const categories = [
|
|||||||
window.dispatchEvent(new CustomEvent('platform-filter-change', { detail: { platform } }));
|
window.dispatchEvent(new CustomEvent('platform-filter-change', { detail: { platform } }));
|
||||||
};
|
};
|
||||||
|
|
||||||
// V1.4-B : revert pastels — pill inactive en transparent (papier visible).
|
// V1.4-bis FIX 5 : pill active en couleur ATTENUEE (data-muted) + texte encre #0F172A.
|
||||||
// Active = fill couleur 100% + texte blanc.
|
// Inactive : transparent + texte couleur 100% + border couleur 100% (inchange).
|
||||||
// Inactive = transparent + texte couleur 100% + border couleur 100%.
|
// Pourquoi encre #0F172A au lieu de blanc : sur fond attenue (#C8867E etc.), le ratio
|
||||||
|
// contraste blanc tombe ~3.5:1 (limite). Encre #0F172A donne ratio ≥6:1 sur tous les muted.
|
||||||
const updateBadgeStyle = (btn: HTMLElement, active: boolean) => {
|
const updateBadgeStyle = (btn: HTMLElement, active: boolean) => {
|
||||||
const color = btn.dataset.color || '#000';
|
const color = btn.dataset.color || '#000';
|
||||||
|
const muted = btn.dataset.muted || color;
|
||||||
if (active) {
|
if (active) {
|
||||||
btn.style.background = color;
|
btn.style.background = muted;
|
||||||
btn.style.color = '#fff';
|
btn.style.color = '#0F172A';
|
||||||
btn.style.border = `1px solid ${color}`;
|
btn.style.border = `1px solid ${muted}`;
|
||||||
} else {
|
} else {
|
||||||
btn.style.background = 'transparent';
|
btn.style.background = 'transparent';
|
||||||
btn.style.color = color;
|
btn.style.color = color;
|
||||||
@@ -238,17 +247,17 @@ const categories = [
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// V1.4-B : sub-pills Politique, transparent au lieu de pastel.
|
// V1.4-bis FIX 5 : sub-pills Politique, active en brique ATTENUEE #C8867E + encre.
|
||||||
// Active (ou aucun filtre) = fill brique #B5443A + texte blanc.
|
// Active (ou aucun filtre) = fill #C8867E + texte encre #0F172A.
|
||||||
// Inactive = transparent + texte brique + border brique 100%.
|
// Inactive = transparent + texte brique 100% + border brique 100%.
|
||||||
const updatePillStyles = () => {
|
const updatePillStyles = () => {
|
||||||
const pills = document.querySelectorAll<HTMLElement>('.platform-pill');
|
const pills = document.querySelectorAll<HTMLElement>('.platform-pill');
|
||||||
const active = platformFilters['politique'];
|
const active = platformFilters['politique'];
|
||||||
pills.forEach((pill) => {
|
pills.forEach((pill) => {
|
||||||
const pid = pill.dataset.platformId;
|
const pid = pill.dataset.platformId;
|
||||||
if (!active || pid === active) {
|
if (!active || pid === active) {
|
||||||
pill.style.background = '#B5443A';
|
pill.style.background = '#C8867E';
|
||||||
pill.style.color = '#fff';
|
pill.style.color = '#0F172A';
|
||||||
} else {
|
} else {
|
||||||
pill.style.background = 'transparent';
|
pill.style.background = 'transparent';
|
||||||
pill.style.color = '#B5443A';
|
pill.style.color = '#B5443A';
|
||||||
|
|||||||
@@ -37,16 +37,32 @@
|
|||||||
<!-- ZONE DROITE : logos RS cliquables (SVG inline, fill #0F172A 60%) -->
|
<!-- ZONE DROITE : logos RS cliquables (SVG inline, fill #0F172A 60%) -->
|
||||||
<!-- V1.3-F : gap-4 mobile / gap-6 desktop pour espacer les logos. V1.4-F : items-center force baseline. -->
|
<!-- 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]">
|
<div class="flex gap-4 md:gap-6 items-center justify-center md:justify-end text-[#0F172A]">
|
||||||
<!-- Instagram -->
|
<!-- V1.4-bis FIX 6 : Instagram x2 (AEP politique + Jules perso) avec aria-labels distincts.
|
||||||
|
V1.4-bis FIX 7 : SVG simplifie (camera carree avec coins arrondis, lentille, point flash) — rendu propre net. -->
|
||||||
<a
|
<a
|
||||||
href="https://www.instagram.com/aep.politique/"
|
href="https://www.instagram.com/aep.politique/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
aria-label="Instagram @aep.politique"
|
aria-label="Instagram @aep.politique"
|
||||||
|
title="@aep.politique"
|
||||||
class="opacity-60 hover:opacity-100 transition-opacity"
|
class="opacity-60 hover:opacity-100 transition-opacity"
|
||||||
>
|
>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
|
||||||
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 1.366.062 2.633.336 3.608 1.311.975.975 1.249 2.242 1.311 3.608.058 1.266.069 1.646.069 4.85s-.012 3.584-.07 4.85c-.062 1.366-.336 2.633-1.311 3.608-.975.975-2.242 1.249-3.608 1.311-1.266.058-1.646.07-4.85.07s-3.584-.012-4.85-.07c-1.366-.062-2.633-.336-3.608-1.311-.975-.975-1.249-2.242-1.311-3.608C2.175 15.647 2.163 15.267 2.163 12s.012-3.584.07-4.85c.062-1.366.336-2.633 1.311-3.608.975-.975 2.242-1.249 3.608-1.311 1.266-.058 1.646-.07 4.85-.07zm0 1.838c-3.15 0-3.522.012-4.766.069-1.024.047-1.58.218-1.95.362-.49.19-.84.418-1.207.786-.367.367-.595.717-.786 1.207-.144.37-.315.926-.362 1.95-.057 1.244-.069 1.616-.069 4.766s.012 3.522.069 4.766c.047 1.024.218 1.58.362 1.95.19.49.418.84.786 1.207.367.367.717.595 1.207.786.37.144.926.315 1.95.362 1.244.057 1.616.069 4.766.069s3.522-.012 4.766-.069c1.024-.047 1.58-.218 1.95-.362.49-.19.84-.418 1.207-.786.367-.367.595-.717.786-1.207.144-.37.315-.926.362-1.95.057-1.244.069-1.616.069-4.766s-.012-3.522-.069-4.766c-.047-1.024-.218-1.58-.362-1.95-.19-.49-.418-.84-.786-1.207-.367-.367-.717-.595-1.207-.786-.37-.144-.926-.315-1.95-.362C15.522 4.013 15.15 4.001 12 4.001zm0 3.135a4.864 4.864 0 110 9.728 4.864 4.864 0 010-9.728zm0 8.027a3.162 3.162 0 100-6.325 3.162 3.162 0 000 6.325zm6.187-8.249a1.137 1.137 0 11-2.275 0 1.137 1.137 0 012.275 0z"/>
|
<path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<!-- Instagram @julesneny (compte perso/art) -->
|
||||||
|
<a
|
||||||
|
href="https://www.instagram.com/julesneny/"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
aria-label="Instagram @julesneny"
|
||||||
|
title="@julesneny"
|
||||||
|
class="opacity-60 hover:opacity-100 transition-opacity"
|
||||||
|
>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
|
||||||
|
<path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/>
|
||||||
</svg>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|||||||
@@ -404,12 +404,14 @@ function render() {
|
|||||||
return -220
|
return -220
|
||||||
}))
|
}))
|
||||||
.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
||||||
.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.05))
|
// V1.4-C1 : rappel horizontal/vertical renforce (0.05 -> 0.08) + collide +14 (vs +12)
|
||||||
.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
|
// 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 => {
|
.force('collide', d3.forceCollide<SimNode>().radius(d => {
|
||||||
// V1.3-D : central traite comme zone large (rect 300x64 -> rayon equivalent 160)
|
// V1.3-D : central traite comme zone large (rect 300x64 -> rayon equivalent 160)
|
||||||
if (d.niveau === 0) return CENTRAL_COLLIDE_RADIUS
|
if (d.niveau === 0) return CENTRAL_COLLIDE_RADIUS
|
||||||
return getRadius(d) + 12
|
return getRadius(d) + 14
|
||||||
}))
|
}))
|
||||||
.alphaDecay(0.025)
|
.alphaDecay(0.025)
|
||||||
.velocityDecay(0.4)
|
.velocityDecay(0.4)
|
||||||
@@ -476,8 +478,9 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
if (simulation) {
|
if (simulation) {
|
||||||
simulation.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
simulation.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
||||||
simulation.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.05))
|
// V1.4-C1 : aligne avec la simulation initiale (strength 0.08)
|
||||||
simulation.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
|
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()
|
simulation.alpha(0.3).restart()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -112,6 +112,7 @@ const formatDate = (iso: string) => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<Transition name="preview-fade">
|
||||||
<div v-if="mode" class="preview-article border border-neutral-200 rounded overflow-hidden bg-white flex flex-col">
|
<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") -->
|
<!-- Header : reset + label (hashtag article OU "Manifeste") -->
|
||||||
@@ -199,4 +200,21 @@ const formatDate = (iso: string) => {
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
</Transition>
|
||||||
</template>
|
</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>
|
||||||
|
|||||||
@@ -17,16 +17,19 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
|||||||
|
|
||||||
<!-- Desktop : grid 3 colonnes V1.4-A avec toggle CACHER latéraux (bidirectionnel).
|
<!-- 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).
|
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.
|
Re-clic = bidirectionnel : col reapparait, centre se retracte. sessionStorage persist.
|
||||||
Pas de full-screen lateral : juste cacher pour focus simple. -->
|
V1.4-bis FIX 2 : suppression du couplage display:none + width:0 (conflit grid).
|
||||||
|
On utilise EXCLUSIVEMENT --col-left/--col-right (0px = aside disparait visuellement).
|
||||||
|
Le contenu de l'aside est cache via visibility hidden (preserve la place 0 sans bug grid).
|
||||||
|
Grid template utilise minmax(0,1fr) pour que la col centre ne s'effondre pas quand les
|
||||||
|
voisins sont a 0 (cas critique 2 togglees). -->
|
||||||
<div
|
<div
|
||||||
id="desktop-grid"
|
id="desktop-grid"
|
||||||
class="hidden md:grid h-full overflow-hidden relative"
|
class="hidden md:grid h-full overflow-hidden relative"
|
||||||
style="grid-template-columns: var(--col-left, 320px) 1fr var(--col-right, 320px);"
|
style="grid-template-columns: var(--col-left, 320px) minmax(0, 1fr) var(--col-right, 320px);"
|
||||||
>
|
>
|
||||||
<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>
|
<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">
|
<main class="overflow-hidden h-full relative" style="min-width: 0;">
|
||||||
<ColCentre />
|
<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). -->
|
Icone < quand col visible (clic = cacher) ; > quand col cachee (clic = rouvrir). -->
|
||||||
@@ -87,12 +90,25 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
|||||||
collapsedRight = sessionStorage.getItem(KEY_RIGHT) === '1';
|
collapsedRight = sessionStorage.getItem(KEY_RIGHT) === '1';
|
||||||
} catch { /* mode prive */ }
|
} catch { /* mode prive */ }
|
||||||
|
|
||||||
|
// V1.4-bis FIX 2 : UNE SEULE technique (CSS var width 0px) — pas de display:none
|
||||||
|
// qui creait un conflit grid : quand display:none + grid-column 0 cohabitent,
|
||||||
|
// certains navigateurs ne recalculent pas la col centre correctement → centre disparu.
|
||||||
|
// Maintenant : aside reste dans le flux avec width 0 (overflow hidden cache le contenu)
|
||||||
|
// + le contenu interne avec visibility hidden pour ne pas etre focusable au tab.
|
||||||
const apply = () => {
|
const apply = () => {
|
||||||
if (!grid) return;
|
if (!grid) return;
|
||||||
grid.style.setProperty('--col-left', collapsedLeft ? '0px' : '320px');
|
grid.style.setProperty('--col-left', collapsedLeft ? '0px' : '320px');
|
||||||
grid.style.setProperty('--col-right', collapsedRight ? '0px' : '320px');
|
grid.style.setProperty('--col-right', collapsedRight ? '0px' : '320px');
|
||||||
if (asideLeft) asideLeft.style.display = collapsedLeft ? 'none' : '';
|
// Aside reste en flux (display: '' par defaut) pour ne pas casser le grid template.
|
||||||
if (asideRight) asideRight.style.display = collapsedRight ? 'none' : '';
|
// Visibility hidden + tabindex -1 sur le contenu pour empecher interaction inutile.
|
||||||
|
if (asideLeft) {
|
||||||
|
asideLeft.style.visibility = collapsedLeft ? 'hidden' : '';
|
||||||
|
asideLeft.setAttribute('aria-hidden', collapsedLeft ? 'true' : 'false');
|
||||||
|
}
|
||||||
|
if (asideRight) {
|
||||||
|
asideRight.style.visibility = collapsedRight ? 'hidden' : '';
|
||||||
|
asideRight.setAttribute('aria-hidden', collapsedRight ? 'true' : 'false');
|
||||||
|
}
|
||||||
// Icones : pointe vers la direction d'ouverture (sens depliage).
|
// Icones : pointe vers la direction d'ouverture (sens depliage).
|
||||||
if (iconLeft) iconLeft.innerHTML = collapsedLeft ? '›' : '‹';
|
if (iconLeft) iconLeft.innerHTML = collapsedLeft ? '›' : '‹';
|
||||||
if (iconRight) iconRight.innerHTML = collapsedRight ? '‹' : '›';
|
if (iconRight) iconRight.innerHTML = collapsedRight ? '‹' : '›';
|
||||||
|
|||||||
Reference in New Issue
Block a user