7 Commits

Author SHA1 Message Date
Jules Neny
8e7125b426 merge(v13-d): Carte O Option B rectangle central + bandeau sommaire + legende + TMIP 2026-05-11 20:01:34 +02:00
Jules Neny
6b9f6bf751 merge(v13-c): header 1-line cliquables + phrase intention Roboto Condensed 2026-05-11 20:01:33 +02:00
Jules Neny
372cb62229 merge(v13-bg): layout 1 ecran fixe + Pro/LinkedIn + hamburger desktop hide 2026-05-11 20:01:33 +02:00
Jules Neny
8f8b0c5f4c feat(v13-d): Carte O Option B rectangle central + bandeau sommaire + legende + TMIP relie
- YAML carte-o-source : label central -> 'Une medecine du corps social pour
  ecrire un nouveau contrat social' (phrase pleine 3 lignes)
- YAML : projet TMIP gagne lien_central:true (edge explicite centre <-> projet)
- build-carte-o.js : addEdge accepte opts.central=true pour tagger les edges
  rattachees au noeud central (permet tuning force-link cote Vue)
- carte-o.json regenere : 17 nodes, 20 edges (vs 19 V1.2-O), tous les edges
  central->thematiques + central->tmip portent flag central:true
- CarteO.vue : noeud central rendu en RECT 300x64 fill encre (vs cercle r30),
  label blanc multi-tspan 3 lignes 13px font-weight 500 line-height 1.35
- CarteO.vue : splitCentralLabel reecrit pour wrap intelligent (3 lignes
  ~30 chars), preserve compat ' + ' (V1.2)
- CarteO.vue : force tuning V1.3 -> alphaDecay 0.025, velocityDecay 0.4,
  forceCollide +12 (CENTRAL_COLLIDE_RADIUS=160 pour le rect), forceX/Y
  strength 0.05 rappel cadre, link distance/strength differencies
  (central->projet = 90/0.6, central->essai = 200/0.3)
- CarteO.vue : hover handler selector etendu rect|circle
- CarteOWrapper.vue : CarteEdge gagne champ central?:boolean
- ColCentre.astro : tabs Chatbot retires (ChatbotV2 import retire aussi),
  remplaces par header bandeau 'Sommaire editorial d'architecture
  d'ecologie politique' (gauche, monospace 12px) + legende 3 symboles
  (publie ● / a venir ○ / projet 🟠) en droite

Build SSR : 5 pages prerender, 0 warning, 4.35s.
2026-05-11 20:00:30 +02:00
Jules Neny
aa410ce7aa feat(v13-bg): layout 1 ecran fixe + hamburger desktop hide + categorie Pro 2026-05-11 20:00:16 +02:00
Jules Neny
e90a7e12ef feat(v13-c): header 1-line cliquables + phrase intention Roboto Condensed 2026-05-11 19:58:07 +02:00
Jules Neny
e43ec60ecf merge(v13-p0): iframe AEP skeleton timeout fallback fix loading stuck 2026-05-11 19:53:54 +02:00
17 changed files with 294 additions and 169 deletions

10
package-lock.json generated
View File

