Compare commits
9 Commits
4a29a9592a
...
feat/v12-q
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7791054ca0 | ||
|
|
78dde6a2a3 | ||
|
|
3360daa61f | ||
|
|
d2d3629965 | ||
|
|
272fb5c181 | ||
|
|
6ea256f8a4 | ||
|
|
95b75d4866 | ||
|
|
046f34ec8b | ||
|
|
61e53a04d5 |
@@ -3,12 +3,11 @@
|
||||
// BAS : iframe carte AEP + scroll articles Substack (PC4).
|
||||
import CarteOWrapper from '../vue/CarteOWrapper.vue';
|
||||
import ChatbotV2 from '../vue/ChatbotV2.vue';
|
||||
import IframeCarteAEP from './IframeCarteAEP.astro';
|
||||
import ScrollArticles from './ScrollArticles.astro';
|
||||
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
||||
---
|
||||
<div id="col-centre-grid" class="h-full grid grid-rows-2 gap-2 p-2">
|
||||
<div id="col-centre-grid" class="h-full grid gap-2 p-2" style="grid-template-rows: 1fr 2fr;">
|
||||
<!-- HAUT 50% : tabs Carte O / Chatbot -->
|
||||
<section id="col-centre-haut" 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">
|
||||
<button
|
||||
type="button"
|
||||
@@ -56,6 +55,15 @@ import ScrollArticles from './ScrollArticles.astro';
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Drag handle desktop - redimensionnement vertical md+ -->
|
||||
<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"
|
||||
@@ -66,12 +74,11 @@ import ScrollArticles from './ScrollArticles.astro';
|
||||
<span class="block w-8 h-0.5 bg-neutral-400 rounded-full"></span>
|
||||
</button>
|
||||
|
||||
<!-- BAS 50% : iframe carte AEP + scroll articles Substack (PC4) -->
|
||||
<section class="border border-neutral-200 rounded overflow-y-auto bg-white">
|
||||
<!-- 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]">
|
||||
<IframeCarteAEP />
|
||||
<EmbedDynamique client:visible />
|
||||
</div>
|
||||
<ScrollArticles />
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -90,8 +97,8 @@ import ScrollArticles from './ScrollArticles.astro';
|
||||
haut.style.minHeight = '0';
|
||||
poignee?.setAttribute('aria-label', 'Deployer la Carte O');
|
||||
} else {
|
||||
grid.classList.add('grid-rows-2');
|
||||
grid.style.gridTemplateRows = '';
|
||||
grid.classList.remove('grid-rows-2');
|
||||
grid.style.gridTemplateRows = '1fr 2fr';
|
||||
haut.style.overflow = '';
|
||||
haut.style.minHeight = '';
|
||||
poignee?.setAttribute('aria-label', 'Replier la Carte O');
|
||||
@@ -109,6 +116,80 @@ import ScrollArticles from './ScrollArticles.astro';
|
||||
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 33.33;
|
||||
};
|
||||
|
||||
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 default 1/3 + 2/3
|
||||
dragHandle.addEventListener('dblclick', () => {
|
||||
gridEl.style.gridTemplateRows = '1fr 2fr';
|
||||
gridEl.classList.remove('grid-rows-2');
|
||||
sessionStorage.removeItem('tf-centre-rows');
|
||||
});
|
||||
}
|
||||
|
||||
// Tabs toggle.
|
||||
const tabs = document.querySelectorAll<HTMLButtonElement>('[data-tab]');
|
||||
const panels = document.querySelectorAll<HTMLElement>('[data-tab-panel]');
|
||||
|
||||
@@ -5,19 +5,19 @@ const categories = [
|
||||
{
|
||||
id: 'politique',
|
||||
label: 'Politique',
|
||||
color: '#1d4ed8',
|
||||
color: '#B5443A',
|
||||
hashtags: ['#politique', '#aep-politique'],
|
||||
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: 'substack', label: 'Substack', url: 'https://julesneny.substack.com' },
|
||||
{ id: 'substack', label: 'Article', url: 'https://julesneny.substack.com' },
|
||||
],
|
||||
hasSelector: true,
|
||||
},
|
||||
{
|
||||
id: 'art',
|
||||
label: 'Art',
|
||||
color: '#dc2626',
|
||||
color: '#5B6B3A',
|
||||
hashtags: ['#peinture', '#art'],
|
||||
plateformes: [
|
||||
{ id: 'instagram', label: '@julesneny', url: 'https://www.instagram.com/julesneny/' },
|
||||
@@ -27,7 +27,7 @@ const categories = [
|
||||
{
|
||||
id: 'outils',
|
||||
label: 'Outils',
|
||||
color: '#16a34a',
|
||||
color: '#475569',
|
||||
hashtags: ['#stack', '#building-public'],
|
||||
plateformes: [
|
||||
{ id: 'gitea', label: 'Gitea', url: 'https://git.trans-former.fr/jules' },
|
||||
@@ -68,7 +68,7 @@ const categories = [
|
||||
type="button"
|
||||
data-platform-id={p.id}
|
||||
class="platform-pill"
|
||||
style="font-family:'Courier New',Courier,monospace;font-size:12px;padding:2px 8px;border-radius:12px;cursor:pointer;border:1px solid #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}
|
||||
</button>
|
||||
@@ -219,11 +219,11 @@ const categories = [
|
||||
pills.forEach((pill) => {
|
||||
const pid = pill.dataset.platformId;
|
||||
if (!active || pid === active) {
|
||||
pill.style.background = '#1d4ed8';
|
||||
pill.style.background = '#B5443A';
|
||||
pill.style.color = '#fff';
|
||||
} else {
|
||||
pill.style.background = 'transparent';
|
||||
pill.style.color = '#1d4ed8';
|
||||
pill.style.color = '#B5443A';
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -1,36 +1,94 @@
|
||||
---
|
||||
// Footer.astro - CTA infolettre Kit + nav footer
|
||||
// Footer.astro - V1.2-L : 1 ligne 3 zones (nav / subscribe / logos RS)
|
||||
// Style monochrome encre #0F172A palette terre V1.2
|
||||
---
|
||||
<footer class="border-t border-neutral-200 px-6 py-8 text-sm bg-white">
|
||||
<div class="max-w-3xl mx-auto">
|
||||
<h3 class="font-semibold mb-1" style="font-family: 'Courier New', Courier, monospace;">
|
||||
S'abonner a la lettre
|
||||
</h3>
|
||||
<p class="text-neutral-600 text-xs mb-3">
|
||||
1-2 emails par mois - pas de spam - desinscription en 1 clic.
|
||||
</p>
|
||||
<form id="subscribe-form" class="flex gap-2 max-w-md">
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
required
|
||||
placeholder="ton@email.fr"
|
||||
class="flex-1 px-3 py-2 border border-neutral-300 rounded-lg text-sm focus:outline-none focus:border-neutral-900"
|
||||
/>
|
||||
<button
|
||||
type="submit"
|
||||
class="px-4 py-2 bg-neutral-900 text-white rounded-lg text-sm hover:bg-neutral-700 transition-colors"
|
||||
>
|
||||
s'abonner
|
||||
</button>
|
||||
</form>
|
||||
<p id="subscribe-msg" class="mt-2 text-xs text-neutral-500 min-h-[1rem]"></p>
|
||||
<nav class="mt-6 flex flex-wrap gap-4 text-xs text-neutral-500">
|
||||
<a href="/manifeste" class="hover:text-neutral-900">Manifeste</a>
|
||||
<a href="/a-propos" class="hover:text-neutral-900">A propos</a>
|
||||
<a href="/mentions-legales" class="hover:text-neutral-900">Mentions legales</a>
|
||||
<a href="https://www.instagram.com/aep.politique/" target="_blank" rel="noopener" class="hover:text-neutral-900">@aep.politique</a>
|
||||
<footer class="border-t border-neutral-200 px-6 py-4 bg-[#FAFAF7] text-[#0F172A]">
|
||||
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-3 md:gap-6">
|
||||
|
||||
<!-- ZONE GAUCHE : liens nav -->
|
||||
<nav class="flex gap-4 text-xs justify-center md:justify-start">
|
||||
<a href="/manifeste" class="opacity-60 hover:opacity-100 transition-opacity">Manifeste</a>
|
||||
<a href="/a-propos" class="opacity-60 hover:opacity-100 transition-opacity">A propos</a>
|
||||
<a href="/mentions-legales" class="opacity-60 hover:opacity-100 transition-opacity">Mentions legales</a>
|
||||
</nav>
|
||||
|
||||
<!-- ZONE CENTRE : subscribe form compact (endpoint /api/subscribe V1.1-I) -->
|
||||
<div class="flex flex-col items-center gap-1">
|
||||
<form id="subscribe-form" class="flex gap-2 items-center">
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
required
|
||||
placeholder="ton@email.fr"
|
||||
class="px-3 py-1.5 border border-neutral-300 rounded text-xs focus:outline-none focus:border-[#0F172A] bg-white"
|
||||
/>
|
||||
<button
|
||||
type="submit"
|
||||
class="px-3 py-1.5 bg-[#0F172A] text-white rounded text-xs hover:bg-[#475569] transition-colors whitespace-nowrap"
|
||||
>
|
||||
s'abonner
|
||||
</button>
|
||||
</form>
|
||||
<p id="subscribe-msg" class="text-[10px] text-neutral-500 min-h-[0.75rem]"></p>
|
||||
</div>
|
||||
|
||||
<!-- ZONE DROITE : logos RS cliquables (SVG inline, fill #0F172A 60%) -->
|
||||
<div class="flex gap-3 items-center justify-center md:justify-end text-[#0F172A]">
|
||||
<!-- Instagram -->
|
||||
<a
|
||||
href="https://www.instagram.com/aep.politique/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
aria-label="Instagram @aep.politique"
|
||||
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="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"/>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<!-- GitHub (TODO: si 404 connu, fallback https://git.trans-former.fr/jules Gitea) -->
|
||||
<a
|
||||
href="https://github.com/julesneny"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
aria-label="GitHub"
|
||||
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="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<!-- LinkedIn TODO: confirmer URL LinkedIn Jules -->
|
||||
<a
|
||||
href="https://www.linkedin.com/in/jules-neny/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
aria-label="LinkedIn"
|
||||
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="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.063 2.063 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<!-- Substack -->
|
||||
<a
|
||||
href="https://julesneny.substack.com"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
aria-label="Substack"
|
||||
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="M22.539 8.242H1.46V5.406h21.08v2.836zM1.46 10.812V24L12 18.11 22.54 24V10.812H1.46zM22.54 0H1.46v2.836h21.08V0z"/>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<!-- TODO V1.3 : ajouter logo Pinterest quand compte créé -->
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
@@ -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>
|
||||
208
src/components/vue/EmbedDynamique.vue
Normal file
208
src/components/vue/EmbedDynamique.vue
Normal file
@@ -0,0 +1,208 @@
|
||||
<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 wrapperRef = ref<HTMLDivElement | null>(null)
|
||||
const skeletonHidden = ref(false)
|
||||
|
||||
// Force rendu desktop de l'iframe AEP : viewport simulée 1440px + scale dynamique
|
||||
const VIEWPORT_W = 1440
|
||||
const iframeScale = ref(0.42)
|
||||
let resizeObs: ResizeObserver | null = null
|
||||
|
||||
const updateScale = () => {
|
||||
if (!wrapperRef.value) return
|
||||
const w = wrapperRef.value.clientWidth
|
||||
if (w > 0) iframeScale.value = w / VIEWPORT_W
|
||||
}
|
||||
|
||||
const iframeStyle = computed(() => ({
|
||||
width: VIEWPORT_W + 'px',
|
||||
height: (100 / iframeScale.value) + '%',
|
||||
transform: `scale(${iframeScale.value})`,
|
||||
transformOrigin: '0 0',
|
||||
}))
|
||||
|
||||
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)
|
||||
if (wrapperRef.value && typeof ResizeObserver !== 'undefined') {
|
||||
updateScale()
|
||||
resizeObs = new ResizeObserver(updateScale)
|
||||
resizeObs.observe(wrapperRef.value)
|
||||
}
|
||||
})
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener('journal-item-click', onJournalItemClick as EventListener)
|
||||
resizeObs?.disconnect()
|
||||
resizeObs = null
|
||||
})
|
||||
|
||||
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 ref="wrapperRef" class="relative h-full bg-neutral-100 overflow-hidden">
|
||||
<div
|
||||
v-if="!skeletonHidden"
|
||||
id="embed-skeleton"
|
||||
class="absolute inset-0 flex items-center justify-center bg-neutral-50 animate-pulse z-10"
|
||||
>
|
||||
<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="absolute top-0 left-0 border-0 opacity-0 transition-opacity duration-500"
|
||||
:style="iframeStyle"
|
||||
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)
|
||||
})
|
||||
|
||||
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 keys = Object.keys(filters.value)
|
||||
let filtered: JournalItem[]
|
||||
@@ -156,6 +165,7 @@ const platformLabel = (p: string) => {
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="block group"
|
||||
@click="onItemClick(item, $event)"
|
||||
>
|
||||
<div class="flex items-baseline gap-2 text-[11px] text-neutral-500 mb-1">
|
||||
<time>{{ formatDate(item.date) }}</time>
|
||||
|
||||
Reference in New Issue
Block a user