Compare commits
6 Commits
1e1c56db2f
...
feat/v12-k
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
95b75d4866 | ||
|
|
046f34ec8b | ||
|
|
61e53a04d5 | ||
|
|
4a29a9592a | ||
|
|
79004573f1 | ||
|
|
d8d3af28a0 |
@@ -3,12 +3,11 @@
|
|||||||
// BAS : iframe carte AEP + scroll articles Substack (PC4).
|
// BAS : iframe carte AEP + scroll articles Substack (PC4).
|
||||||
import CarteOWrapper from '../vue/CarteOWrapper.vue';
|
import CarteOWrapper from '../vue/CarteOWrapper.vue';
|
||||||
import ChatbotV2 from '../vue/ChatbotV2.vue';
|
import ChatbotV2 from '../vue/ChatbotV2.vue';
|
||||||
import IframeCarteAEP from './IframeCarteAEP.astro';
|
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
||||||
import ScrollArticles from './ScrollArticles.astro';
|
|
||||||
---
|
---
|
||||||
<div class="h-full grid grid-rows-2 gap-2 p-2">
|
<div id="col-centre-grid" class="h-full grid grid-rows-2 gap-2 p-2">
|
||||||
<!-- HAUT 50% : tabs Carte O / Chatbot -->
|
<!-- HAUT 50% : tabs Carte O / Chatbot -->
|
||||||
<section class="border border-neutral-200 rounded flex flex-col overflow-hidden bg-white">
|
<section id="col-centre-haut" class="border border-neutral-200 rounded flex flex-col overflow-hidden bg-white" style="min-height: 0;">
|
||||||
<nav role="tablist" aria-label="Vues centrales" class="flex border-b border-neutral-200 px-1 pt-1">
|
<nav role="tablist" aria-label="Vues centrales" class="flex border-b border-neutral-200 px-1 pt-1">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@@ -56,16 +55,141 @@ import ScrollArticles from './ScrollArticles.astro';
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- BAS 50% : iframe carte AEP + scroll articles Substack (PC4) -->
|
<!-- Drag handle desktop - redimensionnement vertical md+ -->
|
||||||
<section class="border border-neutral-200 rounded overflow-y-auto bg-white">
|
<div
|
||||||
|
id="col-centre-drag-handle"
|
||||||
|
class="hidden md:flex items-center justify-center h-2 cursor-row-resize hover:bg-neutral-200 transition-colors w-full -mt-1 -mb-1"
|
||||||
|
aria-hidden="true"
|
||||||
|
>
|
||||||
|
<span class="block w-10 h-0.5 bg-neutral-300 rounded-full"></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Poignee repli zone HAUT - mobile only -->
|
||||||
|
<button
|
||||||
|
id="col-centre-poignee"
|
||||||
|
type="button"
|
||||||
|
aria-label="Replier ou deployer la Carte O"
|
||||||
|
class="md:hidden flex items-center justify-center h-6 bg-neutral-100 border-y border-neutral-200 cursor-pointer w-full -mt-2 -mb-2 hover:bg-neutral-200 transition-colors"
|
||||||
|
>
|
||||||
|
<span class="block w-8 h-0.5 bg-neutral-400 rounded-full"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- BAS 50% : embed dynamique (carte AEP default, article journal au click) -->
|
||||||
|
<section class="border border-neutral-200 rounded overflow-hidden bg-white" style="min-height: 0;">
|
||||||
<div class="h-full min-h-[60vh] md:min-h-[400px]">
|
<div class="h-full min-h-[60vh] md:min-h-[400px]">
|
||||||
<IframeCarteAEP />
|
<EmbedDynamique client:visible />
|
||||||
</div>
|
</div>
|
||||||
<ScrollArticles />
|
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
// Poignee repli zone HAUT (mobile only, D.3)
|
||||||
|
const grid = document.getElementById('col-centre-grid');
|
||||||
|
const haut = document.getElementById('col-centre-haut');
|
||||||
|
const poignee = document.getElementById('col-centre-poignee');
|
||||||
|
|
||||||
|
const applyRepliState = (replie: boolean) => {
|
||||||
|
if (!grid || !haut) return;
|
||||||
|
if (replie) {
|
||||||
|
grid.classList.remove('grid-rows-2');
|
||||||
|
grid.style.gridTemplateRows = '0fr 1fr';
|
||||||
|
haut.style.overflow = 'hidden';
|
||||||
|
haut.style.minHeight = '0';
|
||||||
|
poignee?.setAttribute('aria-label', 'Deployer la Carte O');
|
||||||
|
} else {
|
||||||
|
grid.classList.add('grid-rows-2');
|
||||||
|
grid.style.gridTemplateRows = '';
|
||||||
|
haut.style.overflow = '';
|
||||||
|
haut.style.minHeight = '';
|
||||||
|
poignee?.setAttribute('aria-label', 'Replier la Carte O');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Etat initial depuis sessionStorage
|
||||||
|
const savedRepli = sessionStorage.getItem('tf-haut-replie');
|
||||||
|
applyRepliState(savedRepli === 'true');
|
||||||
|
|
||||||
|
poignee?.addEventListener('click', () => {
|
||||||
|
const current = sessionStorage.getItem('tf-haut-replie') === 'true';
|
||||||
|
const next = !current;
|
||||||
|
sessionStorage.setItem('tf-haut-replie', String(next));
|
||||||
|
applyRepliState(next);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Drag-resize desktop (>=768px)
|
||||||
|
const dragHandle = document.getElementById('col-centre-drag-handle');
|
||||||
|
const gridEl = document.getElementById('col-centre-grid');
|
||||||
|
|
||||||
|
if (dragHandle && gridEl) {
|
||||||
|
let isDragging = false;
|
||||||
|
let startY = 0;
|
||||||
|
let startTop = 0;
|
||||||
|
|
||||||
|
const getGridHeight = () => gridEl.getBoundingClientRect().height;
|
||||||
|
|
||||||
|
const getHautPercent = (): number => {
|
||||||
|
const rows = gridEl.style.gridTemplateRows;
|
||||||
|
if (rows && rows.includes('fr')) {
|
||||||
|
const parts = rows.split(' ');
|
||||||
|
if (parts.length >= 2) {
|
||||||
|
const top = parseFloat(parts[0]) || 1;
|
||||||
|
const bot = parseFloat(parts[parts.length - 1]) || 1;
|
||||||
|
return (top / (top + bot)) * 100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (rows && rows.includes('%')) {
|
||||||
|
const parts = rows.split(' ');
|
||||||
|
return parseFloat(parts[0]) || 50;
|
||||||
|
}
|
||||||
|
return 50;
|
||||||
|
};
|
||||||
|
|
||||||
|
dragHandle.addEventListener('mousedown', (e: MouseEvent) => {
|
||||||
|
if (sessionStorage.getItem('tf-haut-replie') === 'true') return;
|
||||||
|
isDragging = true;
|
||||||
|
startY = e.clientY;
|
||||||
|
startTop = (getHautPercent() / 100) * getGridHeight();
|
||||||
|
document.body.style.cursor = 'row-resize';
|
||||||
|
document.body.style.userSelect = 'none';
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener('mousemove', (e: MouseEvent) => {
|
||||||
|
if (!isDragging || !gridEl) return;
|
||||||
|
const delta = e.clientY - startY;
|
||||||
|
const totalH = getGridHeight();
|
||||||
|
const newTop = Math.min(Math.max(startTop + delta, totalH * 0.2), totalH * 0.8);
|
||||||
|
const topPct = (newTop / totalH) * 100;
|
||||||
|
const botPct = 100 - topPct;
|
||||||
|
gridEl.style.gridTemplateRows = `${topPct.toFixed(1)}% ${botPct.toFixed(1)}%`;
|
||||||
|
gridEl.classList.remove('grid-rows-2');
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener('mouseup', () => {
|
||||||
|
if (isDragging) {
|
||||||
|
isDragging = false;
|
||||||
|
document.body.style.cursor = '';
|
||||||
|
document.body.style.userSelect = '';
|
||||||
|
const rows = gridEl.style.gridTemplateRows;
|
||||||
|
if (rows) sessionStorage.setItem('tf-centre-rows', rows);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Restaurer position depuis sessionStorage
|
||||||
|
const savedRows = sessionStorage.getItem('tf-centre-rows');
|
||||||
|
if (savedRows && sessionStorage.getItem('tf-haut-replie') !== 'true') {
|
||||||
|
gridEl.style.gridTemplateRows = savedRows;
|
||||||
|
gridEl.classList.remove('grid-rows-2');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Double-click sur drag handle = reset 50/50
|
||||||
|
dragHandle.addEventListener('dblclick', () => {
|
||||||
|
gridEl.style.gridTemplateRows = '';
|
||||||
|
gridEl.classList.add('grid-rows-2');
|
||||||
|
sessionStorage.removeItem('tf-centre-rows');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Tabs toggle.
|
// Tabs toggle.
|
||||||
const tabs = document.querySelectorAll<HTMLButtonElement>('[data-tab]');
|
const tabs = document.querySelectorAll<HTMLButtonElement>('[data-tab]');
|
||||||
const panels = document.querySelectorAll<HTMLElement>('[data-tab-panel]');
|
const panels = document.querySelectorAll<HTMLElement>('[data-tab-panel]');
|
||||||
|
|||||||
@@ -5,19 +5,19 @@ const categories = [
|
|||||||
{
|
{
|
||||||
id: 'politique',
|
id: 'politique',
|
||||||
label: 'Politique',
|
label: 'Politique',
|
||||||
color: '#1d4ed8',
|
color: '#B5443A',
|
||||||
hashtags: ['#politique', '#aep-politique'],
|
hashtags: ['#politique', '#aep-politique'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
{ id: 'instagram', label: '@aep.politique', url: 'https://www.instagram.com/aep.politique/' },
|
{ id: 'instagram', label: 'Court', url: 'https://www.instagram.com/aep.politique/' },
|
||||||
{ id: 'castopod', label: 'Podcast', url: 'https://podcast.trans-former.fr' },
|
{ id: 'castopod', label: 'Podcast', url: 'https://podcast.trans-former.fr' },
|
||||||
{ id: 'substack', label: 'Substack', url: 'https://julesneny.substack.com' },
|
{ id: 'substack', label: 'Article', url: 'https://julesneny.substack.com' },
|
||||||
],
|
],
|
||||||
hasSelector: true,
|
hasSelector: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'art',
|
id: 'art',
|
||||||
label: 'Art',
|
label: 'Art',
|
||||||
color: '#dc2626',
|
color: '#5B6B3A',
|
||||||
hashtags: ['#peinture', '#art'],
|
hashtags: ['#peinture', '#art'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
{ id: 'instagram', label: '@julesneny', url: 'https://www.instagram.com/julesneny/' },
|
{ id: 'instagram', label: '@julesneny', url: 'https://www.instagram.com/julesneny/' },
|
||||||
@@ -27,7 +27,7 @@ const categories = [
|
|||||||
{
|
{
|
||||||
id: 'outils',
|
id: 'outils',
|
||||||
label: 'Outils',
|
label: 'Outils',
|
||||||
color: '#16a34a',
|
color: '#475569',
|
||||||
hashtags: ['#stack', '#building-public'],
|
hashtags: ['#stack', '#building-public'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
{ id: 'gitea', label: 'Gitea', url: 'https://git.trans-former.fr/jules' },
|
{ id: 'gitea', label: 'Gitea', url: 'https://git.trans-former.fr/jules' },
|
||||||
@@ -68,7 +68,7 @@ const categories = [
|
|||||||
type="button"
|
type="button"
|
||||||
data-platform-id={p.id}
|
data-platform-id={p.id}
|
||||||
class="platform-pill"
|
class="platform-pill"
|
||||||
style="font-family:'Courier New',Courier,monospace;font-size:12px;padding:2px 8px;border-radius:12px;cursor:pointer;border:1px solid #1d4ed8;background:transparent;color:#1d4ed8;"
|
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}
|
{p.label}
|
||||||
</button>
|
</button>
|
||||||
@@ -219,11 +219,11 @@ const categories = [
|
|||||||
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 = '#1d4ed8';
|
pill.style.background = '#B5443A';
|
||||||
pill.style.color = '#fff';
|
pill.style.color = '#fff';
|
||||||
} else {
|
} else {
|
||||||
pill.style.background = 'transparent';
|
pill.style.background = 'transparent';
|
||||||
pill.style.color = '#1d4ed8';
|
pill.style.color = '#B5443A';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<button
|
<button
|
||||||
id="hamburger-trigger"
|
id="hamburger-trigger"
|
||||||
type="button"
|
type="button"
|
||||||
class="fixed top-4 left-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:left-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:top-6 md:right-6"
|
||||||
aria-label="Ouvrir le menu"
|
aria-label="Ouvrir le menu"
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-controls="hamburger-drawer"
|
aria-controls="hamburger-drawer"
|
||||||
|
|||||||
71
src/components/astro/MobileTabBar.astro
Normal file
71
src/components/astro/MobileTabBar.astro
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
---
|
||||||
|
// MobileTabBar - indicateur de colonne active sur mobile (V1.1-D.1)
|
||||||
|
// Ecoute l'event "swipe-position-change" emis par SwipeContainer.vue
|
||||||
|
// Affiche : Journal | Carte | Insta - colonne active surlignee
|
||||||
|
---
|
||||||
|
<nav
|
||||||
|
id="mobile-tab-bar"
|
||||||
|
aria-label="Navigation colonnes"
|
||||||
|
class="fixed top-0 left-0 right-0 z-30 h-11 bg-white border-b border-neutral-200 flex items-stretch justify-around md:hidden"
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
data-tab-index="0"
|
||||||
|
class="mobile-tab flex-1 text-sm px-2 border-b-2 transition-colors"
|
||||||
|
aria-label="Aller au journal"
|
||||||
|
>
|
||||||
|
Journal
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
data-tab-index="1"
|
||||||
|
class="mobile-tab flex-1 text-sm px-2 border-b-2 transition-colors"
|
||||||
|
aria-label="Aller à la carte"
|
||||||
|
>
|
||||||
|
Carte
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
data-tab-index="2"
|
||||||
|
class="mobile-tab flex-1 text-sm px-2 border-b-2 transition-colors"
|
||||||
|
aria-label="Aller à Instagram"
|
||||||
|
>
|
||||||
|
Insta
|
||||||
|
</button>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const tabs = document.querySelectorAll<HTMLButtonElement>('.mobile-tab');
|
||||||
|
|
||||||
|
function setActive(pos: number) {
|
||||||
|
tabs.forEach((tab, i) => {
|
||||||
|
const active = i === pos;
|
||||||
|
tab.classList.toggle('text-neutral-900', active);
|
||||||
|
tab.classList.toggle('font-medium', active);
|
||||||
|
tab.classList.toggle('border-neutral-900', active);
|
||||||
|
tab.classList.toggle('text-neutral-400', !active);
|
||||||
|
tab.classList.toggle('border-transparent', !active);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Etat initial depuis sessionStorage (cle utilisee par SwipeContainer.vue)
|
||||||
|
const saved = sessionStorage.getItem('pc-position');
|
||||||
|
const initial = saved !== null && !Number.isNaN(Number(saved)) ? Number(saved) : 1;
|
||||||
|
setActive(initial);
|
||||||
|
|
||||||
|
// Ecoute les changements de position emis par SwipeContainer.vue
|
||||||
|
document.addEventListener('swipe-position-change', (e: Event) => {
|
||||||
|
const detail = (e as CustomEvent<{ pos: number }>).detail;
|
||||||
|
if (detail && typeof detail.pos === 'number') {
|
||||||
|
setActive(detail.pos);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Les boutons de la tab bar declenchent un scroll via un event custom
|
||||||
|
tabs.forEach((tab) => {
|
||||||
|
tab.addEventListener('click', () => {
|
||||||
|
const idx = Number(tab.dataset.tabIndex);
|
||||||
|
document.dispatchEvent(new CustomEvent('mobile-tab-scroll', { detail: { pos: idx } }));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
---
|
|
||||||
// PC4 - Liste articles Substack en scroll sous l'iframe carte.
|
|
||||||
// V1 placeholder data en dur ; PC6 (journal n8n) remplacera par fetch journal.json filtre tag #politique.
|
|
||||||
const articles = [
|
|
||||||
{
|
|
||||||
date: '2026-04-28',
|
|
||||||
titre: 'Cap sur l\'autonomie : retour sur 6 mois de chantier',
|
|
||||||
url: 'https://transformations.substack.com/p/cap-autonomie',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2026-04-15',
|
|
||||||
titre: 'Le commun comme infrastructure',
|
|
||||||
url: 'https://transformations.substack.com/p/commun-infrastructure',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2026-03-30',
|
|
||||||
titre: 'Architecte ou operateur de bifurcation ?',
|
|
||||||
url: 'https://transformations.substack.com/p/architecte-bifurcation',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2026-03-12',
|
|
||||||
titre: 'Reseaux AEP : pourquoi la coordination est politique',
|
|
||||||
url: 'https://transformations.substack.com/p/aep-coordination',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2026-02-26',
|
|
||||||
titre: 'Sortir du sauveur, entrer dans le compagnon',
|
|
||||||
url: 'https://transformations.substack.com/p/sauveur-compagnon',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2026-02-08',
|
|
||||||
titre: 'Petit manifeste contre l\'expert isole',
|
|
||||||
url: 'https://transformations.substack.com/p/contre-expert-isole',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2026-01-22',
|
|
||||||
titre: 'Ce que la commande publique fait a la pensee',
|
|
||||||
url: 'https://transformations.substack.com/p/commande-publique',
|
|
||||||
},
|
|
||||||
// TODO PC6 : remplacer par fetch journal.json filtre tag #politique.
|
|
||||||
];
|
|
||||||
---
|
|
||||||
<section class="border-t border-neutral-200 py-6 px-4 bg-white">
|
|
||||||
<h3 class="text-sm font-semibold uppercase tracking-wider text-neutral-500 mb-4">
|
|
||||||
Derniers articles ; Substack
|
|
||||||
</h3>
|
|
||||||
<ul class="space-y-3">
|
|
||||||
{articles.map(({ date, titre, url }) => (
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
href={url}
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener"
|
|
||||||
class="block group"
|
|
||||||
>
|
|
||||||
<time class="text-xs text-neutral-400">{date}</time>
|
|
||||||
<p class="text-sm text-neutral-800 group-hover:text-neutral-600 transition-colors leading-snug">
|
|
||||||
{titre}
|
|
||||||
</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
<a
|
|
||||||
href="https://transformations.substack.com"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener"
|
|
||||||
class="inline-block mt-4 text-xs text-neutral-500 hover:text-neutral-900"
|
|
||||||
>
|
|
||||||
Voir tous les articles →
|
|
||||||
</a>
|
|
||||||
</section>
|
|
||||||
@@ -10,6 +10,11 @@ interface CarteNode {
|
|||||||
id: string
|
id: string
|
||||||
label: string
|
label: string
|
||||||
family: string
|
family: string
|
||||||
|
niveau?: number
|
||||||
|
nature?: 'essai' | 'projet'
|
||||||
|
statut?: 'gestation' | 'edite'
|
||||||
|
resume?: string | null
|
||||||
|
radius?: number
|
||||||
intention?: string
|
intention?: string
|
||||||
slug?: string
|
slug?: string
|
||||||
theme?: string
|
theme?: string
|
||||||
@@ -36,7 +41,7 @@ const props = withDefaults(defineProps<{
|
|||||||
})
|
})
|
||||||
|
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
'node-click': [node: CarteNode]
|
'node-click': [payload: { node: CarteNode; x: number; y: number }]
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
// Refs
|
// Refs
|
||||||
@@ -59,8 +64,32 @@ let zoomBehavior: d3.ZoomBehavior<SVGSVGElement, unknown> | null = null
|
|||||||
const isMobile = computed(() => width.value < 600)
|
const isMobile = computed(() => width.value < 600)
|
||||||
const nodeRadius = computed(() => isMobile.value ? 10 : 14)
|
const nodeRadius = computed(() => isMobile.value ? 10 : 14)
|
||||||
|
|
||||||
function colorFor(family: string): string {
|
function colorFor(d: SimNode): string {
|
||||||
return props.familyColors[family] || '#9ca3af'
|
if (d.nature === 'projet') return '#b45309'
|
||||||
|
if (d.niveau === 0) return '#1d4ed8'
|
||||||
|
if (d.niveau === 1) return '#2563eb'
|
||||||
|
if (d.niveau === 2) return '#60a5fa'
|
||||||
|
return props.familyColors[d.family] || '#9ca3af'
|
||||||
|
}
|
||||||
|
|
||||||
|
function getRadius(d: SimNode): number {
|
||||||
|
return d.radius ?? nodeRadius.value
|
||||||
|
}
|
||||||
|
|
||||||
|
function strokeFor(d: SimNode): string {
|
||||||
|
return d.statut === 'edite' ? '#0f172a' : '#94a3b8'
|
||||||
|
}
|
||||||
|
|
||||||
|
function strokeWidthFor(d: SimNode): number {
|
||||||
|
return d.statut === 'edite' ? 2.5 : 1
|
||||||
|
}
|
||||||
|
|
||||||
|
function labelWeightFor(d: SimNode): string {
|
||||||
|
return d.statut === 'edite' ? 'bold' : 'normal'
|
||||||
|
}
|
||||||
|
|
||||||
|
function labelColorFor(d: SimNode): string {
|
||||||
|
return d.statut === 'edite' ? '#0f172a' : '#6b7280'
|
||||||
}
|
}
|
||||||
|
|
||||||
function truncate(str: string, max: number): string {
|
function truncate(str: string, max: number): string {
|
||||||
@@ -136,7 +165,6 @@ function render() {
|
|||||||
const simNodes = buildSimNodes()
|
const simNodes = buildSimNodes()
|
||||||
const simLinks = buildSimLinks(simNodes)
|
const simLinks = buildSimLinks(simNodes)
|
||||||
|
|
||||||
const r = nodeRadius.value
|
|
||||||
const fontSize = isMobile.value ? 9 : 11
|
const fontSize = isMobile.value ? 9 : 11
|
||||||
|
|
||||||
// Liens
|
// Liens
|
||||||
@@ -155,49 +183,55 @@ function render() {
|
|||||||
.join('g')
|
.join('g')
|
||||||
.attr('class', 'node')
|
.attr('class', 'node')
|
||||||
.style('cursor', 'pointer')
|
.style('cursor', 'pointer')
|
||||||
.on('click', (_event, d) => emit('node-click', d))
|
.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 () {
|
.on('mouseover', function (_event, d) {
|
||||||
d3.select(this).select('circle')
|
d3.select(this).select('circle')
|
||||||
.transition().duration(120)
|
.transition().duration(120)
|
||||||
.attr('stroke-width', 2.5)
|
.attr('stroke-width', strokeWidthFor(d) + 1.5)
|
||||||
})
|
})
|
||||||
.on('mouseout', function () {
|
.on('mouseout', function (_event, d) {
|
||||||
d3.select(this).select('circle')
|
d3.select(this).select('circle')
|
||||||
.transition().duration(120)
|
.transition().duration(120)
|
||||||
.attr('stroke-width', 1.5)
|
.attr('stroke-width', strokeWidthFor(d))
|
||||||
})
|
})
|
||||||
|
|
||||||
// Cercle (couleur famille)
|
// Cercle
|
||||||
nodeGroups.append('circle')
|
nodeGroups.append('circle')
|
||||||
.attr('r', r)
|
.attr('r', d => getRadius(d))
|
||||||
.attr('fill', d => colorFor(d.family))
|
.attr('fill', d => colorFor(d))
|
||||||
.attr('stroke', '#ffffff')
|
.attr('stroke', d => strokeFor(d))
|
||||||
.attr('stroke-width', 1.5)
|
.attr('stroke-width', d => strokeWidthFor(d))
|
||||||
|
|
||||||
// Label
|
// Label
|
||||||
nodeGroups.append('text')
|
nodeGroups.append('text')
|
||||||
.attr('text-anchor', 'start')
|
.attr('text-anchor', 'start')
|
||||||
.attr('dominant-baseline', 'central')
|
.attr('dominant-baseline', 'central')
|
||||||
.attr('dx', r + 4)
|
.attr('dx', d => getRadius(d) + 4)
|
||||||
.attr('font-size', fontSize)
|
.attr('font-size', fontSize)
|
||||||
.attr('font-family', 'system-ui, sans-serif')
|
.attr('font-family', 'system-ui, sans-serif')
|
||||||
.attr('fill', '#1f2937')
|
.attr('font-weight', d => labelWeightFor(d))
|
||||||
|
.attr('fill', d => labelColorFor(d))
|
||||||
.attr('pointer-events', 'none')
|
.attr('pointer-events', 'none')
|
||||||
.text(d => truncate(d.label, isMobile.value ? 18 : 30))
|
.text(d => truncate(d.label, isMobile.value ? 18 : 30))
|
||||||
|
|
||||||
// Tooltip <title>
|
// Tooltip <title>
|
||||||
nodeGroups.append('title')
|
nodeGroups.append('title')
|
||||||
.text(d => `${d.label}\n[${d.family}]\n${truncate(d.intention || '', 200)}`)
|
.text(d => `${d.label}\n[${d.family}]\n${truncate(d.resume || d.intention || '', 200)}`)
|
||||||
|
|
||||||
// Simulation force
|
// Simulation force avec charges differenciees par niveau
|
||||||
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(80)
|
||||||
.strength(0.35))
|
.strength(0.35))
|
||||||
.force('charge', d3.forceManyBody<SimNode>().strength(-220))
|
.force('charge', d3.forceManyBody<SimNode>().strength(d => {
|
||||||
|
if (d.niveau === 0) return -800
|
||||||
|
if (d.niveau === 1) return -400
|
||||||
|
if (d.niveau === 2) return -150
|
||||||
|
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(r + 6))
|
.force('collide', d3.forceCollide<SimNode>().radius(d => getRadius(d) + 6))
|
||||||
.alphaDecay(0.03)
|
.alphaDecay(0.03)
|
||||||
.on('tick', tick)
|
.on('tick', tick)
|
||||||
|
|
||||||
|
|||||||
119
src/components/vue/CarteOContextMenu.vue
Normal file
119
src/components/vue/CarteOContextMenu.vue
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { computed, onMounted, onUnmounted } from 'vue'
|
||||||
|
|
||||||
|
interface CarteNode {
|
||||||
|
id: string
|
||||||
|
label: string
|
||||||
|
family?: string
|
||||||
|
nature?: 'essai' | 'projet'
|
||||||
|
statut?: 'gestation' | 'edite'
|
||||||
|
resume?: string | null
|
||||||
|
intention?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
node: CarteNode | null
|
||||||
|
x: number
|
||||||
|
y: number
|
||||||
|
}>()
|
||||||
|
|
||||||
|
const emit = defineEmits<{ close: [] }>()
|
||||||
|
|
||||||
|
function onKeydown(e: KeyboardEvent) {
|
||||||
|
if (e.key === 'Escape' && props.node) emit('close')
|
||||||
|
}
|
||||||
|
function onClickOutside(e: MouseEvent) {
|
||||||
|
const el = document.getElementById('carte-o-context-menu')
|
||||||
|
if (el && !el.contains(e.target as Node)) emit('close')
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
window.addEventListener('keydown', onKeydown)
|
||||||
|
setTimeout(() => window.addEventListener('click', onClickOutside), 50)
|
||||||
|
})
|
||||||
|
onUnmounted(() => {
|
||||||
|
window.removeEventListener('keydown', onKeydown)
|
||||||
|
window.removeEventListener('click', onClickOutside)
|
||||||
|
})
|
||||||
|
|
||||||
|
const naturLabel = computed(() => props.node?.nature === 'projet' ? 'Projet archi' : 'Essai politique')
|
||||||
|
const naturColor = computed(() => props.node?.nature === 'projet' ? '#b45309' : '#1d4ed8')
|
||||||
|
const texte = computed(() => props.node?.resume || props.node?.intention || 'En cours d\'ecriture.')
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div
|
||||||
|
v-if="node"
|
||||||
|
id="carte-o-context-menu"
|
||||||
|
class="context-menu"
|
||||||
|
:style="{ left: x + 'px', top: y + 'px' }"
|
||||||
|
role="dialog"
|
||||||
|
:aria-label="node.label"
|
||||||
|
>
|
||||||
|
<button class="close-btn" type="button" @click="emit('close')" aria-label="Fermer">x</button>
|
||||||
|
<span class="nature-badge" :style="{ backgroundColor: naturColor }">{{ naturLabel }}</span>
|
||||||
|
<h3 class="title" :style="{ fontWeight: node.statut === 'edite' ? 'bold' : 'normal' }">
|
||||||
|
{{ node.label }}
|
||||||
|
</h3>
|
||||||
|
<p class="resume">{{ texte }}</p>
|
||||||
|
<p v-if="node.statut === 'edite'" class="edite-badge">publie</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.context-menu {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1000;
|
||||||
|
background: #ffffff;
|
||||||
|
border: 1px solid #e5e7eb;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 12px 14px;
|
||||||
|
width: 220px;
|
||||||
|
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
.close-btn {
|
||||||
|
position: absolute;
|
||||||
|
top: 6px;
|
||||||
|
right: 8px;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #9ca3af;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1;
|
||||||
|
padding: 2px 4px;
|
||||||
|
}
|
||||||
|
.close-btn:hover { color: #374151; }
|
||||||
|
.nature-badge {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 2px 7px;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 10px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #fff;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #1f2937;
|
||||||
|
margin: 4px 0 6px 0;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
.resume {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #4b5563;
|
||||||
|
line-height: 1.5;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.edite-badge {
|
||||||
|
margin-top: 8px;
|
||||||
|
font-size: 10px;
|
||||||
|
color: #059669;
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,215 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
// Modal récap intention pour Carte O.
|
|
||||||
// Click node -> emit('node-click', n) -> selectedNode.value = n -> ce modal s'affiche.
|
|
||||||
// Esc + click backdrop ferment.
|
|
||||||
import { onMounted, onUnmounted, watch } from 'vue'
|
|
||||||
|
|
||||||
interface CarteNode {
|
|
||||||
id: string
|
|
||||||
label: string
|
|
||||||
family: string
|
|
||||||
intention?: string
|
|
||||||
slug?: string
|
|
||||||
theme?: string
|
|
||||||
}
|
|
||||||
|
|
||||||
const props = defineProps<{
|
|
||||||
node: CarteNode | null
|
|
||||||
familyColors?: Record<string, string>
|
|
||||||
}>()
|
|
||||||
|
|
||||||
const emit = defineEmits<{
|
|
||||||
close: []
|
|
||||||
}>()
|
|
||||||
|
|
||||||
function onKeydown(e: KeyboardEvent) {
|
|
||||||
if (e.key === 'Escape' && props.node) emit('close')
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(() => window.addEventListener('keydown', onKeydown))
|
|
||||||
onUnmounted(() => window.removeEventListener('keydown', onKeydown))
|
|
||||||
|
|
||||||
watch(() => props.node, (n) => {
|
|
||||||
if (n) {
|
|
||||||
document.body.style.overflow = 'hidden'
|
|
||||||
} else {
|
|
||||||
document.body.style.overflow = ''
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
function colorFor(family: string): string {
|
|
||||||
return props.familyColors?.[family] || '#9ca3af'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<Teleport to="body">
|
|
||||||
<Transition name="modal">
|
|
||||||
<div
|
|
||||||
v-if="node"
|
|
||||||
class="modal-backdrop"
|
|
||||||
role="dialog"
|
|
||||||
aria-modal="true"
|
|
||||||
:aria-labelledby="`carte-o-modal-title`"
|
|
||||||
@click.self="emit('close')"
|
|
||||||
>
|
|
||||||
<div class="modal-card">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="close-btn"
|
|
||||||
aria-label="Fermer"
|
|
||||||
@click="emit('close')"
|
|
||||||
>×</button>
|
|
||||||
|
|
||||||
<div class="family-badge" :style="{ backgroundColor: colorFor(node.family) }">
|
|
||||||
{{ node.family }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2 id="carte-o-modal-title" class="title">
|
|
||||||
{{ node.label }}
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<p v-if="node.intention" class="intention">
|
|
||||||
{{ node.intention }}
|
|
||||||
</p>
|
|
||||||
<p v-else class="intention placeholder">
|
|
||||||
Pas d'intention extraite. Ouvrez la fiche pour le contenu complet.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div v-if="node.theme" class="theme">
|
|
||||||
Thème : <strong>{{ node.theme }}</strong>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<a
|
|
||||||
v-if="node.slug"
|
|
||||||
:href="`/thematiques/${node.slug}`"
|
|
||||||
class="cta-link"
|
|
||||||
>
|
|
||||||
Lire la fiche →
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Transition>
|
|
||||||
</Teleport>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.modal-backdrop {
|
|
||||||
position: fixed;
|
|
||||||
inset: 0;
|
|
||||||
z-index: 9999;
|
|
||||||
background: rgba(0, 0, 0, 0.45);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 1rem;
|
|
||||||
backdrop-filter: blur(2px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-card {
|
|
||||||
position: relative;
|
|
||||||
background: #ffffff;
|
|
||||||
border-radius: 14px;
|
|
||||||
max-width: 32rem;
|
|
||||||
width: 100%;
|
|
||||||
padding: 1.75rem;
|
|
||||||
box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
|
|
||||||
}
|
|
||||||
|
|
||||||
.close-btn {
|
|
||||||
position: absolute;
|
|
||||||
top: 0.5rem;
|
|
||||||
right: 0.5rem;
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
border: none;
|
|
||||||
background: transparent;
|
|
||||||
font-size: 24px;
|
|
||||||
line-height: 1;
|
|
||||||
color: #9ca3af;
|
|
||||||
cursor: pointer;
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.close-btn:hover {
|
|
||||||
background: #f3f4f6;
|
|
||||||
color: #374151;
|
|
||||||
}
|
|
||||||
|
|
||||||
.family-badge {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.2rem 0.6rem;
|
|
||||||
border-radius: 999px;
|
|
||||||
font-size: 0.7rem;
|
|
||||||
font-weight: 600;
|
|
||||||
letter-spacing: 0.05em;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: #fff;
|
|
||||||
margin-bottom: 0.65rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: 1.4rem;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #1f2937;
|
|
||||||
margin: 0 0 0.85rem 0;
|
|
||||||
line-height: 1.3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.intention {
|
|
||||||
color: #4b5563;
|
|
||||||
line-height: 1.55;
|
|
||||||
margin: 0 0 1rem 0;
|
|
||||||
font-size: 0.95rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.intention.placeholder {
|
|
||||||
font-style: italic;
|
|
||||||
color: #9ca3af;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme {
|
|
||||||
font-size: 0.85rem;
|
|
||||||
color: #6b7280;
|
|
||||||
margin-bottom: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta-link {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.55rem 1.1rem;
|
|
||||||
background: #1f2937;
|
|
||||||
color: #fff;
|
|
||||||
border-radius: 8px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
font-weight: 500;
|
|
||||||
transition: background 0.15s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta-link:hover {
|
|
||||||
background: #111827;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-enter-active,
|
|
||||||
.modal-leave-active {
|
|
||||||
transition: opacity 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-enter-active .modal-card,
|
|
||||||
.modal-leave-active .modal-card {
|
|
||||||
transition: transform 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-enter-from,
|
|
||||||
.modal-leave-to {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-enter-from .modal-card,
|
|
||||||
.modal-leave-to .modal-card {
|
|
||||||
transform: scale(0.96);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,14 +1,16 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
// Wrapper Carte O : fetch /data/carte-o.json + state modal.
|
|
||||||
// Vue island Astro hydratée client:visible.
|
|
||||||
import { ref, onMounted, computed } from 'vue'
|
import { ref, onMounted, computed } from 'vue'
|
||||||
import CarteO from './CarteO.vue'
|
import CarteO from './CarteO.vue'
|
||||||
import CarteOModal from './CarteOModal.vue'
|
import CarteOContextMenu from './CarteOContextMenu.vue'
|
||||||
|
|
||||||
interface CarteNode {
|
interface CarteNode {
|
||||||
id: string
|
id: string
|
||||||
label: string
|
label: string
|
||||||
family: string
|
family: string
|
||||||
|
niveau?: number
|
||||||
|
nature?: 'essai' | 'projet'
|
||||||
|
statut?: 'gestation' | 'edite'
|
||||||
|
resume?: string | null
|
||||||
intention?: string
|
intention?: string
|
||||||
slug?: string
|
slug?: string
|
||||||
theme?: string
|
theme?: string
|
||||||
@@ -39,6 +41,8 @@ const props = withDefaults(defineProps<{
|
|||||||
const data = ref<CarteData | null>(null)
|
const data = ref<CarteData | null>(null)
|
||||||
const error = ref<string | null>(null)
|
const error = ref<string | null>(null)
|
||||||
const selectedNode = ref<CarteNode | null>(null)
|
const selectedNode = ref<CarteNode | null>(null)
|
||||||
|
const contextX = ref(0)
|
||||||
|
const contextY = ref(0)
|
||||||
const isMobileScreen = ref(false)
|
const isMobileScreen = ref(false)
|
||||||
|
|
||||||
const familyColors = computed(() =>
|
const familyColors = computed(() =>
|
||||||
@@ -51,6 +55,12 @@ const familyColors = computed(() =>
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
function onNodeClick(payload: { node: CarteNode; x: number; y: number }) {
|
||||||
|
selectedNode.value = payload.node
|
||||||
|
contextX.value = payload.x
|
||||||
|
contextY.value = payload.y
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
isMobileScreen.value = window.innerWidth < 768
|
isMobileScreen.value = window.innerWidth < 768
|
||||||
try {
|
try {
|
||||||
@@ -62,7 +72,6 @@ onMounted(async () => {
|
|||||||
error.value = e?.message || 'Erreur de chargement'
|
error.value = e?.message || 'Erreur de chargement'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update mobile flag on resize.
|
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
isMobileScreen.value = window.innerWidth < 768
|
isMobileScreen.value = window.innerWidth < 768
|
||||||
})
|
})
|
||||||
@@ -87,13 +96,13 @@ onMounted(async () => {
|
|||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<p class="msg">
|
<p class="msg">
|
||||||
Carte O optimisée desktop. Retournez sur grand écran pour explorer la mindmap interactive.
|
Carte O optimisee desktop. Retournez sur grand ecran pour explorer la mindmap interactive.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Loading state -->
|
<!-- Loading state -->
|
||||||
<div v-else-if="!data && !error" class="state">
|
<div v-else-if="!data && !error" class="state">
|
||||||
<span>Chargement de la Carte O…</span>
|
<span>Chargement de la Carte O...</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Error state -->
|
<!-- Error state -->
|
||||||
@@ -107,11 +116,12 @@ onMounted(async () => {
|
|||||||
:nodes="data.nodes"
|
:nodes="data.nodes"
|
||||||
:edges="data.edges"
|
:edges="data.edges"
|
||||||
:family-colors="familyColors"
|
:family-colors="familyColors"
|
||||||
@node-click="selectedNode = $event"
|
@node-click="onNodeClick"
|
||||||
/>
|
/>
|
||||||
<CarteOModal
|
<CarteOContextMenu
|
||||||
:node="selectedNode"
|
:node="selectedNode"
|
||||||
:family-colors="familyColors"
|
:x="contextX"
|
||||||
|
:y="contextY"
|
||||||
@close="selectedNode = null"
|
@close="selectedNode = null"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
181
src/components/vue/EmbedDynamique.vue
Normal file
181
src/components/vue/EmbedDynamique.vue
Normal file
@@ -0,0 +1,181 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { ref, computed, onMounted, onUnmounted } from 'vue'
|
||||||
|
|
||||||
|
interface JournalItem {
|
||||||
|
id: string
|
||||||
|
platform: 'substack' | 'gitea' | 'github' | 'instagram' | 'castopod' | 'blog' | 'linkedin'
|
||||||
|
hashtag: string
|
||||||
|
date: string
|
||||||
|
titre: string
|
||||||
|
extrait: string
|
||||||
|
url: string
|
||||||
|
thumbnail: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
const selectedItem = ref<JournalItem | null>(null)
|
||||||
|
const iframeRef = ref<HTMLIFrameElement | null>(null)
|
||||||
|
const skeletonHidden = ref(false)
|
||||||
|
|
||||||
|
const onJournalItemClick = (e: Event) => {
|
||||||
|
const ce = e as CustomEvent
|
||||||
|
if (ce.detail?.item) selectedItem.value = ce.detail.item
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
window.addEventListener('journal-item-click', onJournalItemClick as EventListener)
|
||||||
|
})
|
||||||
|
onUnmounted(() => {
|
||||||
|
window.removeEventListener('journal-item-click', onJournalItemClick as EventListener)
|
||||||
|
})
|
||||||
|
|
||||||
|
const reset = () => {
|
||||||
|
selectedItem.value = null
|
||||||
|
skeletonHidden.value = false
|
||||||
|
}
|
||||||
|
|
||||||
|
const onIframeLoad = () => {
|
||||||
|
if (iframeRef.value) {
|
||||||
|
iframeRef.value.classList.remove('opacity-0')
|
||||||
|
iframeRef.value.classList.add('opacity-100')
|
||||||
|
}
|
||||||
|
skeletonHidden.value = true
|
||||||
|
}
|
||||||
|
|
||||||
|
const extractInstaShortcode = (url: string): string | null => {
|
||||||
|
const m = url.match(/\/(p|reel)\/([^\/\?#]+)/)
|
||||||
|
return m ? m[2] : null
|
||||||
|
}
|
||||||
|
|
||||||
|
const embedUrl = computed(() => {
|
||||||
|
if (!selectedItem.value) return null
|
||||||
|
const item = selectedItem.value
|
||||||
|
if (item.platform === 'substack') {
|
||||||
|
return item.url.includes('?') ? item.url + '&embed=1' : item.url + '?embed=1'
|
||||||
|
}
|
||||||
|
if (item.platform === 'instagram') {
|
||||||
|
const sc = extractInstaShortcode(item.url)
|
||||||
|
return sc ? `https://www.instagram.com/p/${sc}/embed/` : null
|
||||||
|
}
|
||||||
|
return null
|
||||||
|
})
|
||||||
|
|
||||||
|
const platformLabel = (p: string) => {
|
||||||
|
const labels: Record<string, string> = {
|
||||||
|
substack: 'Substack',
|
||||||
|
instagram: 'Instagram',
|
||||||
|
gitea: 'Gitea',
|
||||||
|
github: 'GitHub',
|
||||||
|
castopod: 'Podcast',
|
||||||
|
blog: 'Blog',
|
||||||
|
linkedin: 'LinkedIn',
|
||||||
|
}
|
||||||
|
return labels[p] || p
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatDate = (iso: string) => {
|
||||||
|
try {
|
||||||
|
const d = new Date(iso)
|
||||||
|
return isNaN(d.getTime())
|
||||||
|
? ''
|
||||||
|
: `${String(d.getDate()).padStart(2, '0')}/${String(d.getMonth() + 1).padStart(2, '0')}`
|
||||||
|
} catch {
|
||||||
|
return ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="embed-dynamique h-full flex flex-col relative">
|
||||||
|
|
||||||
|
<!-- DEFAULT : iframe AEP (aucun item selectionne) -->
|
||||||
|
<div v-if="!selectedItem" class="h-full">
|
||||||
|
<div class="relative h-full bg-neutral-100">
|
||||||
|
<div
|
||||||
|
v-if="!skeletonHidden"
|
||||||
|
id="embed-skeleton"
|
||||||
|
class="absolute inset-0 flex items-center justify-center bg-neutral-50 animate-pulse"
|
||||||
|
>
|
||||||
|
<span class="text-neutral-400 text-sm">Chargement de la carte AEP...</span>
|
||||||
|
</div>
|
||||||
|
<iframe
|
||||||
|
src="https://aep.trans-former.fr/agences"
|
||||||
|
title="Carte AEP"
|
||||||
|
class="w-full h-full border-0 opacity-0 transition-opacity duration-500"
|
||||||
|
sandbox="allow-scripts allow-same-origin allow-popups allow-forms"
|
||||||
|
@load="onIframeLoad"
|
||||||
|
ref="iframeRef"
|
||||||
|
></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- EMBED MODE : teaser + embed live ou carte incitative -->
|
||||||
|
<div v-else class="h-full flex flex-col overflow-y-auto">
|
||||||
|
|
||||||
|
<!-- Header : reset + hashtag -->
|
||||||
|
<div class="flex items-center justify-between px-4 py-2 border-b border-neutral-200 bg-white sticky top-0 z-10">
|
||||||
|
<button
|
||||||
|
class="text-xs text-neutral-500 hover:text-neutral-900 flex items-center gap-1"
|
||||||
|
@click="reset"
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
- Retour a la carte
|
||||||
|
</button>
|
||||||
|
<span class="text-xs text-neutral-400" style="font-family: 'Courier New', Courier, monospace;">
|
||||||
|
{{ selectedItem.hashtag }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Teaser -->
|
||||||
|
<div class="px-4 py-3 border-b border-neutral-100 bg-neutral-50">
|
||||||
|
<p class="text-[11px] text-neutral-500 mb-1">{{ formatDate(selectedItem.date) }} - {{ selectedItem.platform }}</p>
|
||||||
|
<h3 class="text-sm font-semibold text-neutral-900 leading-snug mb-1">{{ selectedItem.titre }}</h3>
|
||||||
|
<p v-if="selectedItem.extrait" class="text-xs text-neutral-600 leading-relaxed line-clamp-3">
|
||||||
|
{{ selectedItem.extrait }}
|
||||||
|
</p>
|
||||||
|
<img
|
||||||
|
v-if="selectedItem.thumbnail"
|
||||||
|
:src="selectedItem.thumbnail"
|
||||||
|
:alt="selectedItem.titre"
|
||||||
|
class="mt-2 w-full max-h-28 object-cover rounded"
|
||||||
|
loading="lazy"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Embed live (Substack ou Instagram) -->
|
||||||
|
<div v-if="embedUrl" class="flex-1 min-h-[200px] bg-white">
|
||||||
|
<iframe
|
||||||
|
:src="embedUrl"
|
||||||
|
class="w-full h-full border-0 min-h-[300px]"
|
||||||
|
:title="selectedItem.titre"
|
||||||
|
loading="lazy"
|
||||||
|
sandbox="allow-scripts allow-same-origin allow-popups allow-forms allow-top-navigation"
|
||||||
|
></iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Carte incitative (autres plateformes) -->
|
||||||
|
<div v-else class="flex-1 flex flex-col items-start justify-center px-4 py-6">
|
||||||
|
<p class="text-xs text-neutral-500 mb-3 italic">Embed non disponible pour cette plateforme.</p>
|
||||||
|
<a
|
||||||
|
:href="selectedItem.url"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
class="inline-block px-4 py-2 bg-neutral-900 text-white text-sm rounded-lg hover:bg-neutral-700 transition-colors"
|
||||||
|
>
|
||||||
|
Voir sur {{ platformLabel(selectedItem.platform) }} ->
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- CTA propagation universel -->
|
||||||
|
<div class="px-4 py-3 border-t border-neutral-100">
|
||||||
|
<a
|
||||||
|
:href="selectedItem.url"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
class="text-xs text-neutral-500 hover:text-neutral-900 underline"
|
||||||
|
>
|
||||||
|
Continuer sur {{ platformLabel(selectedItem.platform) }} - commenter, partager
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -77,6 +77,15 @@ onUnmounted(() => {
|
|||||||
window.removeEventListener('platform-filter-change', onPlatformChange as EventListener)
|
window.removeEventListener('platform-filter-change', onPlatformChange as EventListener)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const onItemClick = (item: JournalItem, e: MouseEvent) => {
|
||||||
|
if (e.metaKey || e.ctrlKey) {
|
||||||
|
window.open(item.url, '_blank', 'noopener')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
e.preventDefault()
|
||||||
|
window.dispatchEvent(new CustomEvent('journal-item-click', { detail: { item } }))
|
||||||
|
}
|
||||||
|
|
||||||
const visibleItems = computed(() => {
|
const visibleItems = computed(() => {
|
||||||
const keys = Object.keys(filters.value)
|
const keys = Object.keys(filters.value)
|
||||||
let filtered: JournalItem[]
|
let filtered: JournalItem[]
|
||||||
@@ -156,6 +165,7 @@ const platformLabel = (p: string) => {
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="block group"
|
class="block group"
|
||||||
|
@click="onItemClick(item, $event)"
|
||||||
>
|
>
|
||||||
<div class="flex items-baseline gap-2 text-[11px] text-neutral-500 mb-1">
|
<div class="flex items-baseline gap-2 text-[11px] text-neutral-500 mb-1">
|
||||||
<time>{{ formatDate(item.date) }}</time>
|
<time>{{ formatDate(item.date) }}</time>
|
||||||
|
|||||||
@@ -22,12 +22,17 @@ const resetFade = () => {
|
|||||||
}, 3000);
|
}, 3000);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const emitPositionChange = (pos: number) => {
|
||||||
|
document.dispatchEvent(new CustomEvent('swipe-position-change', { detail: { pos } }));
|
||||||
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
if (!emblaApi.value) return;
|
if (!emblaApi.value) return;
|
||||||
emblaApi.value.on('select', () => {
|
emblaApi.value.on('select', () => {
|
||||||
if (!emblaApi.value) return;
|
if (!emblaApi.value) return;
|
||||||
selectedIndex.value = emblaApi.value.selectedScrollSnap();
|
selectedIndex.value = emblaApi.value.selectedScrollSnap();
|
||||||
sessionStorage.setItem('pc-position', String(selectedIndex.value));
|
sessionStorage.setItem('pc-position', String(selectedIndex.value));
|
||||||
|
emitPositionChange(selectedIndex.value);
|
||||||
resetFade();
|
resetFade();
|
||||||
});
|
});
|
||||||
const saved = sessionStorage.getItem('pc-position');
|
const saved = sessionStorage.getItem('pc-position');
|
||||||
@@ -35,6 +40,13 @@ onMounted(() => {
|
|||||||
const idx = Number(saved);
|
const idx = Number(saved);
|
||||||
if (!Number.isNaN(idx)) emblaApi.value.scrollTo(idx, false);
|
if (!Number.isNaN(idx)) emblaApi.value.scrollTo(idx, false);
|
||||||
}
|
}
|
||||||
|
// Ecoute les clics de la MobileTabBar
|
||||||
|
document.addEventListener('mobile-tab-scroll', (e: Event) => {
|
||||||
|
const detail = (e as CustomEvent<{ pos: number }>).detail;
|
||||||
|
if (detail && typeof detail.pos === 'number') {
|
||||||
|
emblaApi.value?.scrollTo(detail.pos);
|
||||||
|
}
|
||||||
|
});
|
||||||
resetFade();
|
resetFade();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ interface Props {
|
|||||||
|
|
||||||
const {
|
const {
|
||||||
title = 'trans-former.fr',
|
title = 'trans-former.fr',
|
||||||
description = 'Page-cerveau : journal, mindmap AEP, Insta',
|
description = "Architecture d'ecologie politique - journal, carte conceptuelle, manifeste",
|
||||||
} = Astro.props;
|
} = Astro.props;
|
||||||
---
|
---
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
|
|||||||
@@ -7,10 +7,12 @@ import ColCentre from '../components/astro/ColCentre.astro';
|
|||||||
import ColInsta from '../components/astro/ColInsta.astro';
|
import ColInsta from '../components/astro/ColInsta.astro';
|
||||||
import SwipeContainer from '../components/vue/SwipeContainer.vue';
|
import SwipeContainer from '../components/vue/SwipeContainer.vue';
|
||||||
import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
||||||
|
import MobileTabBar from '../components/astro/MobileTabBar.astro';
|
||||||
import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
||||||
---
|
---
|
||||||
<BaseLayout title="trans-former.fr">
|
<BaseLayout title="trans-former.fr">
|
||||||
<HamburgerMenu />
|
<HamburgerMenu />
|
||||||
|
<MobileTabBar />
|
||||||
<PopupOnboarding />
|
<PopupOnboarding />
|
||||||
|
|
||||||
<!-- Desktop : grid 3 colonnes -->
|
<!-- Desktop : grid 3 colonnes -->
|
||||||
@@ -20,8 +22,8 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
|||||||
<aside class="border-l border-neutral-200 overflow-y-auto"><ColInsta /></aside>
|
<aside class="border-l border-neutral-200 overflow-y-auto"><ColInsta /></aside>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Mobile : SwipeContainer Vue island -->
|
<!-- Mobile : SwipeContainer Vue island - decale de 44px pour la tabbar -->
|
||||||
<div class="md:hidden h-screen overflow-hidden">
|
<div class="md:hidden overflow-hidden" style="height: calc(100dvh - 44px); margin-top: 44px;">
|
||||||
<SwipeContainer client:load>
|
<SwipeContainer client:load>
|
||||||
<ColJournal slot="left" />
|
<ColJournal slot="left" />
|
||||||
<ColCentre slot="center" />
|
<ColCentre slot="center" />
|
||||||
|
|||||||
@@ -1 +1,23 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
|
||||||
|
/* Typographie monospace - labels editoriaux (V1.1-G.1) */
|
||||||
|
.font-mono-editorial,
|
||||||
|
.hashtag-label,
|
||||||
|
.nature-badge,
|
||||||
|
.carte-o-label {
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Corps de texte pages statiques (V1.1-G.2) */
|
||||||
|
.prose-page {
|
||||||
|
font-size: 1.0625rem;
|
||||||
|
line-height: 1.75;
|
||||||
|
color: #374151;
|
||||||
|
max-width: 65ch;
|
||||||
|
}
|
||||||
|
.prose-page h1, .prose-page h2, .prose-page h3 {
|
||||||
|
color: #111827;
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user