@@ -10,6 +10,7 @@
"dependencies": { "dependencies": {
"@astrojs/node": "^10.1.0", "@astrojs/node": "^10.1.0",
"@astrojs/vue": "^6.0.1", "@astrojs/vue": "^6.0.1",
"@fontsource-variable/roboto-condensed": "^5.2.8",
"@tailwindcss/vite": "^4.2.4", "@tailwindcss/vite": "^4.2.4",
"@types/d3": "^7.4.3", "@types/d3": "^7.4.3",
"astro": "^6.3.1", "astro": "^6.3.1",
@@ -1064,6 +1065,15 @@
"node": ">=18" "node": ">=18"
} }
}, },
"node_modules/@fontsource-variable/roboto-condensed": {
"version": "5.2.8",
"resolved": "https://registry.npmjs.org/@fontsource-variable/roboto-condensed/-/roboto-condensed-5.2.8.tgz",
"integrity": "sha512-aIZ2kYSoJHkTI4z8x/PRgKX6Zb9TTtSE/u+fUYeiwL+5trP9rhYYEEeNjRttaMqRgoDHcSueArdRZ43wf/i2Kw==",
"license": "OFL-1.1",
"funding": {
"url": "https://github.com/sponsors/ayuhito"
}
},
"node_modules/@img/colour": { "node_modules/@img/colour": {
"version": "1.1.0", "version": "1.1.0",
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",

View File

@@ -17,6 +17,7 @@
"dependencies": { "dependencies": {
"@astrojs/node": "^10.1.0", "@astrojs/node": "^10.1.0",
"@astrojs/vue": "^6.0.1", "@astrojs/vue": "^6.0.1",
"@fontsource-variable/roboto-condensed": "^5.2.8",
"@tailwindcss/vite": "^4.2.4", "@tailwindcss/vite": "^4.2.4",
"@types/d3": "^7.4.3", "@types/d3": "^7.4.3",
"astro": "^6.3.1", "astro": "^6.3.1",

View File

@@ -12,7 +12,7 @@ version: "1.1"
centre: centre:
id: "contrat-social-medecine-corps-social" id: "contrat-social-medecine-corps-social"
label: "Contrat social + Medecine du corps social" label: "Une medecine du corps social pour ecrire un nouveau contrat social"
niveau: 0 niveau: 0
nature: essai nature: essai
statut: gestation statut: gestation
@@ -119,6 +119,8 @@ projets:
nature: projet nature: projet
statut: gestation statut: gestation
resume: "Transport, mobilite, industrie, politique - projet archi. Exemple de projet archi relie aux thematiques AEP." resume: "Transport, mobilite, industrie, politique - projet archi. Exemple de projet archi relie aux thematiques AEP."
# V1.3-D : lien explicite au noeud central (pont vision <-> pratique)
lien_central: true
liens_thematiques: liens_thematiques:
- "urbanisme" - "urbanisme"
- "justice-securite" - "justice-securite"

View File

@@ -1,10 +1,10 @@
{ {
"version": "1.1", "version": "1.1",
"generatedAt": "2026-05-11T16:47:45.459Z", "generatedAt": "2026-05-11T17:59:41.381Z",
"nodes": [ "nodes": [
{ {
"id": "contrat-social-medecine-corps-social", "id": "contrat-social-medecine-corps-social",
"label": "Contrat social + Medecine du corps social", "label": "Une medecine du corps social pour ecrire un nouveau contrat social",
"niveau": 0, "niveau": 0,
"nature": "essai", "nature": "essai",
"statut": "gestation", "statut": "gestation",
@@ -191,63 +191,83 @@
"edges": [ "edges": [
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "systemique" "target": "systemique",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "pratiques-collectives" "target": "pratiques-collectives",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "art-narration" "target": "art-narration",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "pouvoir-domination" "target": "pouvoir-domination",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "medias-critique" "target": "medias-critique",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "justice-securite" "target": "justice-securite",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "sante-globale" "target": "sante-globale",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "agriculture" "target": "agriculture",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "post-croissance" "target": "post-croissance",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "anthropocene" "target": "anthropocene",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "education" "target": "education",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "urbanisme" "target": "urbanisme",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "geopolitique" "target": "geopolitique",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "ia-technologie" "target": "ia-technologie",
"central": true
}, },
{ {
"source": "contrat-social-medecine-corps-social", "source": "contrat-social-medecine-corps-social",
"target": "spiritualite" "target": "spiritualite",
"central": true
},
{
"source": "contrat-social-medecine-corps-social",
"target": "tmip",
"central": true
}, },
{ {
"source": "tmip", "source": "tmip",

View File

@@ -35,11 +35,15 @@ async function main() {
const edges = [] const edges = []
const edgeSet = new Set() const edgeSet = new Set()
function addEdge(source, target) { function addEdge(source, target, opts = {}) {
const key = source < target ? `${source}|${target}` : `${target}|${source}` const key = source < target ? `${source}|${target}` : `${target}|${source}`
if (edgeSet.has(key)) return if (edgeSet.has(key)) return
edgeSet.add(key) edgeSet.add(key)
edges.push({ source, target }) const edge = { source, target }
// V1.3-D : tag les edges au noeud central pour permettre tuning force-link
// (TMIP relie au centre = link court/fort, autres essais = link standard)
if (opts.central) edge.central = true
edges.push(edge)
} }
function addNode(obj) { function addNode(obj) {
@@ -70,11 +74,15 @@ async function main() {
// toutes les thematiques rattachees directement au noeud central // toutes les thematiques rattachees directement au noeud central
for (const th of data.thematiques) { for (const th of data.thematiques) {
addNode(th) addNode(th)
addEdge(centreId, th.id) addEdge(centreId, th.id, { central: true })
} }
for (const proj of data.projets) { for (const proj of data.projets) {
addNode(proj) addNode(proj)
// V1.3-D : edge explicite projet -> central (pont vision <-> pratique)
if (proj.lien_central) {
addEdge(centreId, proj.id, { central: true })
}
for (const thId of (proj.liens_thematiques || [])) { for (const thId of (proj.liens_thematiques || [])) {
addEdge(proj.id, thId) addEdge(proj.id, thId)
} }

View File

@@ -1,9 +1,9 @@
--- ---
// Centre - HAUT : tabs (Carte O mindmap | Chatbot RAG branche PC7). // Centre - HAUT : Carte O mindmap (V1.3-D : onglet Chatbot retire, bandeau "Sommaire editorial" + legende).
// 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.
import CarteOWrapper from '../vue/CarteOWrapper.vue'; import CarteOWrapper from '../vue/CarteOWrapper.vue';
import ChatbotV2 from '../vue/ChatbotV2.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,56 +19,49 @@ 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%) : tabs Carte O / Chatbot --> <!-- HAUT (default flex-1 base 33%) : V1.3-D bandeau "Sommaire editorial" + legende + Carte O plein espace -->
<section <section
id="col-centre-haut" id="col-centre-haut"
class="border border-neutral-200 rounded flex flex-col overflow-hidden bg-white" class="border border-neutral-200 rounded flex flex-col overflow-hidden bg-white"
style="min-height: 0; flex: 1 1 33%;" style="min-height: 0; flex: 1 1 33%;"
> >
<nav role="tablist" aria-label="Vues centrales" class="flex border-b border-neutral-200 px-1 pt-1"> <!-- V1.3-D : bandeau header (titre gauche + legende droite) -->
<button <header
type="button" class="flex items-center justify-between gap-3 px-3 py-2 border-b border-neutral-200 shrink-0"
role="tab" style="font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;"
id="tab-mindmap" >
aria-controls="panel-mindmap" <span class="text-xs truncate" style="color: #475569;">
aria-selected="true" Sommaire éditorial d'architecture d'écologie politique
data-tab="mindmap" </span>
class="tab-btn px-3 py-2 text-sm border-b-2 border-neutral-900 font-medium text-neutral-900" <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">
Carte O <span
</button> aria-hidden="true"
<button style="width: 8px; height: 8px; border-radius: 999px; background: #0F172A; display: inline-block;"
type="button" ></span>
role="tab" <span>publié</span>
id="tab-chatbot" </li>
aria-controls="panel-chatbot" <li class="flex items-center gap-1.5">
aria-selected="false" <span
data-tab="chatbot" aria-hidden="true"
class="tab-btn px-3 py-2 text-sm border-b-2 border-transparent text-neutral-500 hover:text-neutral-900" style="width: 8px; height: 8px; border-radius: 999px; background: transparent; border: 1px solid #0F172A; display: inline-block;"
> ></span>
Chatbot <span>à venir</span>
</button> </li>
</nav> <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>
</header>
<div class="flex-1 overflow-hidden relative"> <div class="flex-1 overflow-hidden relative">
<div <div id="panel-mindmap" class="absolute inset-0">
id="panel-mindmap"
role="tabpanel"
aria-labelledby="tab-mindmap"
data-tab-panel="mindmap"
class="absolute inset-0"
>
<CarteOWrapper client:visible /> <CarteOWrapper client:visible />
</div> </div>
<div
id="panel-chatbot"
role="tabpanel"
aria-labelledby="tab-chatbot"
data-tab-panel="chatbot"
class="absolute inset-0 hidden"
>
<ChatbotV2 client:visible />
</div>
</div> </div>
</section> </section>
@@ -260,28 +253,5 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
}); });
} }
// Tabs toggle. // V1.3-D : tabs Chatbot retires, plus de toggle a gerer (un seul panel Carte O).
const tabs = document.querySelectorAll<HTMLButtonElement>('[data-tab]');
const panels = document.querySelectorAll<HTMLElement>('[data-tab-panel]');
tabs.forEach((tab) => {
tab.addEventListener('click', () => {
const target = tab.dataset.tab;
if (!target) return;
tabs.forEach((t) => {
const active = t.dataset.tab === target;
t.setAttribute('aria-selected', active ? 'true' : 'false');
t.classList.toggle('border-neutral-900', active);
t.classList.toggle('border-transparent', !active);
t.classList.toggle('font-medium', active);
t.classList.toggle('text-neutral-900', active);
t.classList.toggle('text-neutral-500', !active);
});
panels.forEach((p) => {
p.classList.toggle('hidden', p.dataset.tabPanel !== target);
});
});
});
</script> </script>

View File

@@ -34,6 +34,16 @@ const categories = [
], ],
hasSelector: false, hasSelector: false,
}, },
{
id: 'pro',
label: 'Pro',
color: '#0F172A',
hashtags: ['#building-public', '#pro'],
plateformes: [
{ id: 'linkedin', label: 'LinkedIn', url: 'https://www.linkedin.com/in/jules-neny/' },
],
hasSelector: false,
},
]; ];
--- ---
<div class="h-full flex flex-col p-4 pt-20 md:pt-6 gap-5"> <div class="h-full flex flex-col p-4 pt-20 md:pt-6 gap-5">
@@ -42,7 +52,7 @@ const categories = [
<details id="hashtags-accordion" class="border-t border-neutral-200 pt-4"> <details id="hashtags-accordion" class="border-t border-neutral-200 pt-4">
<summary class="font-semibold cursor-pointer select-none flex items-center justify-between"> <summary class="font-semibold cursor-pointer select-none flex items-center justify-between">
<span>Hashtags</span> <span>Hashtags</span>
<span class="text-xs text-neutral-400 font-normal">3 categories</span> <span class="text-xs text-neutral-400 font-normal">4 categories</span>
</summary> </summary>
<div class="mt-3 flex flex-wrap gap-2" id="category-badges"> <div class="mt-3 flex flex-wrap gap-2" id="category-badges">
@@ -126,7 +136,7 @@ const categories = [
const PLATFORM_KEY = 'tf-platform-filter'; const PLATFORM_KEY = 'tf-platform-filter';
// Active state : map categoryId -> boolean // Active state : map categoryId -> boolean
const activeCategories: Record<string, boolean> = { politique: true, art: true, outils: true }; const activeCategories: Record<string, boolean> = { politique: true, art: true, outils: true, pro: true };
// Platform filter : map categoryId -> platformId | null // Platform filter : map categoryId -> platformId | null
const platformFilters: Record<string, string | null> = { politique: null }; const platformFilters: Record<string, string | null> = { politique: null };
@@ -138,15 +148,18 @@ const categories = [
const politiqueHashtags = ['#politique', '#aep-politique']; const politiqueHashtags = ['#politique', '#aep-politique'];
const artHashtags = ['#peinture', '#art']; const artHashtags = ['#peinture', '#art'];
const outilsHashtags = ['#stack', '#building-public']; const outilsHashtags = ['#stack', '#building-public'];
const proHashtags = ['#building-public', '#pro'];
const allPolitique = politiqueHashtags.every(h => storedHashtags[h] !== false); const allPolitique = politiqueHashtags.every(h => storedHashtags[h] !== false);
const allArt = artHashtags.every(h => storedHashtags[h] !== false); const allArt = artHashtags.every(h => storedHashtags[h] !== false);
const allOutils = outilsHashtags.every(h => storedHashtags[h] !== false); const allOutils = outilsHashtags.every(h => storedHashtags[h] !== false);
const allPro = proHashtags.every(h => storedHashtags[h] !== false);
if (Object.keys(storedHashtags).length > 0) { if (Object.keys(storedHashtags).length > 0) {
activeCategories['politique'] = allPolitique; activeCategories['politique'] = allPolitique;
activeCategories['art'] = allArt; activeCategories['art'] = allArt;
activeCategories['outils'] = allOutils; activeCategories['outils'] = allOutils;
activeCategories['pro'] = allPro;
} }
} catch { /* mode prive */ } } catch { /* mode prive */ }
@@ -163,6 +176,7 @@ const categories = [
politique: ['#politique', '#aep-politique'], politique: ['#politique', '#aep-politique'],
art: ['#peinture', '#art'], art: ['#peinture', '#art'],
outils: ['#stack', '#building-public'], outils: ['#stack', '#building-public'],
pro: ['#building-public', '#pro'],
}; };
for (const [catId, tags] of Object.entries(catHashtags)) { for (const [catId, tags] of Object.entries(catHashtags)) {
const active = activeCategories[catId] ?? true; const active = activeCategories[catId] ?? true;

View File

@@ -5,7 +5,7 @@
<button <button
id="hamburger-trigger" id="hamburger-trigger"
type="button" type="button"
class="fixed top-4 right-4 z-50 p-3 bg-white/95 border border-neutral-200 rounded-lg shadow-md hover:bg-white transition-colors md:top-6 md:right-6" class="fixed top-4 right-4 z-50 p-3 bg-white/95 border border-neutral-200 rounded-lg shadow-md hover:bg-white transition-colors md:hidden"
aria-label="Ouvrir le menu" aria-label="Ouvrir le menu"
aria-expanded="false" aria-expanded="false"
aria-controls="hamburger-drawer" aria-controls="hamburger-drawer"

View File

@@ -1,52 +1,80 @@
--- ---
// SiteHeader.astro - V1.2-M : bandeau header pleine largeur identite site // SiteHeader.astro - V1.3-C : header 1 ligne fine, liens cliquables, phrase intention Roboto Condensed
// Palette terre figee : papier #FAFAF7, encre #0F172A, encre douce #475569 // Palette V1.3 figee : papier #FAFAF7, encre #0F172A, encre douce #475569, border #E5E7EB
// Composition retenue : 2 lignes hierarchique // Composition :
// ligne 1 : "Trans-Former" wordmark dominant (semibold tracking serre) // Desktop (>= md) : 1 ligne ~44px - Trans-Former | Jules Neny | architecture d'ecologie politique [phrase intention right-aligned, Roboto Condensed]
// ligne 2 : "Jules Neny" + baseline italique cote a cote (separateur point median) // Mobile (< md) : 2 lignes compactes - ligne 1 Trans-Former / ligne 2 Jules Neny . AEP (cliquables) - phrase intention masquee
// Rationale : le wordmark domine sans ecraser ; la baseline reste lisible ; // Liens :
// composition adaptee a un manifeste (hierarchie typographique forte). // Trans-Former -> /
// Hauteur : ~64px desktop / ~48px mobile (compacte) // Jules Neny -> /a-propos
// Baseline raccourcie mobile : "architecture politique du vivant" // architecture d'ecologie politique -> https://aep.trans-former.fr (same-tab, site frere coherent)
// Typo phrase intention : Roboto Condensed Variable @fontsource (weight 400, font-stretch 75%)
import '@fontsource-variable/roboto-condensed/wght.css';
--- ---
<header <header
class="site-header w-full border-b border-[#E5E7EB] bg-[#FAFAF7] text-[#0F172A] px-4 md:px-6 flex items-center" class="site-header w-full border-b border-[#E5E7EB] bg-[#FAFAF7] text-[#0F172A] px-4 md:px-6 flex items-center"
role="banner" role="banner"
> >
<a <!-- Bloc identite (gauche) -->
href="/" <nav
class="flex flex-col md:flex-row md:items-baseline gap-x-3 gap-y-0 no-underline text-[#0F172A] hover:text-[#0F172A]" class="flex flex-col md:flex-row md:items-baseline gap-x-2 gap-y-0.5 flex-shrink-0"
aria-label="trans-former.fr - retour accueil" aria-label="identite site"
> >
<!-- Ligne 1 : wordmark dominant --> <!-- Ligne 1 desktop = wordmark inline ; mobile = ligne dediee -->
<span <a
class="font-semibold tracking-tight text-[#0F172A] text-[17px] md:text-[20px] leading-none" href="/"
class="font-semibold tracking-tight text-[#0F172A] hover:text-[#0F172A] text-[15px] md:text-[16px] leading-none no-underline hover:underline underline-offset-2 decoration-1"
aria-label="trans-former.fr - accueil"
> >
Trans-Former Trans-Former
</span> </a>
<!-- Ligne 2 (desktop : inline ; mobile : sous wordmark) : Jules Neny + baseline --> <!-- Bloc secondaire : Jules Neny . AEP (mobile : ligne 2 ; desktop : inline) -->
<span class="flex items-baseline gap-2 text-[#475569] leading-none"> <span class="flex items-baseline gap-1.5 text-[#475569] leading-none">
<span class="text-[11px] md:text-[13px]">Jules Neny</span> <span class="text-[#94A3B8] hidden md:inline" aria-hidden="true">·</span>
<a
href="/a-propos"
class="text-[12px] md:text-[13px] text-[#475569] hover:text-[#0F172A] no-underline hover:underline underline-offset-2 decoration-1"
>
Jules Neny
</a>
<span class="text-[#94A3B8]" aria-hidden="true">·</span> <span class="text-[#94A3B8]" aria-hidden="true">·</span>
<!-- Baseline longue : desktop / Baseline courte : mobile --> <a
<span class="italic text-[11px] md:text-[13px] hidden sm:inline"> href="https://aep.trans-former.fr"
architecture d'ecologie politique class="text-[12px] md:text-[13px] text-[#475569] hover:text-[#0F172A] no-underline hover:underline underline-offset-2 decoration-1"
</span> >
<span class="italic text-[11px] inline sm:hidden"> architecture d'écologie politique
architecture politique du vivant </a>
</span>
</span> </span>
</a> </nav>
<!-- Phrase intention (droite, desktop only) - Roboto Condensed allongee -->
<p
class="intention hidden md:block ml-auto pl-6 text-right text-[#475569] text-[11px] leading-tight max-w-[55%]"
>
Comment créer une pratique systémique, créative et collective de transformation sociale pour répondre à l'effondrement et restaurer notre capacité à habiter la Terre dans l'Anthropocène&nbsp;?
</p>
</header> </header>
<style> <style>
.site-header { .site-header {
height: 48px; height: 44px;
} }
@media (min-width: 768px) { @media (max-width: 767px) {
.site-header { .site-header {
height: 64px; height: auto;
min-height: 48px;
padding-top: 6px;
padding-bottom: 6px;
} }
} }
/* Phrase intention : Roboto Condensed Variable, font-stretch 75% (allongement vertical condense)
Cantonnee a .intention pour eviter contagion stack Inter */
.intention {
font-family: 'Roboto Condensed Variable', 'Roboto Condensed', sans-serif;
font-weight: 400;
font-stretch: 75%;
font-style: italic;
letter-spacing: 0.01em;
}
</style> </style>

View File

@@ -25,12 +25,18 @@ interface CarteNode {
// V1.2-O : logos plateforme via Brandfetch CDN (visible zoom > 1.5x seulement) // V1.2-O : logos plateforme via Brandfetch CDN (visible zoom > 1.5x seulement)
const BRANDFETCH_CLIENT_ID = '4ae58bd85c8140eab0cee72f40656120' const BRANDFETCH_CLIENT_ID = '4ae58bd85c8140eab0cee72f40656120'
const LOGO_ZOOM_THRESHOLD = 1.5 const LOGO_ZOOM_THRESHOLD = 1.5
// V1.3-D : dimensions rectangle central (phrase manifeste 3 lignes)
const CENTRAL_W = 300
const CENTRAL_H = 64
const CENTRAL_COLLIDE_RADIUS = 160 // demi-largeur + marge
const logoUrl = (domain: string) => const logoUrl = (domain: string) =>
`https://cdn.brandfetch.io/${domain}/w/64/h/64?c=${BRANDFETCH_CLIENT_ID}` `https://cdn.brandfetch.io/${domain}/w/64/h/64?c=${BRANDFETCH_CLIENT_ID}`
interface CarteEdge { interface CarteEdge {
source: string | CarteNode source: string | CarteNode
target: string | CarteNode target: string | CarteNode
central?: boolean // V1.3-D : link au noeud central (court/fort)
} }
const props = withDefaults(defineProps<{ const props = withDefaults(defineProps<{
@@ -118,25 +124,38 @@ function truncate(str: string, max: number): string {
return str.length > max ? str.slice(0, max - 1) + '…' : str return str.length > max ? str.slice(0, max - 1) + '…' : str
} }
// Split intelligent du label central sur 2-3 lignes (autour de "+") // V1.3-D : Wrap intelligent du label central sur 3 lignes (rectangle 300x64).
function splitCentralLabel(label: string): string[] { // Phrase cible : "Une medecine du corps social pour ecrire un nouveau contrat social"
// Heuristique : decoupe en mots, repartit sur ~3 lignes de longueur equilibree.
function splitCentralLabel(label: string, maxLines = 3, maxCharsPerLine = 30): string[] {
if (!label) return [''] if (!label) return ['']
// priorite : split sur " + " si present // Fallback : pivot legacy " + " (V1.2 backward compat)
if (label.includes(' + ')) { if (label.includes(' + ')) {
const parts = label.split(' + ') const parts = label.split(' + ')
return [parts[0].trim(), '+', parts.slice(1).join(' + ').trim()] return [parts[0].trim(), '+', parts.slice(1).join(' + ').trim()]
} }
// fallback : split a peu pres au milieu sur un espace const words = label.split(/\s+/).filter(Boolean)
if (label.length > 14) { if (words.length <= 1) return [label]
const mid = Math.floor(label.length / 2)
const left = label.lastIndexOf(' ', mid) // Repartit en lignes en respectant maxCharsPerLine, max maxLines lignes
const right = label.indexOf(' ', mid) const lines: string[] = []
const cut = (mid - left <= right - mid && left > 0) ? left : right let current = ''
if (cut > 0) { for (const w of words) {
return [label.slice(0, cut).trim(), label.slice(cut).trim()] const next = current ? `${current} ${w}` : w
if (next.length > maxCharsPerLine && current && lines.length < maxLines - 1) {
lines.push(current)
current = w
} else {
current = next
} }
} }
return [label] if (current) lines.push(current)
// Si plus de lignes que prevu (mots tres longs), concatene les dernieres
while (lines.length > maxLines) {
const last = lines.pop()!
lines[lines.length - 1] = `${lines[lines.length - 1]} ${last}`
}
return lines
} }
function buildSimNodes(): SimNode[] { function buildSimNodes(): SimNode[] {
@@ -232,18 +251,33 @@ function render() {
.style('cursor', 'pointer') .style('cursor', 'pointer')
.on('click', (_event, d) => emit('node-click', { node: d as CarteNode, x: (d as SimNode).x || 0, y: (d as SimNode).y || 0 })) .on('click', (_event, d) => emit('node-click', { node: d as CarteNode, x: (d as SimNode).x || 0, y: (d as SimNode).y || 0 }))
.on('mouseover', function (_event, d) { .on('mouseover', function (_event, d) {
d3.select(this).select('circle') // V1.3-D : selecteur etendu rect|circle (rect pour central, circle pour autres)
d3.select(this).select('rect, circle')
.transition().duration(120) .transition().duration(120)
.attr('stroke-width', strokeWidthFor(d) + 1.5) .attr('stroke-width', strokeWidthFor(d) + 1.5)
}) })
.on('mouseout', function (_event, d) { .on('mouseout', function (_event, d) {
d3.select(this).select('circle') d3.select(this).select('rect, circle')
.transition().duration(120) .transition().duration(120)
.attr('stroke-width', strokeWidthFor(d)) .attr('stroke-width', strokeWidthFor(d))
}) })
// Cercle // V1.3-D : nœud central = rectangle 300x64 (phrase 3 lignes), autres = cercle
nodeGroups.append('circle') const isCentral = (d: SimNode) => d.niveau === 0
nodeGroups.filter(isCentral)
.append('rect')
.attr('x', -CENTRAL_W / 2)
.attr('y', -CENTRAL_H / 2)
.attr('width', CENTRAL_W)
.attr('height', CENTRAL_H)
.attr('rx', 6)
.attr('fill', d => colorFor(d))
.attr('stroke', d => strokeFor(d))
.attr('stroke-width', d => strokeWidthFor(d))
nodeGroups.filter(d => !isCentral(d))
.append('circle')
.attr('r', d => getRadius(d)) .attr('r', d => getRadius(d))
.attr('fill', d => colorFor(d)) .attr('fill', d => colorFor(d))
.attr('stroke', d => strokeFor(d)) .attr('stroke', d => strokeFor(d))
@@ -256,10 +290,10 @@ function render() {
const inside = labelInsideFor(d) const inside = labelInsideFor(d)
if (inside && d.niveau === 0) { if (inside && d.niveau === 0) {
// Noeud central : label en 2 lignes inscrites au centre // V1.3-D : noeud central = rectangle, label 3 lignes 13px line-height 1.35
const parts = splitCentralLabel(d.label) const fs = isMobile.value ? 11 : 13
const lineHeight = isMobile.value ? 10 : 12 const lineHeight = Math.round(fs * 1.35)
const fs = isMobile.value ? 9 : 11 const parts = splitCentralLabel(d.label, 3, isMobile.value ? 22 : 30)
const startY = -((parts.length - 1) * lineHeight) / 2 const startY = -((parts.length - 1) * lineHeight) / 2
parts.forEach((line, i) => { parts.forEach((line, i) => {
g.append('text') g.append('text')
@@ -269,7 +303,7 @@ function render() {
.attr('y', startY + i * lineHeight) .attr('y', startY + i * lineHeight)
.attr('font-size', fs) .attr('font-size', fs)
.attr('font-family', 'system-ui, sans-serif') .attr('font-family', 'system-ui, sans-serif')
.attr('font-weight', 'bold') .attr('font-weight', '500')
.attr('fill', '#FFFFFF') .attr('fill', '#FFFFFF')
.attr('pointer-events', 'none') .attr('pointer-events', 'none')
.text(line) .text(line)
@@ -332,21 +366,54 @@ function render() {
nodeGroups.append('title') nodeGroups.append('title')
.text(d => `${d.label}\n[${d.family}]\n${truncate(d.resume || d.intention || '', 200)}`) .text(d => `${d.label}\n[${d.family}]\n${truncate(d.resume || d.intention || '', 200)}`)
// Simulation force avec charges differenciees par niveau // V1.3-D : Simulation force-directed fit-cadre + animation continue subtile
// - link distance/strength differencies : TMIP (central) court/fort, autres essais souples
// - collide +12 zero overlap labels
// - forceX/Y faibles rappel cadre
// - alphaDecay 0.025 (anime sans vertige)
simulation = d3.forceSimulation<SimNode, SimLink>(simNodes) simulation = d3.forceSimulation<SimNode, SimLink>(simNodes)
.force('link', d3.forceLink<SimNode, SimLink>(simLinks) .force('link', d3.forceLink<SimNode, SimLink>(simLinks)
.id(d => d.id) .id(d => d.id)
.distance(80) .distance(l => {
.strength(0.35)) const link = l as SimLink & { central?: boolean }
// Lien central -> TMIP (projet) = court (90), autres centraux (essais) = standard (200)
if (link.central) {
const tgt = link.target as SimNode
const src = link.source as SimNode
const other = (tgt.niveau === 0 ? src : tgt) as SimNode
if (other.nature === 'projet') return 90
return 200
}
return 180
})
.strength(l => {
const link = l as SimLink & { central?: boolean }
if (link.central) {
const tgt = link.target as SimNode
const src = link.source as SimNode
const other = (tgt.niveau === 0 ? src : tgt) as SimNode
if (other.nature === 'projet') return 0.6
return 0.3
}
return 0.3
}))
.force('charge', d3.forceManyBody<SimNode>().strength(d => { .force('charge', d3.forceManyBody<SimNode>().strength(d => {
if (d.niveau === 0) return -800 if (d.niveau === 0) return -1200
if (d.niveau === 1) return -400 if (d.niveau === 1) return -400
if (d.niveau === 2) return -150 if (d.niveau === 2) return -180
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('collide', d3.forceCollide<SimNode>().radius(d => getRadius(d) + 6)) .force('x', d3.forceX<SimNode>(width.value / 2).strength(0.05))
.alphaDecay(0.03) .force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
.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
}))
.alphaDecay(0.025)
.velocityDecay(0.4)
.alphaMin(0.001)
.on('tick', tick) .on('tick', tick)
// Bind drag once simulation exists. // Bind drag once simulation exists.
@@ -409,6 +476,8 @@ 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))
simulation.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
simulation.alpha(0.3).restart() simulation.alpha(0.3).restart()
} }
}) })

View File

@@ -19,6 +19,7 @@ interface CarteNode {
interface CarteEdge { interface CarteEdge {
source: string source: string
target: string target: string
central?: boolean // V1.3-D : edges au noeud central (tuning force-link)
} }
interface CarteData { interface CarteData {

View File

@@ -14,7 +14,7 @@ const {
} = Astro.props; } = Astro.props;
--- ---
<!doctype html> <!doctype html>
<html lang="fr"> <html lang="fr" class="h-screen">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" /> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
@@ -29,11 +29,15 @@ const {
<meta name="twitter:title" content={title} /> <meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} /> <meta name="twitter:description" content={description} />
</head> </head>
<body class="m-0 bg-white text-neutral-900 antialiased min-h-screen flex flex-col"> <body class="m-0 bg-white text-neutral-900 antialiased h-screen flex flex-col overflow-hidden">
<SiteHeader /> <div class="flex-shrink-0">
<div class="flex-1 flex flex-col min-h-0"> <SiteHeader />
</div>
<div class="flex-1 flex flex-col min-h-0 overflow-hidden">
<slot /> <slot />
</div> </div>
<Footer /> <div class="flex-shrink-0">
<Footer />
</div>
</body> </body>
</html> </html>

View File

@@ -10,7 +10,7 @@ import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
> >
<HamburgerMenu /> <HamburgerMenu />
<main class="min-h-screen bg-white"> <main class="h-full overflow-y-auto bg-white">
<article class="max-w-2xl mx-auto px-6 py-16 md:py-24"> <article class="max-w-2xl mx-auto px-6 py-16 md:py-24">
<header class="mb-10"> <header class="mb-10">

View File

@@ -15,18 +15,16 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
<MobileTabBar /> <MobileTabBar />
<PopupOnboarding /> <PopupOnboarding />
<!-- Desktop : grid 3 colonnes (header 64px deja consommes par SiteHeader, on prend le reste) --> <!-- Desktop : grid 3 colonnes V1.3-BG : prend toute la place du wrapper flex-1 du BaseLayout.
<div Header et footer sont fixes (flex-shrink-0), pas besoin de calc(100vh - X). -->
class="hidden md:grid md:grid-cols-[320px_1fr_320px] overflow-hidden" <div class="hidden md:grid md:grid-cols-[320px_1fr_320px] h-full overflow-hidden">
style="height: calc(100vh - 64px);" <aside class="border-r border-neutral-200 overflow-y-auto h-full"><ColJournal /></aside>
> <main class="overflow-hidden h-full"><ColCentre /></main>
<aside class="border-r border-neutral-200 overflow-y-auto"><ColJournal /></aside> <aside class="border-l border-neutral-200 overflow-y-auto h-full"><ColInsta /></aside>
<main class="overflow-hidden"><ColCentre /></main>
<aside class="border-l border-neutral-200 overflow-y-auto"><ColInsta /></aside>
</div> </div>
<!-- Mobile : SwipeContainer Vue island - header 48px + tabbar 44px = 92px reserves --> <!-- Mobile : SwipeContainer Vue island - tabbar 44px reserve dans la zone flex-1 -->
<div class="md:hidden overflow-hidden" style="height: calc(100dvh - 48px - 44px); margin-top: 44px;"> <div class="md:hidden h-full overflow-hidden" style="padding-top: 44px;">
<SwipeContainer client:load> <SwipeContainer client:load>
<ColJournal slot="left" /> <ColJournal slot="left" />
<ColCentre slot="center" /> <ColCentre slot="center" />

View File

@@ -10,7 +10,7 @@ import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
> >
<HamburgerMenu /> <HamburgerMenu />
<main class="min-h-screen bg-white"> <main class="h-full overflow-y-auto bg-white">
<article class="max-w-2xl mx-auto px-6 py-16 md:py-24"> <article class="max-w-2xl mx-auto px-6 py-16 md:py-24">
<!-- En-tete --> <!-- En-tete -->

View File

@@ -10,7 +10,7 @@ import HamburgerMenu from '../../components/astro/HamburgerMenu.astro';
> >
<HamburgerMenu /> <HamburgerMenu />
<main class="min-h-screen bg-white"> <main class="h-full overflow-y-auto bg-white">
<article class="max-w-xl mx-auto px-6 py-16 md:py-24"> <article class="max-w-xl mx-auto px-6 py-16 md:py-24">
<header class="mb-10"> <header class="mb-10">

View File

@@ -10,7 +10,7 @@ import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
> >
<HamburgerMenu /> <HamburgerMenu />
<main class="min-h-screen bg-white"> <main class="h-full overflow-y-auto bg-white">
<article class="max-w-2xl mx-auto px-6 py-16 md:py-24"> <article class="max-w-2xl mx-auto px-6 py-16 md:py-24">
<header class="mb-10"> <header class="mb-10">