Compare commits
23 Commits
feat/pc2
...
feat/v12-k
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
95b75d4866 | ||
|
|
046f34ec8b | ||
|
|
61e53a04d5 | ||
|
|
4a29a9592a | ||
|
|
79004573f1 | ||
|
|
d8d3af28a0 | ||
|
|
1e1c56db2f | ||
|
|
44ffe84d5b | ||
|
|
c18328517a | ||
|
|
beb8e9a0bd | ||
|
|
5642690829 | ||
|
|
62794459ac | ||
|
|
5589678abc | ||
|
|
be7fc09085 | ||
|
|
fccbc6d19c | ||
|
|
98f1257ece | ||
|
|
e22dd6654a | ||
|
|
6aa5a7143a | ||
|
|
68e511be7a | ||
|
|
0c53f450c3 | ||
|
|
64a3cc7147 | ||
|
|
32bdc9a2e5 | ||
|
|
71053ec9a6 |
18
.env.example
Normal file
18
.env.example
Normal file
@@ -0,0 +1,18 @@
|
||||
# Kit (ex-ConvertKit) - newsletter infolettre
|
||||
KIT_API_SECRET_V4=kit_xxx
|
||||
|
||||
# Behold.so feed IDs (voir docs/BEHOLD-SETUP.md)
|
||||
# 1) Inscris-toi sur https://behold.so/dashboard
|
||||
# 2) Connecte les 2 comptes Insta (@aep.politique + @julesneny)
|
||||
# 3) Recupere les feed IDs et copie ce fichier vers .env.local puis remplis ci-dessous
|
||||
PUBLIC_BEHOLD_AEP=
|
||||
PUBLIC_BEHOLD_JULESNENY=
|
||||
|
||||
# Journal unifie (PC6) - URL JSON agrege par n8n cron nocturne
|
||||
# Override en local : pointer vers un mock /public/data/journal.json par exemple
|
||||
PUBLIC_JOURNAL_URL=https://data.trans-former.fr/journal.json
|
||||
|
||||
# Chatbot upstream (PC7) - URL backend chatbot AEP
|
||||
# V1 : chatbot AEP classique (Mistral Small + 120 fiches)
|
||||
# V1.5 : switch vers LightRAG-PE (1 ligne)
|
||||
CHATBOT_UPSTREAM=https://aep.trans-former.fr/api/chatbot
|
||||
@@ -1,10 +1,15 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import vue from '@astrojs/vue';
|
||||
import node from '@astrojs/node';
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
|
||||
// https://astro.build/config
|
||||
// PC7 — bascule SSR (mode 'server' Astro 6) pour endpoint /api/chatbot proxy.
|
||||
// Toutes les pages publiques restent statiques via `export const prerender = true`.
|
||||
// Coolify deploy (PC8) : `node ./dist/server/entry.mjs` (Node adapter standalone).
|
||||
export default defineConfig({
|
||||
output: 'server',
|
||||
adapter: node({ mode: 'standalone' }),
|
||||
integrations: [vue()],
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
|
||||
49
docs/BEHOLD-SETUP.md
Normal file
49
docs/BEHOLD-SETUP.md
Normal file
@@ -0,0 +1,49 @@
|
||||
# Setup Behold pour embeds Insta
|
||||
|
||||
Page cerveau col D (`ColInsta.astro`) consomme 2 feeds Insta via [Behold.so](https://behold.so) (gratuit, 2 feeds, sync 1h, sans login user).
|
||||
|
||||
## Etapes
|
||||
|
||||
1. Creer compte sur https://behold.so (gratuit jusqu'a 2 feeds)
|
||||
2. Connecter `@aep.politique` (Login Instagram via Facebook Business)
|
||||
3. Connecter `@julesneny` (idem)
|
||||
4. Recuperer les 2 feed IDs depuis le dashboard Behold
|
||||
5. Copier `.env.example` vers `.env.local` (a la racine du repo)
|
||||
6. Remplir `.env.local` :
|
||||
|
||||
```bash
|
||||
PUBLIC_BEHOLD_AEP=xxxxxxxxxxxx
|
||||
PUBLIC_BEHOLD_JULESNENY=yyyyyyyyyyyy
|
||||
```
|
||||
|
||||
7. Relancer `npm run dev` ou rebuild + redeploy (PC8)
|
||||
|
||||
## Comportement par defaut
|
||||
|
||||
Sans feed IDs valides (placeholder), le composant `InstaFeed.vue` affiche un fallback gracieux :
|
||||
- Titre du compte (lien direct vers Instagram)
|
||||
- Bio courte
|
||||
- Bouton "Voir sur Instagram"
|
||||
|
||||
C'est OK pour un V1 visuel "complet". UX degradee mais pas casse.
|
||||
|
||||
## Ressources techniques
|
||||
|
||||
- API Behold : `https://feeds.behold.so/{feedId}` -> JSON array de posts
|
||||
- Sync : 1h (Behold rafraichit depuis Insta automatiquement)
|
||||
- CDN : images servies depuis Behold (pas de hot-link Insta direct)
|
||||
|
||||
## CSP (PC8 deploy)
|
||||
|
||||
Si une CSP est ajoutee au deploy Caddy, prevoir :
|
||||
|
||||
```
|
||||
connect-src 'self' https://feeds.behold.so;
|
||||
img-src 'self' data: https://feeds.behold.so https://*.cdninstagram.com;
|
||||
```
|
||||
|
||||
## Alternatives si Behold ne convient pas
|
||||
|
||||
- **EmbedSocial** (~$8/mois) : https://embedsocial.com
|
||||
- **Scrape n8n nocturne** (V1.5) : Insta Graph API via compte Business + Page Facebook ; coherent avec PC6 journal-aggregate
|
||||
- **Posts manuels oEmbed** (V2) : Jules selectionne 6-10 URLs, oEmbed post-by-post
|
||||
147
docs/PC6-JOURNAL-N8N-SETUP.md
Normal file
147
docs/PC6-JOURNAL-N8N-SETUP.md
Normal file
@@ -0,0 +1,147 @@
|
||||
# PC6 — Setup journal unifié + n8n workflow
|
||||
|
||||
Spec : `0 INBOX/PROMPTS/page-cerveau-build/PROMPT-PC6-journal-n8n.md`
|
||||
Pilote : `0 INBOX/PROMPTS/page-cerveau-build/PILOTE-PC.md` (delta 5, delta 15)
|
||||
|
||||
## TL;DR
|
||||
|
||||
Le journal de la colonne G est alimenté par un cron n8n nocturne qui agrège plusieurs sources publiques (Gitéa Atom, Behold @aep, Behold @julesneny) et écrit un JSON statique servi par Caddy sur `data.trans-former.fr/journal.json`.
|
||||
|
||||
```
|
||||
n8n cron (3h00 UTC)
|
||||
-> fetch Gitéa Atom + Behold @aep + Behold @julesneny
|
||||
-> normalisation Code Node
|
||||
-> tri desc + top 100
|
||||
-> écrit /home/node/.n8n/journal/journal.json (volume Docker)
|
||||
-> Caddy data.trans-former.fr file_server expose ce fichier
|
||||
-> JournalList.vue fetch côté client (no rebuild Astro requis)
|
||||
```
|
||||
|
||||
## Sources V1 actives
|
||||
|
||||
| Plateforme | Hashtag | URL feed | Statut |
|
||||
|---|---|---|---|
|
||||
| Gitéa | `#stack` | `https://git.trans-former.fr/jules.atom` | ACTIF |
|
||||
| Behold @aep | `#aep-politique` | `https://feeds.behold.so/{PUBLIC_BEHOLD_AEP}` | conditionnel (skip si feed ID absent) |
|
||||
| Behold @julesneny | `#peinture` | `https://feeds.behold.so/{PUBLIC_BEHOLD_JULESNENY}` | conditionnel (skip si feed ID absent) |
|
||||
|
||||
## Sources skipped (V1 -> V1.5/V2)
|
||||
|
||||
| Plateforme | Hashtag | Raison |
|
||||
|---|---|---|
|
||||
| GitHub.com | `#stack` | username `julesneny` n'existe pas (HTTP 404). Pivot Gitéa pour le MVP. À reconfirmer si Jules a un autre handle GitHub public. |
|
||||
| Substack | `#politique` | `transformations.substack.com` est pris par "WoodHorse" (pas Jules). Handle Substack à confirmer avant V1.5. |
|
||||
| LinkedIn | `#building-public` | V2 (RSS via service tiers ou scrape) |
|
||||
| Castopod | `#podcast` | V2 (Castopod RSS prêt mais hors scope MVP) |
|
||||
| Blog `trans-former.fr` | `#manifeste` | V2 (post-PC8 deploy) |
|
||||
|
||||
## Format JSON
|
||||
|
||||
```json
|
||||
{
|
||||
"generatedAt": "2026-05-09T03:00:00Z",
|
||||
"items": [
|
||||
{
|
||||
"id": "gitea-2026-05-09-pc6",
|
||||
"platform": "gitea",
|
||||
"hashtag": "#stack",
|
||||
"date": "2026-05-09T01:01:00Z",
|
||||
"titre": "PC6 journal unifié + n8n agrégateur",
|
||||
"extrait": "...",
|
||||
"url": "https://git.trans-former.fr/jules/astro-site-cerveau/commit/...",
|
||||
"thumbnail": null
|
||||
}
|
||||
],
|
||||
"counts": { "total": N, "gitea": N, "instagram": N }
|
||||
}
|
||||
```
|
||||
|
||||
## Composant Vue
|
||||
|
||||
`src/components/vue/JournalList.vue` :
|
||||
- fetch `import.meta.env.PUBLIC_JOURNAL_URL` (défaut `https://data.trans-former.fr/journal.json`)
|
||||
- écoute `window.addEventListener('hashtag-filter-change', ...)` émis par ColJournal.astro
|
||||
- filtre par hashtag (vide ou tous cochés -> tout afficher ; tous décochés -> rien)
|
||||
- tri desc déjà fait côté n8n, le composant respecte l'ordre
|
||||
|
||||
Cabling : `src/components/astro/ColJournal.astro` importe et rend `<JournalList client:visible />` dans `#journal-list`.
|
||||
|
||||
## Variable d'env
|
||||
|
||||
`PUBLIC_JOURNAL_URL=https://data.trans-former.fr/journal.json` (`.env.example`)
|
||||
|
||||
Override possible en local pointant vers `/data/journal.json` (mock fourni dans `public/data/journal.json`).
|
||||
|
||||
## Setup VPS — étapes (ops, à valider Jules)
|
||||
|
||||
### 1. DNS
|
||||
|
||||
Dans OVH zone DNS `trans-former.fr` :
|
||||
|
||||
```
|
||||
data A 178.104.106.195 TTL 600
|
||||
```
|
||||
|
||||
Attendre propagation (~5min).
|
||||
|
||||
### 2. Volume Docker partagé n8n -> Caddy
|
||||
|
||||
Le container n8n monte `vps-kit_n8n_data:/home/node/.n8n`. On va simplement lire un fichier dans ce volume depuis Caddy.
|
||||
|
||||
Path source : `/var/lib/docker/volumes/vps-kit_n8n_data/_data/journal/journal.json`
|
||||
|
||||
```bash
|
||||
ssh vps-hetzner "mkdir -p /var/lib/docker/volumes/vps-kit_n8n_data/_data/journal && \
|
||||
chown 1000:1000 /var/lib/docker/volumes/vps-kit_n8n_data/_data/journal"
|
||||
```
|
||||
|
||||
### 3. Caddyfile bloc
|
||||
|
||||
Ajouter dans le Caddyfile (probablement `/etc/caddy/Caddyfile` ou `/opt/vps-kit/configs/Caddyfile`) :
|
||||
|
||||
```caddy
|
||||
data.trans-former.fr {
|
||||
root * /var/lib/docker/volumes/vps-kit_n8n_data/_data/journal
|
||||
file_server {
|
||||
index journal.json
|
||||
}
|
||||
encode gzip
|
||||
header {
|
||||
Cache-Control "public, max-age=300"
|
||||
Access-Control-Allow-Origin "https://trans-former.fr"
|
||||
}
|
||||
log {
|
||||
output file /var/log/caddy/data.log
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Backup + reload :
|
||||
```bash
|
||||
ssh vps-hetzner "cp /etc/caddy/Caddyfile /etc/caddy/Caddyfile.bak.$(date +%Y%m%d-%H%M%S) && \
|
||||
systemctl reload caddy && \
|
||||
systemctl status caddy --no-pager | head -10"
|
||||
```
|
||||
|
||||
### 4. Workflow n8n
|
||||
|
||||
Importer `docs/n8n-workflow-journal-aggregate.json` dans https://automate.trans-former.fr (UI -> Import from file).
|
||||
|
||||
Activer le toggle, vérifier le cron (`0 3 * * *`).
|
||||
|
||||
Configurer les credentials env n8n si besoin (Behold feed IDs) -> non bloquants si absents (workflow skip).
|
||||
|
||||
### 5. Smoke test
|
||||
|
||||
```bash
|
||||
# Run manuel (UI n8n -> Execute Workflow)
|
||||
ssh vps-hetzner "ls -la /var/lib/docker/volumes/vps-kit_n8n_data/_data/journal/"
|
||||
curl -sf https://data.trans-former.fr/journal.json | jq '.counts'
|
||||
```
|
||||
|
||||
## Backlog (hors scope PC6)
|
||||
|
||||
- Trigger rebuild Astro Coolify webhook (PC8)
|
||||
- Sources V2 : LinkedIn, Castopod, Blog, Substack (post handle confirmé)
|
||||
- Storage archivage long-terme (V1 = écrasement quotidien)
|
||||
- Real-time updates (V3)
|
||||
152
docs/n8n-workflow-journal-aggregate.json
Normal file
152
docs/n8n-workflow-journal-aggregate.json
Normal file
@@ -0,0 +1,152 @@
|
||||
{
|
||||
"name": "journal-aggregate",
|
||||
"nodes": [
|
||||
{
|
||||
"parameters": {
|
||||
"rule": {
|
||||
"interval": [
|
||||
{
|
||||
"field": "cronExpression",
|
||||
"expression": "0 3 * * *"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"id": "schedule-trigger",
|
||||
"name": "Cron-3h",
|
||||
"type": "n8n-nodes-base.scheduleTrigger",
|
||||
"typeVersion": 1.1,
|
||||
"position": [240, 320]
|
||||
},
|
||||
{
|
||||
"parameters": {
|
||||
"url": "https://git.trans-former.fr/jules.atom",
|
||||
"options": {
|
||||
"response": {
|
||||
"response": {
|
||||
"responseFormat": "text"
|
||||
}
|
||||
},
|
||||
"timeout": 15000
|
||||
}
|
||||
},
|
||||
"id": "fetch-gitea",
|
||||
"name": "Fetch-gitea",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"typeVersion": 4.1,
|
||||
"position": [460, 200]
|
||||
},
|
||||
{
|
||||
"parameters": {
|
||||
"url": "=https://feeds.behold.so/{{ $env.PUBLIC_BEHOLD_AEP || 'NOT_SET' }}",
|
||||
"options": {
|
||||
"response": {
|
||||
"response": {
|
||||
"neverError": true,
|
||||
"responseFormat": "json"
|
||||
}
|
||||
},
|
||||
"timeout": 15000
|
||||
}
|
||||
},
|
||||
"id": "fetch-behold-aep",
|
||||
"name": "Fetch-behold-aep",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"typeVersion": 4.1,
|
||||
"position": [460, 320]
|
||||
},
|
||||
{
|
||||
"parameters": {
|
||||
"url": "=https://feeds.behold.so/{{ $env.PUBLIC_BEHOLD_JULESNENY || 'NOT_SET' }}",
|
||||
"options": {
|
||||
"response": {
|
||||
"response": {
|
||||
"neverError": true,
|
||||
"responseFormat": "json"
|
||||
}
|
||||
},
|
||||
"timeout": 15000
|
||||
}
|
||||
},
|
||||
"id": "fetch-behold-julesneny",
|
||||
"name": "Fetch-behold-julesneny",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"typeVersion": 4.1,
|
||||
"position": [460, 440]
|
||||
},
|
||||
{
|
||||
"parameters": {
|
||||
"jsCode": "// Normalisation des 3 sources V1 vers le format JSON unifié\n// Sources : Gitéa Atom (XML), Behold @aep (JSON), Behold @julesneny (JSON)\n\nconst items = [];\n\n// ---- Helper parse Atom XML (Gitéa) ----\nfunction parseAtomGitea(xml) {\n const out = [];\n if (!xml || typeof xml !== 'string') return out;\n const entries = xml.split(/<entry>/i).slice(1);\n for (const raw of entries) {\n const block = '<entry>' + raw.split(/<\\/entry>/i)[0] + '</entry>';\n const title = (block.match(/<title>([\\s\\S]*?)<\\/title>/i) || [])[1] || '';\n const updated = (block.match(/<updated>([^<]+)<\\/updated>/i) || [])[1] || '';\n const link = (block.match(/<link[^>]*href=\"([^\"]+)\"/i) || [])[1] || '';\n const summary = (block.match(/<summary[^>]*>([\\s\\S]*?)<\\/summary>/i) || [])[1] || '';\n const id = (block.match(/<id>([^<]+)<\\/id>/i) || [])[1] || link || updated;\n if (!updated) continue;\n // Decode HTML entities basique + strip tags\n const decode = (s) => s\n .replace(/</g, '<')\n .replace(/>/g, '>')\n .replace(/"/g, '\"')\n .replace(/"/g, '\"')\n .replace(/
/g, ' ')\n .replace(/&/g, '&')\n .replace(/<[^>]+>/g, ' ')\n .replace(/\\s+/g, ' ')\n .trim();\n const titreClean = decode(title);\n const extrait = decode(summary).slice(0, 280);\n out.push({\n id: 'gitea-' + (id.slice(0, 80) || updated),\n platform: 'gitea',\n hashtag: '#stack',\n date: new Date(updated).toISOString(),\n titre: titreClean.slice(0, 140),\n extrait,\n url: link,\n thumbnail: null,\n });\n }\n return out;\n}\n\n// ---- Récupère payloads depuis les 3 nodes amont ----\nlet giteaXml = '';\ntry {\n const giteaItems = $('Fetch-gitea').all();\n if (giteaItems.length && giteaItems[0].json) {\n // HTTP node typeVersion 4.1 met le body brut dans .data si responseFormat=text\n giteaXml = giteaItems[0].json.data || giteaItems[0].json.body || '';\n if (typeof giteaXml !== 'string') giteaXml = String(giteaXml);\n }\n} catch (e) {\n console.log('Gitéa fetch missing:', e.message);\n}\n\nlet beholdAep = [];\ntry {\n const aep = $('Fetch-behold-aep').all();\n if (aep.length && aep[0].json && Array.isArray(aep[0].json.posts)) {\n beholdAep = aep[0].json.posts;\n } else if (aep.length && Array.isArray(aep[0].json)) {\n beholdAep = aep[0].json;\n }\n} catch (e) {\n console.log('Behold AEP fetch missing:', e.message);\n}\n\nlet beholdJulesneny = [];\ntry {\n const j = $('Fetch-behold-julesneny').all();\n if (j.length && j[0].json && Array.isArray(j[0].json.posts)) {\n beholdJulesneny = j[0].json.posts;\n } else if (j.length && Array.isArray(j[0].json)) {\n beholdJulesneny = j[0].json;\n }\n} catch (e) {\n console.log('Behold Julesneny fetch missing:', e.message);\n}\n\n// ---- Normalisation ----\nfor (const it of parseAtomGitea(giteaXml)) items.push(it);\n\nfor (const post of beholdAep) {\n if (!post || !post.id) continue;\n const ts = post.timestamp || post.taken_at || post.date;\n const caption = (post.caption || post.captionWithEmojis || '').toString();\n items.push({\n id: 'insta-aep-' + post.id,\n platform: 'instagram',\n hashtag: '#aep-politique',\n date: ts ? new Date(ts).toISOString() : new Date().toISOString(),\n titre: caption.slice(0, 100) || '@aep.politique',\n extrait: caption.slice(0, 280),\n url: post.permalink || post.url || 'https://instagram.com/aep.politique',\n thumbnail: post.thumbnailUrl || post.mediaUrl || (post.sizes && post.sizes.medium && post.sizes.medium.mediaUrl) || null,\n });\n}\n\nfor (const post of beholdJulesneny) {\n if (!post || !post.id) continue;\n const ts = post.timestamp || post.taken_at || post.date;\n const caption = (post.caption || post.captionWithEmojis || '').toString();\n items.push({\n id: 'insta-julesneny-' + post.id,\n platform: 'instagram',\n hashtag: '#peinture',\n date: ts ? new Date(ts).toISOString() : new Date().toISOString(),\n titre: caption.slice(0, 100) || '@julesneny',\n extrait: caption.slice(0, 280),\n url: post.permalink || post.url || 'https://instagram.com/julesneny',\n thumbnail: post.thumbnailUrl || post.mediaUrl || (post.sizes && post.sizes.medium && post.sizes.medium.mediaUrl) || null,\n });\n}\n\n// ---- Tri desc + cap top 100 ----\nitems.sort((a, b) => b.date.localeCompare(a.date));\nconst top = items.slice(0, 100);\n\nconst counts = {\n total: top.length,\n gitea: top.filter((i) => i.platform === 'gitea').length,\n instagram: top.filter((i) => i.platform === 'instagram').length,\n};\n\nreturn [\n {\n json: {\n generatedAt: new Date().toISOString(),\n items: top,\n counts,\n },\n },\n];"
|
||||
},
|
||||
"id": "normalise",
|
||||
"name": "Normalise",
|
||||
"type": "n8n-nodes-base.code",
|
||||
"typeVersion": 2,
|
||||
"position": [720, 320]
|
||||
},
|
||||
{
|
||||
"parameters": {
|
||||
"operation": "toJson",
|
||||
"fieldName": "data",
|
||||
"options": {
|
||||
"format": true
|
||||
}
|
||||
},
|
||||
"id": "to-json",
|
||||
"name": "To-json-string",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"typeVersion": 3.4,
|
||||
"position": [940, 320],
|
||||
"notesInFlow": false,
|
||||
"notes": "Transforme l'objet JS en string JSON pour Write Binary File"
|
||||
},
|
||||
{
|
||||
"parameters": {
|
||||
"operation": "write",
|
||||
"fileName": "/home/node/.n8n/journal/journal.json",
|
||||
"dataPropertyName": "data",
|
||||
"options": {}
|
||||
},
|
||||
"id": "write-file",
|
||||
"name": "Write-journal-json",
|
||||
"type": "n8n-nodes-base.readWriteFile",
|
||||
"typeVersion": 1,
|
||||
"position": [1160, 320]
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Cron-3h": {
|
||||
"main": [
|
||||
[
|
||||
{ "node": "Fetch-gitea", "type": "main", "index": 0 },
|
||||
{ "node": "Fetch-behold-aep", "type": "main", "index": 0 },
|
||||
{ "node": "Fetch-behold-julesneny", "type": "main", "index": 0 }
|
||||
]
|
||||
]
|
||||
},
|
||||
"Fetch-gitea": {
|
||||
"main": [[{ "node": "Normalise", "type": "main", "index": 0 }]]
|
||||
},
|
||||
"Fetch-behold-aep": {
|
||||
"main": [[{ "node": "Normalise", "type": "main", "index": 0 }]]
|
||||
},
|
||||
"Fetch-behold-julesneny": {
|
||||
"main": [[{ "node": "Normalise", "type": "main", "index": 0 }]]
|
||||
},
|
||||
"Normalise": {
|
||||
"main": [[{ "node": "To-json-string", "type": "main", "index": 0 }]]
|
||||
},
|
||||
"To-json-string": {
|
||||
"main": [[{ "node": "Write-journal-json", "type": "main", "index": 0 }]]
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"executionOrder": "v1",
|
||||
"saveExecutionProgress": true,
|
||||
"saveManualExecutions": true
|
||||
},
|
||||
"tags": [
|
||||
{ "name": "page-cerveau" },
|
||||
{ "name": "PC6" }
|
||||
]
|
||||
}
|
||||
1325
package-lock.json
generated
1325
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
13
package.json
13
package.json
@@ -6,17 +6,28 @@
|
||||
"node": ">=22.12.0"
|
||||
},
|
||||
"scripts": {
|
||||
"predev": "node scripts/build-carte-o.js",
|
||||
"dev": "astro dev",
|
||||
"prebuild": "node scripts/build-carte-o.js",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
"astro": "astro",
|
||||
"build:carte-o": "node scripts/build-carte-o.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/node": "^10.1.0",
|
||||
"@astrojs/vue": "^6.0.1",
|
||||
"@tailwindcss/vite": "^4.2.4",
|
||||
"@types/d3": "^7.4.3",
|
||||
"astro": "^6.3.1",
|
||||
"d3": "^7.9.0",
|
||||
"embla-carousel-vue": "^8.6.0",
|
||||
"globby": "^16.2.0",
|
||||
"gray-matter": "^4.0.3",
|
||||
"tailwindcss": "^4.2.4",
|
||||
"vue": "^3.5.34"
|
||||
},
|
||||
"devDependencies": {
|
||||
"js-yaml": "^4.1.1"
|
||||
}
|
||||
}
|
||||
|
||||
120
public/data/carte-o-source.yaml
Normal file
120
public/data/carte-o-source.yaml
Normal file
@@ -0,0 +1,120 @@
|
||||
# Carte O AEP - source editoriale manuelle
|
||||
# Edite manuellement apres chaque publication
|
||||
# Build: npm run carte-o -> public/data/carte-o.json
|
||||
# statut: gestation (draft/en cours) | edite (publie)
|
||||
# nature: essai (texte politique) | projet (projet archi)
|
||||
# niveau: 0 (centre) | 1 (concepts force) | 2 (thematiques/projets)
|
||||
|
||||
version: "1.1"
|
||||
|
||||
centre:
|
||||
id: "nouveau-contrat-social"
|
||||
label: "Nouveau Contrat Social"
|
||||
niveau: 0
|
||||
nature: essai
|
||||
statut: gestation
|
||||
resume: "Assemblage de tout ce que j'ecris qui s'entrechoque - inventer un nouveau contrat social."
|
||||
|
||||
concepts_force:
|
||||
- id: "ncs-politique"
|
||||
label: "Nouveau contrat social"
|
||||
niveau: 1
|
||||
nature: essai
|
||||
statut: gestation
|
||||
resume: "L'ecriture politique d'un futur habitable - essai central AEP."
|
||||
- id: "medecine-corps-social"
|
||||
label: "Medecine du corps social"
|
||||
niveau: 1
|
||||
nature: essai
|
||||
statut: gestation
|
||||
resume: "Diagnostiquer et soigner les pathologies du corps social - concept AEP mdcs."
|
||||
|
||||
thematiques:
|
||||
- id: "systemique"
|
||||
label: "Systemique & complexite"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "pratiques-collectives"
|
||||
label: "Pratiques collectives"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "art-narration"
|
||||
label: "Art & narration"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "pouvoir-domination"
|
||||
label: "Rapport au pouvoir"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "medias-critique"
|
||||
label: "Medias & pensee critique"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "justice-securite"
|
||||
label: "Justice & securite"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "sante-globale"
|
||||
label: "Sante globale"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "agriculture"
|
||||
label: "Agriculture"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "post-croissance"
|
||||
label: "Post-croissance"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "anthropocene"
|
||||
label: "Anthropocene & effondrement"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "education"
|
||||
label: "Education a la transformation"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "urbanisme"
|
||||
label: "Urbanisme"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "geopolitique"
|
||||
label: "Geopolitique & decolonisation"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "ia-technologie"
|
||||
label: "IA & technologie"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
- id: "spiritualite"
|
||||
label: "Spiritualite"
|
||||
niveau: 2
|
||||
nature: essai
|
||||
statut: gestation
|
||||
|
||||
projets:
|
||||
- id: "tmip"
|
||||
label: "TMIP"
|
||||
niveau: 2
|
||||
nature: projet
|
||||
statut: gestation
|
||||
resume: "Transport, mobilite, industrie, politique - projet archi. Exemple de projet archi relie aux thematiques AEP."
|
||||
liens_thematiques:
|
||||
- "urbanisme"
|
||||
- "justice-securite"
|
||||
- "post-croissance"
|
||||
- "agriculture"
|
||||
282
public/data/carte-o.json
Normal file
282
public/data/carte-o.json
Normal file
@@ -0,0 +1,282 @@
|
||||
{
|
||||
"version": "1.1",
|
||||
"generatedAt": "2026-05-11T13:04:29.806Z",
|
||||
"nodes": [
|
||||
{
|
||||
"id": "nouveau-contrat-social",
|
||||
"label": "Nouveau Contrat Social",
|
||||
"niveau": 0,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": "Assemblage de tout ce que j'ecris qui s'entrechoque - inventer un nouveau contrat social.",
|
||||
"radius": 28,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "ncs-politique",
|
||||
"label": "Nouveau contrat social",
|
||||
"niveau": 1,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": "L'ecriture politique d'un futur habitable - essai central AEP.",
|
||||
"radius": 18,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "medecine-corps-social",
|
||||
"label": "Medecine du corps social",
|
||||
"niveau": 1,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": "Diagnostiquer et soigner les pathologies du corps social - concept AEP mdcs.",
|
||||
"radius": 18,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "systemique",
|
||||
"label": "Systemique & complexite",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "pratiques-collectives",
|
||||
"label": "Pratiques collectives",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "art-narration",
|
||||
"label": "Art & narration",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "pouvoir-domination",
|
||||
"label": "Rapport au pouvoir",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "medias-critique",
|
||||
"label": "Medias & pensee critique",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "justice-securite",
|
||||
"label": "Justice & securite",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "sante-globale",
|
||||
"label": "Sante globale",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "agriculture",
|
||||
"label": "Agriculture",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "post-croissance",
|
||||
"label": "Post-croissance",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "anthropocene",
|
||||
"label": "Anthropocene & effondrement",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "education",
|
||||
"label": "Education a la transformation",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "urbanisme",
|
||||
"label": "Urbanisme",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "geopolitique",
|
||||
"label": "Geopolitique & decolonisation",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "ia-technologie",
|
||||
"label": "IA & technologie",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "spiritualite",
|
||||
"label": "Spiritualite",
|
||||
"niveau": 2,
|
||||
"nature": "essai",
|
||||
"statut": "gestation",
|
||||
"resume": null,
|
||||
"radius": 10,
|
||||
"family": "concept"
|
||||
},
|
||||
{
|
||||
"id": "tmip",
|
||||
"label": "TMIP",
|
||||
"niveau": 2,
|
||||
"nature": "projet",
|
||||
"statut": "gestation",
|
||||
"resume": "Transport, mobilite, industrie, politique - projet archi. Exemple de projet archi relie aux thematiques AEP.",
|
||||
"radius": 14,
|
||||
"family": "ressource"
|
||||
}
|
||||
],
|
||||
"edges": [
|
||||
{
|
||||
"source": "nouveau-contrat-social",
|
||||
"target": "ncs-politique"
|
||||
},
|
||||
{
|
||||
"source": "nouveau-contrat-social",
|
||||
"target": "medecine-corps-social"
|
||||
},
|
||||
{
|
||||
"source": "ncs-politique",
|
||||
"target": "systemique"
|
||||
},
|
||||
{
|
||||
"source": "ncs-politique",
|
||||
"target": "pratiques-collectives"
|
||||
},
|
||||
{
|
||||
"source": "medecine-corps-social",
|
||||
"target": "art-narration"
|
||||
},
|
||||
{
|
||||
"source": "ncs-politique",
|
||||
"target": "pouvoir-domination"
|
||||
},
|
||||
{
|
||||
"source": "nouveau-contrat-social",
|
||||
"target": "medias-critique"
|
||||
},
|
||||
{
|
||||
"source": "nouveau-contrat-social",
|
||||
"target": "justice-securite"
|
||||
},
|
||||
{
|
||||
"source": "medecine-corps-social",
|
||||
"target": "sante-globale"
|
||||
},
|
||||
{
|
||||
"source": "nouveau-contrat-social",
|
||||
"target": "agriculture"
|
||||
},
|
||||
{
|
||||
"source": "ncs-politique",
|
||||
"target": "post-croissance"
|
||||
},
|
||||
{
|
||||
"source": "medecine-corps-social",
|
||||
"target": "anthropocene"
|
||||
},
|
||||
{
|
||||
"source": "ncs-politique",
|
||||
"target": "education"
|
||||
},
|
||||
{
|
||||
"source": "nouveau-contrat-social",
|
||||
"target": "urbanisme"
|
||||
},
|
||||
{
|
||||
"source": "nouveau-contrat-social",
|
||||
"target": "geopolitique"
|
||||
},
|
||||
{
|
||||
"source": "medecine-corps-social",
|
||||
"target": "ia-technologie"
|
||||
},
|
||||
{
|
||||
"source": "medecine-corps-social",
|
||||
"target": "spiritualite"
|
||||
},
|
||||
{
|
||||
"source": "tmip",
|
||||
"target": "urbanisme"
|
||||
},
|
||||
{
|
||||
"source": "tmip",
|
||||
"target": "justice-securite"
|
||||
},
|
||||
{
|
||||
"source": "tmip",
|
||||
"target": "post-croissance"
|
||||
},
|
||||
{
|
||||
"source": "tmip",
|
||||
"target": "agriculture"
|
||||
}
|
||||
]
|
||||
}
|
||||
52
public/data/journal.json
Normal file
52
public/data/journal.json
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"generatedAt": "2026-05-09T01:00:00Z",
|
||||
"fallback": true,
|
||||
"note": "Mock local — agrégateur n8n live pousse sur data.trans-former.fr/journal.json. Ce fichier sert de fallback dev tant que data.trans-former.fr DNS/Caddy ne sont pas en place.",
|
||||
"items": [
|
||||
{
|
||||
"id": "gitea-mock-pc6-feat",
|
||||
"platform": "gitea",
|
||||
"hashtag": "#stack",
|
||||
"date": "2026-05-09T01:01:00Z",
|
||||
"titre": "PC6 journal unifié + n8n agrégateur (mock)",
|
||||
"extrait": "Composant JournalList Vue + workflow n8n cron 3h00. Sources V1 : Gitéa Atom + Behold @aep + Behold @julesneny.",
|
||||
"url": "https://git.trans-former.fr/jules/astro-site-cerveau",
|
||||
"thumbnail": null
|
||||
},
|
||||
{
|
||||
"id": "gitea-mock-pc3-mindmap",
|
||||
"platform": "gitea",
|
||||
"hashtag": "#stack",
|
||||
"date": "2026-05-09T00:59:41Z",
|
||||
"titre": "PC3 mindmap Carte O (D3 force-directed)",
|
||||
"extrait": "Scrape AEP/Articles + tabs centre HAUT.",
|
||||
"url": "https://git.trans-former.fr/jules/astro-site-cerveau/commit/32bdc9a",
|
||||
"thumbnail": null
|
||||
},
|
||||
{
|
||||
"id": "insta-mock-aep-1",
|
||||
"platform": "instagram",
|
||||
"hashtag": "#aep-politique",
|
||||
"date": "2026-05-07T18:30:00Z",
|
||||
"titre": "Mock carrousel @aep.politique",
|
||||
"extrait": "Placeholder carrousel manifeste écologie politique. Cron n8n live remplace ce mock par la vraie API Behold.",
|
||||
"url": "https://instagram.com/aep.politique",
|
||||
"thumbnail": null
|
||||
},
|
||||
{
|
||||
"id": "insta-mock-julesneny-1",
|
||||
"platform": "instagram",
|
||||
"hashtag": "#peinture",
|
||||
"date": "2026-05-05T14:00:00Z",
|
||||
"titre": "Mock peinture @julesneny",
|
||||
"extrait": "Placeholder art / poésie / Corse. Cron n8n live remplace ce mock par la vraie API Behold.",
|
||||
"url": "https://instagram.com/julesneny",
|
||||
"thumbnail": null
|
||||
}
|
||||
],
|
||||
"counts": {
|
||||
"total": 4,
|
||||
"gitea": 2,
|
||||
"instagram": 2
|
||||
}
|
||||
}
|
||||
127
scripts/build-carte-o.js
Normal file
127
scripts/build-carte-o.js
Normal file
@@ -0,0 +1,127 @@
|
||||
#!/usr/bin/env node
|
||||
import fs from 'node:fs/promises'
|
||||
import path from 'node:path'
|
||||
import { fileURLToPath } from 'node:url'
|
||||
import yaml from 'js-yaml'
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url)
|
||||
const __dirname = path.dirname(__filename)
|
||||
|
||||
const REPO_ROOT = path.resolve(__dirname, '..')
|
||||
const SOURCE = path.join(REPO_ROOT, 'public/data/carte-o-source.yaml')
|
||||
const OUTPUT = path.join(REPO_ROOT, 'public/data/carte-o.json')
|
||||
|
||||
// radius par niveau + nature
|
||||
function getRadius(niveau, nature) {
|
||||
if (niveau === 0) return 28
|
||||
if (niveau === 1) return 18
|
||||
if (niveau === 2 && nature === 'projet') return 14
|
||||
return 10
|
||||
}
|
||||
|
||||
// compat backward : nature -> family
|
||||
function getFamily(nature) {
|
||||
return nature === 'projet' ? 'ressource' : 'concept'
|
||||
}
|
||||
|
||||
// thematiques rattachees directement au centre (ni ncs-politique ni medecine-corps-social)
|
||||
const CENTRE_THEMATIQUES = new Set([
|
||||
'medias-critique',
|
||||
'justice-securite',
|
||||
'agriculture',
|
||||
'urbanisme',
|
||||
'geopolitique',
|
||||
])
|
||||
|
||||
const NCS_THEMATIQUES = new Set([
|
||||
'systemique',
|
||||
'pratiques-collectives',
|
||||
'pouvoir-domination',
|
||||
'post-croissance',
|
||||
'education',
|
||||
])
|
||||
|
||||
const MDCS_THEMATIQUES = new Set([
|
||||
'art-narration',
|
||||
'sante-globale',
|
||||
'spiritualite',
|
||||
'ia-technologie',
|
||||
'anthropocene',
|
||||
])
|
||||
|
||||
async function main() {
|
||||
const raw = await fs.readFile(SOURCE, 'utf-8')
|
||||
const data = yaml.load(raw)
|
||||
|
||||
const nodes = []
|
||||
const edges = []
|
||||
const edgeSet = new Set()
|
||||
|
||||
function addEdge(source, target) {
|
||||
const key = source < target ? `${source}|${target}` : `${target}|${source}`
|
||||
if (edgeSet.has(key)) return
|
||||
edgeSet.add(key)
|
||||
edges.push({ source, target })
|
||||
}
|
||||
|
||||
function addNode(obj) {
|
||||
nodes.push({
|
||||
id: obj.id,
|
||||
label: obj.label,
|
||||
niveau: obj.niveau,
|
||||
nature: obj.nature,
|
||||
statut: obj.statut,
|
||||
resume: obj.resume || null,
|
||||
radius: getRadius(obj.niveau, obj.nature),
|
||||
family: getFamily(obj.nature),
|
||||
})
|
||||
}
|
||||
|
||||
const centreId = data.centre.id
|
||||
addNode(data.centre)
|
||||
|
||||
for (const cf of data.concepts_force) {
|
||||
addNode(cf)
|
||||
addEdge(centreId, cf.id)
|
||||
}
|
||||
|
||||
for (const th of data.thematiques) {
|
||||
addNode(th)
|
||||
if (NCS_THEMATIQUES.has(th.id)) {
|
||||
addEdge('ncs-politique', th.id)
|
||||
} else if (MDCS_THEMATIQUES.has(th.id)) {
|
||||
addEdge('medecine-corps-social', th.id)
|
||||
} else if (CENTRE_THEMATIQUES.has(th.id)) {
|
||||
addEdge(centreId, th.id)
|
||||
}
|
||||
}
|
||||
|
||||
for (const proj of data.projets) {
|
||||
addNode(proj)
|
||||
for (const thId of (proj.liens_thematiques || [])) {
|
||||
addEdge(proj.id, thId)
|
||||
}
|
||||
}
|
||||
|
||||
await fs.mkdir(path.dirname(OUTPUT), { recursive: true })
|
||||
await fs.writeFile(
|
||||
OUTPUT,
|
||||
JSON.stringify({
|
||||
version: data.version,
|
||||
generatedAt: new Date().toISOString(),
|
||||
nodes,
|
||||
edges,
|
||||
}, null, 2),
|
||||
'utf-8',
|
||||
)
|
||||
|
||||
console.log(`[carte-o] OK : ${nodes.length} nodes / ${edges.length} edges -> ${OUTPUT}`)
|
||||
}
|
||||
|
||||
main().catch(err => {
|
||||
console.error('[carte-o] FAIL', err)
|
||||
process.exit(1)
|
||||
})
|
||||
|
||||
// V1 scrape vault - reactiver en V1.2 pour enrichissement automatique
|
||||
// Source : scripts/build-carte-o.js@be7fc09 (scrape AEP/Articles globby + gray-matter + wikilinks edges)
|
||||
@@ -1,11 +1,217 @@
|
||||
---
|
||||
// Placeholder Centre : HAUT mindmap AEP (PC3) ; BAS iframe carte AEP (PC4)
|
||||
// Centre - HAUT : tabs (Carte O mindmap | Chatbot RAG branche PC7).
|
||||
// BAS : iframe carte AEP + scroll articles Substack (PC4).
|
||||
import CarteOWrapper from '../vue/CarteOWrapper.vue';
|
||||
import ChatbotV2 from '../vue/ChatbotV2.vue';
|
||||
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
||||
---
|
||||
<div class="h-full grid grid-rows-2 gap-2 p-2">
|
||||
<section class="border border-dashed border-neutral-300 rounded flex items-center justify-center">
|
||||
<p class="text-sm text-neutral-400">Mindmap AEP — PC3</p>
|
||||
<div id="col-centre-grid" class="h-full grid grid-rows-2 gap-2 p-2">
|
||||
<!-- HAUT 50% : tabs Carte O / Chatbot -->
|
||||
<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"
|
||||
role="tab"
|
||||
id="tab-mindmap"
|
||||
aria-controls="panel-mindmap"
|
||||
aria-selected="true"
|
||||
data-tab="mindmap"
|
||||
class="tab-btn px-3 py-2 text-sm border-b-2 border-neutral-900 font-medium text-neutral-900"
|
||||
>
|
||||
Carte O
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
role="tab"
|
||||
id="tab-chatbot"
|
||||
aria-controls="panel-chatbot"
|
||||
aria-selected="false"
|
||||
data-tab="chatbot"
|
||||
class="tab-btn px-3 py-2 text-sm border-b-2 border-transparent text-neutral-500 hover:text-neutral-900"
|
||||
>
|
||||
Chatbot
|
||||
</button>
|
||||
</nav>
|
||||
|
||||
<div class="flex-1 overflow-hidden relative">
|
||||
<div
|
||||
id="panel-mindmap"
|
||||
role="tabpanel"
|
||||
aria-labelledby="tab-mindmap"
|
||||
data-tab-panel="mindmap"
|
||||
class="absolute inset-0"
|
||||
>
|
||||
<CarteOWrapper client:visible />
|
||||
</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>
|
||||
</section>
|
||||
<section class="border border-dashed border-neutral-300 rounded flex items-center justify-center">
|
||||
<p class="text-sm text-neutral-400">Iframe carte AEP — PC4</p>
|
||||
|
||||
<!-- 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"
|
||||
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]">
|
||||
<EmbedDynamique client:visible />
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<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.
|
||||
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>
|
||||
|
||||
@@ -1,12 +1,24 @@
|
||||
---
|
||||
// Placeholder Insta : 2 carrousels @aep + @julesneny — PC5 oEmbed
|
||||
import InstaFeed from '../vue/InstaFeed.vue';
|
||||
|
||||
// Feed IDs Behold a remplir apres inscription Behold (voir docs/BEHOLD-SETUP.md)
|
||||
const FEED_AEP = import.meta.env.PUBLIC_BEHOLD_AEP || 'PLACEHOLDER_AEP';
|
||||
const FEED_JULESNENY = import.meta.env.PUBLIC_BEHOLD_JULESNENY || 'PLACEHOLDER_JULESNENY';
|
||||
---
|
||||
<section class="h-full p-4 flex flex-col gap-4">
|
||||
<h2 class="text-lg font-semibold text-neutral-700">Insta</h2>
|
||||
<div class="border border-dashed border-neutral-300 rounded p-3 flex-1 flex items-center justify-center">
|
||||
<p class="text-sm text-neutral-400">@aep carrousel — PC5</p>
|
||||
</div>
|
||||
<div class="border border-dashed border-neutral-300 rounded p-3 flex-1 flex items-center justify-center">
|
||||
<p class="text-sm text-neutral-400">@julesneny carrousel — PC5</p>
|
||||
</div>
|
||||
</section>
|
||||
<div class="h-full overflow-y-auto">
|
||||
<InstaFeed
|
||||
client:visible
|
||||
feedId={FEED_AEP}
|
||||
account="@aep.politique"
|
||||
accountUrl="https://www.instagram.com/aep.politique/"
|
||||
fallbackBio="Carrousels manifeste AEP ; pensee politique eco-architecture"
|
||||
/>
|
||||
|
||||
<InstaFeed
|
||||
client:visible
|
||||
feedId={FEED_JULESNENY}
|
||||
account="@julesneny"
|
||||
accountUrl="https://www.instagram.com/julesneny/"
|
||||
fallbackBio="Peinture, poesie, Corse ; archives visuelles personnelles"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,104 +1,278 @@
|
||||
---
|
||||
// ColJournal - colonne gauche : CTA Manifeste + Hashtags accordeon + Journal skeleton
|
||||
// 7 hashtags = 7 plateformes (cf delta 15 du PILOTE-PC.md)
|
||||
const hashtags = [
|
||||
{ tag: '#manifeste', plateforme: 'Blog trans-former.fr', canal: 'ecriture longue' },
|
||||
{ tag: '#building-public', plateforme: 'LinkedIn', canal: 'journal pro' },
|
||||
{ tag: '#politique', plateforme: 'Substack', canal: 'pensee AEP' },
|
||||
{ tag: '#aep-politique', plateforme: 'Insta @aep.politique', canal: 'carrousels manifeste' },
|
||||
{ tag: '#peinture', plateforme: 'Insta @julesneny', canal: 'art / poesie / Corse' },
|
||||
{ tag: '#podcast', plateforme: 'Castopod', canal: 'podcast.trans-former.fr' },
|
||||
{ tag: '#stack', plateforme: 'GitHub', canal: 'open source' },
|
||||
import JournalList from '../vue/JournalList.vue';
|
||||
|
||||
const categories = [
|
||||
{
|
||||
id: 'politique',
|
||||
label: 'Politique',
|
||||
color: '#B5443A',
|
||||
hashtags: ['#politique', '#aep-politique'],
|
||||
plateformes: [
|
||||
{ id: 'instagram', label: 'Court', url: 'https://www.instagram.com/aep.politique/' },
|
||||
{ id: 'castopod', label: 'Podcast', url: 'https://podcast.trans-former.fr' },
|
||||
{ id: 'substack', label: 'Article', url: 'https://julesneny.substack.com' },
|
||||
],
|
||||
hasSelector: true,
|
||||
},
|
||||
{
|
||||
id: 'art',
|
||||
label: 'Art',
|
||||
color: '#5B6B3A',
|
||||
hashtags: ['#peinture', '#art'],
|
||||
plateformes: [
|
||||
{ id: 'instagram', label: '@julesneny', url: 'https://www.instagram.com/julesneny/' },
|
||||
],
|
||||
hasSelector: false,
|
||||
},
|
||||
{
|
||||
id: 'outils',
|
||||
label: 'Outils',
|
||||
color: '#475569',
|
||||
hashtags: ['#stack', '#building-public'],
|
||||
plateformes: [
|
||||
{ id: 'gitea', label: 'Gitea', url: 'https://git.trans-former.fr/jules' },
|
||||
],
|
||||
hasSelector: false,
|
||||
},
|
||||
];
|
||||
---
|
||||
<div class="h-full flex flex-col p-4 pt-20 md:pt-6 gap-5">
|
||||
<!-- CTA Manifeste -->
|
||||
<a
|
||||
href="/manifeste"
|
||||
class="block px-4 py-3 bg-neutral-900 text-white rounded-lg font-medium text-center hover:bg-neutral-700 transition-colors shadow-sm"
|
||||
>
|
||||
Lire le manifeste →
|
||||
</a>
|
||||
|
||||
<!-- Hashtags accordeon -->
|
||||
<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">
|
||||
<span>Hashtags</span>
|
||||
<span class="text-xs text-neutral-400 font-normal">7 plateformes</span>
|
||||
<span class="text-xs text-neutral-400 font-normal">3 categories</span>
|
||||
</summary>
|
||||
<ul class="mt-3 space-y-2 text-sm">
|
||||
{hashtags.map(({ tag, plateforme, canal }) => (
|
||||
<li>
|
||||
<label class="flex items-start gap-2 cursor-pointer hover:bg-neutral-50 rounded p-1 -m-1 transition-colors">
|
||||
<input
|
||||
type="checkbox"
|
||||
data-hashtag={tag}
|
||||
class="mt-1 accent-neutral-900"
|
||||
checked
|
||||
/>
|
||||
<span class="flex-1">
|
||||
<span class="font-mono text-neutral-700 text-[13px]">{tag}</span>
|
||||
<span class="block text-xs text-neutral-500 leading-snug">
|
||||
{plateforme} ; {canal}
|
||||
</span>
|
||||
</span>
|
||||
</label>
|
||||
</li>
|
||||
|
||||
<div class="mt-3 flex flex-wrap gap-2" id="category-badges">
|
||||
{categories.map((cat) => (
|
||||
<button
|
||||
type="button"
|
||||
data-category-id={cat.id}
|
||||
data-hashtags={cat.hashtags.join(',')}
|
||||
data-color={cat.color}
|
||||
data-has-selector={cat.hasSelector ? 'true' : 'false'}
|
||||
class="category-badge"
|
||||
style={`background:${cat.color};color:#fff;font-family:'Courier New',Courier,monospace;font-size:13px;padding:3px 10px;border-radius:4px;cursor:pointer;border:1px solid ${cat.color};`}
|
||||
>
|
||||
{cat.label}
|
||||
</button>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Selecteur plateforme Politique -->
|
||||
<div id="politique-selector" class="mt-2 hidden flex gap-2">
|
||||
{categories[0].plateformes.map((p) => (
|
||||
<button
|
||||
type="button"
|
||||
data-platform-id={p.id}
|
||||
class="platform-pill"
|
||||
style="font-family:'Courier New',Courier,monospace;font-size:12px;padding:2px 8px;border-radius:12px;cursor:pointer;border:1px solid #B5443A;background:transparent;color:#B5443A;"
|
||||
>
|
||||
{p.label}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<!-- Bouton Replier -->
|
||||
<div class="mt-3 flex justify-end">
|
||||
<button
|
||||
type="button"
|
||||
id="accordion-close"
|
||||
class="text-xs text-neutral-400 underline cursor-pointer bg-transparent border-0 p-0"
|
||||
>
|
||||
replier
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Bouton Manifeste -->
|
||||
<a
|
||||
href="/manifeste"
|
||||
class="block mt-3 px-4 py-2 bg-neutral-900 text-white font-bold text-sm text-center rounded-lg hover:bg-neutral-700 transition-colors"
|
||||
style="font-family:'Courier New',Courier,monospace;"
|
||||
>
|
||||
Manifeste - Lire
|
||||
</a>
|
||||
</details>
|
||||
|
||||
<!-- Journal chrono (skeleton, slot rempli par PC6) -->
|
||||
<!-- Journal chrono -->
|
||||
<section class="border-t border-neutral-200 pt-4 flex-1 overflow-y-auto">
|
||||
<h2 class="font-semibold mb-3 flex items-center justify-between">
|
||||
<span>Journal</span>
|
||||
<span class="text-xs text-neutral-400 font-normal">chrono</span>
|
||||
</h2>
|
||||
<div id="journal-list" class="space-y-3 text-sm">
|
||||
<!-- PC6 remplit ce slot via <JournalList client:visible /> -->
|
||||
<p class="text-neutral-400 italic text-xs">
|
||||
Chargement du journal...
|
||||
</p>
|
||||
<JournalList client:visible />
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// Hashtags accordeon : ferme par defaut mobile, ouvert desktop (>= 768px)
|
||||
const accordion = document.getElementById('hashtags-accordion') as HTMLDetailsElement | null;
|
||||
if (accordion) {
|
||||
const mql = window.matchMedia('(min-width: 768px)');
|
||||
const apply = () => {
|
||||
accordion.open = mql.matches;
|
||||
};
|
||||
const apply = () => { accordion.open = mql.matches; };
|
||||
apply();
|
||||
mql.addEventListener('change', apply);
|
||||
}
|
||||
|
||||
// Persistence filtres hashtags (localStorage)
|
||||
const checkboxes = document.querySelectorAll<HTMLInputElement>('[data-hashtag]');
|
||||
const STORAGE_KEY = 'tf-hashtag-filters';
|
||||
let stored: Record<string, boolean> = {};
|
||||
try {
|
||||
stored = JSON.parse(localStorage.getItem(STORAGE_KEY) || '{}');
|
||||
} catch {
|
||||
stored = {};
|
||||
const closeBtn = document.getElementById('accordion-close');
|
||||
if (closeBtn && accordion) {
|
||||
closeBtn.addEventListener('click', () => { accordion.open = false; });
|
||||
}
|
||||
|
||||
checkboxes.forEach((cb) => {
|
||||
const tag = cb.dataset.hashtag;
|
||||
if (!tag) return;
|
||||
if (tag in stored) cb.checked = stored[tag];
|
||||
cb.addEventListener('change', () => {
|
||||
stored[tag] = cb.checked;
|
||||
try {
|
||||
localStorage.setItem(STORAGE_KEY, JSON.stringify(stored));
|
||||
} catch {
|
||||
// mode prive : on continue silencieusement
|
||||
const STORAGE_KEY = 'tf-hashtag-filters';
|
||||
const PLATFORM_KEY = 'tf-platform-filter';
|
||||
|
||||
// Active state : map categoryId -> boolean
|
||||
const activeCategories: Record<string, boolean> = { politique: true, art: true, outils: true };
|
||||
|
||||
// Platform filter : map categoryId -> platformId | null
|
||||
const platformFilters: Record<string, string | null> = { politique: null };
|
||||
|
||||
// Load persisted state
|
||||
try {
|
||||
const storedHashtags = JSON.parse(localStorage.getItem(STORAGE_KEY) || '{}') as Record<string, boolean>;
|
||||
// Derive category active state from hashtag values
|
||||
const politiqueHashtags = ['#politique', '#aep-politique'];
|
||||
const artHashtags = ['#peinture', '#art'];
|
||||
const outilsHashtags = ['#stack', '#building-public'];
|
||||
|
||||
const allPolitique = politiqueHashtags.every(h => storedHashtags[h] !== false);
|
||||
const allArt = artHashtags.every(h => storedHashtags[h] !== false);
|
||||
const allOutils = outilsHashtags.every(h => storedHashtags[h] !== false);
|
||||
|
||||
if (Object.keys(storedHashtags).length > 0) {
|
||||
activeCategories['politique'] = allPolitique;
|
||||
activeCategories['art'] = allArt;
|
||||
activeCategories['outils'] = allOutils;
|
||||
}
|
||||
} catch { /* mode prive */ }
|
||||
|
||||
try {
|
||||
const storedPlatform = JSON.parse(localStorage.getItem(PLATFORM_KEY) || '{}') as Record<string, string | null>;
|
||||
if (storedPlatform.politique !== undefined) {
|
||||
platformFilters['politique'] = storedPlatform.politique;
|
||||
}
|
||||
} catch { /* mode prive */ }
|
||||
|
||||
const buildHashtagPayload = () => {
|
||||
const hashtags: Record<string, boolean> = {};
|
||||
const catHashtags: Record<string, string[]> = {
|
||||
politique: ['#politique', '#aep-politique'],
|
||||
art: ['#peinture', '#art'],
|
||||
outils: ['#stack', '#building-public'],
|
||||
};
|
||||
for (const [catId, tags] of Object.entries(catHashtags)) {
|
||||
const active = activeCategories[catId] ?? true;
|
||||
for (const tag of tags) {
|
||||
hashtags[tag] = active;
|
||||
}
|
||||
window.dispatchEvent(
|
||||
new CustomEvent('hashtag-filter-change', { detail: { ...stored } })
|
||||
);
|
||||
}
|
||||
return hashtags;
|
||||
};
|
||||
|
||||
const persist = () => {
|
||||
try {
|
||||
localStorage.setItem(STORAGE_KEY, JSON.stringify(buildHashtagPayload()));
|
||||
localStorage.setItem(PLATFORM_KEY, JSON.stringify(platformFilters));
|
||||
} catch { /* mode prive */ }
|
||||
};
|
||||
|
||||
const dispatchHashtag = () => {
|
||||
window.dispatchEvent(new CustomEvent('hashtag-filter-change', { detail: buildHashtagPayload() }));
|
||||
};
|
||||
|
||||
const dispatchPlatform = (platform: string | null) => {
|
||||
window.dispatchEvent(new CustomEvent('platform-filter-change', { detail: { platform } }));
|
||||
};
|
||||
|
||||
const updateBadgeStyle = (btn: HTMLElement, active: boolean) => {
|
||||
const color = btn.dataset.color || '#000';
|
||||
if (active) {
|
||||
btn.style.background = color;
|
||||
btn.style.color = '#fff';
|
||||
btn.style.border = `1px solid ${color}`;
|
||||
} else {
|
||||
btn.style.background = 'transparent';
|
||||
btn.style.color = color;
|
||||
btn.style.border = `1px solid ${color}`;
|
||||
}
|
||||
};
|
||||
|
||||
const updatePolitiqueSelector = () => {
|
||||
const selector = document.getElementById('politique-selector');
|
||||
if (!selector) return;
|
||||
if (activeCategories['politique']) {
|
||||
selector.classList.remove('hidden');
|
||||
selector.style.display = 'flex';
|
||||
} else {
|
||||
selector.classList.add('hidden');
|
||||
selector.style.display = 'none';
|
||||
}
|
||||
};
|
||||
|
||||
const updatePillStyles = () => {
|
||||
const pills = document.querySelectorAll<HTMLElement>('.platform-pill');
|
||||
const active = platformFilters['politique'];
|
||||
pills.forEach((pill) => {
|
||||
const pid = pill.dataset.platformId;
|
||||
if (!active || pid === active) {
|
||||
pill.style.background = '#B5443A';
|
||||
pill.style.color = '#fff';
|
||||
} else {
|
||||
pill.style.background = 'transparent';
|
||||
pill.style.color = '#B5443A';
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
// Init badge styles
|
||||
const badges = document.querySelectorAll<HTMLElement>('.category-badge');
|
||||
badges.forEach((btn) => {
|
||||
const catId = btn.dataset.categoryId || '';
|
||||
updateBadgeStyle(btn, activeCategories[catId] ?? true);
|
||||
|
||||
btn.addEventListener('click', () => {
|
||||
activeCategories[catId] = !(activeCategories[catId] ?? true);
|
||||
updateBadgeStyle(btn, activeCategories[catId]);
|
||||
updatePolitiqueSelector();
|
||||
if (!activeCategories['politique']) {
|
||||
platformFilters['politique'] = null;
|
||||
updatePillStyles();
|
||||
dispatchPlatform(null);
|
||||
}
|
||||
persist();
|
||||
dispatchHashtag();
|
||||
});
|
||||
});
|
||||
|
||||
// Init selector
|
||||
updatePolitiqueSelector();
|
||||
updatePillStyles();
|
||||
|
||||
// Platform pills
|
||||
const pills = document.querySelectorAll<HTMLElement>('.platform-pill');
|
||||
pills.forEach((pill) => {
|
||||
pill.addEventListener('click', () => {
|
||||
const pid = pill.dataset.platformId || null;
|
||||
// Toggle : click on active pill deselects it
|
||||
if (platformFilters['politique'] === pid) {
|
||||
platformFilters['politique'] = null;
|
||||
} else {
|
||||
platformFilters['politique'] = pid;
|
||||
}
|
||||
updatePillStyles();
|
||||
persist();
|
||||
dispatchPlatform(platformFilters['politique']);
|
||||
});
|
||||
});
|
||||
|
||||
// Apply persisted filters on init
|
||||
persist();
|
||||
dispatchHashtag();
|
||||
if (platformFilters['politique']) {
|
||||
dispatchPlatform(platformFilters['politique']);
|
||||
}
|
||||
</script>
|
||||
|
||||
70
src/components/astro/Footer.astro
Normal file
70
src/components/astro/Footer.astro
Normal file
@@ -0,0 +1,70 @@
|
||||
---
|
||||
// Footer.astro - CTA infolettre Kit + nav footer
|
||||
---
|
||||
<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>
|
||||
</nav>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
const form = document.getElementById('subscribe-form') as HTMLFormElement | null;
|
||||
const msg = document.getElementById('subscribe-msg') as HTMLParagraphElement | null;
|
||||
|
||||
form?.addEventListener('submit', async (e) => {
|
||||
e.preventDefault();
|
||||
if (!msg || !form) return;
|
||||
|
||||
const emailInput = form.elements.namedItem('email') as HTMLInputElement;
|
||||
const email = emailInput?.value?.trim() ?? '';
|
||||
if (!email) return;
|
||||
|
||||
msg.textContent = 'envoi...';
|
||||
|
||||
try {
|
||||
const r = await fetch('/api/subscribe', {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ email }),
|
||||
});
|
||||
const data = await r.json();
|
||||
if (data.ok) {
|
||||
msg.textContent = data.already
|
||||
? 'tu es deja abonne - a tres vite.'
|
||||
: 'merci ! check ta boite mail (parfois spam).';
|
||||
form.reset();
|
||||
} else {
|
||||
msg.textContent = `souci : ${data.error || 'reessaie plus tard'}`;
|
||||
}
|
||||
} catch {
|
||||
msg.textContent = 'erreur reseau - reessaie plus tard';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
@@ -5,7 +5,7 @@
|
||||
<button
|
||||
id="hamburger-trigger"
|
||||
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-expanded="false"
|
||||
aria-controls="hamburger-drawer"
|
||||
|
||||
55
src/components/astro/IframeCarteAEP.astro
Normal file
55
src/components/astro/IframeCarteAEP.astro
Normal file
@@ -0,0 +1,55 @@
|
||||
---
|
||||
// PC4 - iframe carte AEP (cartobifurcation) avec skeleton loader + fallback timeout 8s.
|
||||
// Route confirmee 200 sans X-Frame-Options ni frame-ancestors restrictifs (preflight 2026-05-08).
|
||||
const CARTE_URL = 'https://aep.trans-former.fr/agences';
|
||||
---
|
||||
<div class="relative h-full w-full bg-neutral-100">
|
||||
<!-- Skeleton loader -->
|
||||
<div
|
||||
id="iframe-skeleton"
|
||||
class="absolute inset-0 flex items-center justify-center bg-neutral-50 animate-pulse"
|
||||
>
|
||||
<div class="text-neutral-400 text-sm">Chargement de la carte AEP...</div>
|
||||
</div>
|
||||
|
||||
<iframe
|
||||
id="carte-aep-iframe"
|
||||
src={CARTE_URL}
|
||||
title="Carte des reseaux AEP - cartobifurcation"
|
||||
class="w-full h-full border-0 opacity-0 transition-opacity duration-500"
|
||||
loading="lazy"
|
||||
referrerpolicy="no-referrer-when-downgrade"
|
||||
sandbox="allow-scripts allow-same-origin allow-popups allow-forms"
|
||||
></iframe>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const iframe = document.getElementById('carte-aep-iframe') as HTMLIFrameElement | null;
|
||||
const skeleton = document.getElementById('iframe-skeleton');
|
||||
|
||||
iframe?.addEventListener('load', () => {
|
||||
iframe.classList.remove('opacity-0');
|
||||
iframe.classList.add('opacity-100');
|
||||
skeleton?.classList.add('hidden');
|
||||
});
|
||||
|
||||
// Timeout securite : si pas charge en 8s, afficher fallback lien externe.
|
||||
setTimeout(() => {
|
||||
if (skeleton && !skeleton.classList.contains('hidden')) {
|
||||
skeleton.innerHTML = `
|
||||
<div class="text-center text-neutral-500 px-4">
|
||||
<p class="mb-2 text-sm">La carte n'a pas pu charger.</p>
|
||||
<a
|
||||
href="https://aep.trans-former.fr/agences"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
class="text-blue-600 underline text-sm"
|
||||
>
|
||||
Ouvrir dans un nouvel onglet →
|
||||
</a>
|
||||
</div>
|
||||
`;
|
||||
skeleton.classList.remove('animate-pulse');
|
||||
}
|
||||
}, 8000);
|
||||
</script>
|
||||
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,9 +1,375 @@
|
||||
<script setup lang="ts">
|
||||
// Placeholder Carte O — PC3 implémente avec D3 + GraphView porté de nav-carte
|
||||
// Carte O - mindmap force-directed D3 (V1 zoom + pan + drag + click).
|
||||
// Pattern adapté de nav-carte/components/codev/CodevGraph.vue (sans coupling Nuxt).
|
||||
// Drill-down V1 = zoom + pan seul. V2 récursif backlog (cf MP-PAGE-CERVEAU.md).
|
||||
|
||||
import { ref, onMounted, onUnmounted, watch, computed } from 'vue'
|
||||
import * as d3 from 'd3'
|
||||
|
||||
interface CarteNode {
|
||||
id: string
|
||||
label: string
|
||||
family: string
|
||||
niveau?: number
|
||||
nature?: 'essai' | 'projet'
|
||||
statut?: 'gestation' | 'edite'
|
||||
resume?: string | null
|
||||
radius?: number
|
||||
intention?: string
|
||||
slug?: string
|
||||
theme?: string
|
||||
path?: string
|
||||
}
|
||||
|
||||
interface CarteEdge {
|
||||
source: string | CarteNode
|
||||
target: string | CarteNode
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<{
|
||||
nodes: CarteNode[]
|
||||
edges: CarteEdge[]
|
||||
familyColors?: Record<string, string>
|
||||
}>(), {
|
||||
familyColors: () => ({
|
||||
penseur: '#3b82f6',
|
||||
concept: '#10b981',
|
||||
methode: '#f59e0b',
|
||||
collectif: '#ef4444',
|
||||
ressource: '#8b5cf6',
|
||||
}),
|
||||
})
|
||||
|
||||
const emit = defineEmits<{
|
||||
'node-click': [payload: { node: CarteNode; x: number; y: number }]
|
||||
}>()
|
||||
|
||||
// Refs
|
||||
const container = ref<HTMLDivElement | null>(null)
|
||||
const svgEl = ref<SVGSVGElement | null>(null)
|
||||
const width = ref(800)
|
||||
const height = ref(600)
|
||||
|
||||
// State interne
|
||||
type SimNode = d3.SimulationNodeDatum & CarteNode
|
||||
type SimLink = d3.SimulationLinkDatum<SimNode>
|
||||
|
||||
let simulation: d3.Simulation<SimNode, SimLink> | null = null
|
||||
let svgRoot: d3.Selection<SVGSVGElement, unknown, null, undefined> | null = null
|
||||
let gZoom: d3.Selection<SVGGElement, unknown, null, undefined> | null = null
|
||||
let gLinks: d3.Selection<SVGGElement, unknown, null, undefined> | null = null
|
||||
let gNodes: d3.Selection<SVGGElement, unknown, null, undefined> | null = null
|
||||
let zoomBehavior: d3.ZoomBehavior<SVGSVGElement, unknown> | null = null
|
||||
|
||||
const isMobile = computed(() => width.value < 600)
|
||||
const nodeRadius = computed(() => isMobile.value ? 10 : 14)
|
||||
|
||||
function colorFor(d: SimNode): string {
|
||||
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 {
|
||||
if (!str) return ''
|
||||
return str.length > max ? str.slice(0, max - 1) + '…' : str
|
||||
}
|
||||
|
||||
function buildSimNodes(): SimNode[] {
|
||||
return props.nodes.map(n => ({ ...n }))
|
||||
}
|
||||
|
||||
function buildSimLinks(simNodes: SimNode[]): SimLink[] {
|
||||
const byId = new Map(simNodes.map(n => [n.id, n]))
|
||||
return props.edges
|
||||
.map(e => {
|
||||
const s = typeof e.source === 'string' ? byId.get(e.source) : byId.get(e.source.id)
|
||||
const t = typeof e.target === 'string' ? byId.get(e.target) : byId.get(e.target.id)
|
||||
if (!s || !t) return null
|
||||
return { source: s, target: t } as SimLink
|
||||
})
|
||||
.filter((x): x is SimLink => x !== null)
|
||||
}
|
||||
|
||||
function makeDrag(sim: d3.Simulation<SimNode, SimLink>) {
|
||||
return d3.drag<SVGGElement, SimNode>()
|
||||
.on('start', (event, d) => {
|
||||
if (!event.active) sim.alphaTarget(0.3).restart()
|
||||
d.fx = d.x
|
||||
d.fy = d.y
|
||||
})
|
||||
.on('drag', (event, d) => {
|
||||
d.fx = event.x
|
||||
d.fy = event.y
|
||||
})
|
||||
.on('end', (event, d) => {
|
||||
if (!event.active) sim.alphaTarget(0)
|
||||
d.fx = null
|
||||
d.fy = null
|
||||
})
|
||||
}
|
||||
|
||||
function initSvg() {
|
||||
if (!svgEl.value) return
|
||||
|
||||
svgRoot = d3.select(svgEl.value)
|
||||
.attr('width', width.value)
|
||||
.attr('height', height.value)
|
||||
.attr('role', 'img')
|
||||
.attr('aria-label', 'Carte O — mindmap de la pensée AEP')
|
||||
|
||||
svgRoot.selectAll('*').remove()
|
||||
|
||||
// Wrapper group for zoom/pan transform.
|
||||
gZoom = svgRoot.append('g').attr('class', 'zoom-layer')
|
||||
gLinks = gZoom.append('g').attr('class', 'links')
|
||||
gNodes = gZoom.append('g').attr('class', 'nodes')
|
||||
|
||||
// Zoom + pan behavior.
|
||||
zoomBehavior = d3.zoom<SVGSVGElement, unknown>()
|
||||
.scaleExtent([0.3, 4])
|
||||
.on('zoom', (event) => {
|
||||
gZoom!.attr('transform', event.transform.toString())
|
||||
})
|
||||
|
||||
svgRoot.call(zoomBehavior as any)
|
||||
}
|
||||
|
||||
function render() {
|
||||
if (!svgEl.value || props.nodes.length === 0) return
|
||||
|
||||
initSvg()
|
||||
|
||||
const simNodes = buildSimNodes()
|
||||
const simLinks = buildSimLinks(simNodes)
|
||||
|
||||
const fontSize = isMobile.value ? 9 : 11
|
||||
|
||||
// Liens
|
||||
gLinks!
|
||||
.selectAll<SVGLineElement, SimLink>('line')
|
||||
.data(simLinks)
|
||||
.join('line')
|
||||
.attr('stroke', '#94a3b8')
|
||||
.attr('stroke-opacity', 0.45)
|
||||
.attr('stroke-width', 1.2)
|
||||
|
||||
// Noeuds = groupe <g> par node
|
||||
const nodeGroups = gNodes!
|
||||
.selectAll<SVGGElement, SimNode>('g.node')
|
||||
.data(simNodes, d => d.id)
|
||||
.join('g')
|
||||
.attr('class', 'node')
|
||||
.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('mouseover', function (_event, d) {
|
||||
d3.select(this).select('circle')
|
||||
.transition().duration(120)
|
||||
.attr('stroke-width', strokeWidthFor(d) + 1.5)
|
||||
})
|
||||
.on('mouseout', function (_event, d) {
|
||||
d3.select(this).select('circle')
|
||||
.transition().duration(120)
|
||||
.attr('stroke-width', strokeWidthFor(d))
|
||||
})
|
||||
|
||||
// Cercle
|
||||
nodeGroups.append('circle')
|
||||
.attr('r', d => getRadius(d))
|
||||
.attr('fill', d => colorFor(d))
|
||||
.attr('stroke', d => strokeFor(d))
|
||||
.attr('stroke-width', d => strokeWidthFor(d))
|
||||
|
||||
// Label
|
||||
nodeGroups.append('text')
|
||||
.attr('text-anchor', 'start')
|
||||
.attr('dominant-baseline', 'central')
|
||||
.attr('dx', d => getRadius(d) + 4)
|
||||
.attr('font-size', fontSize)
|
||||
.attr('font-family', 'system-ui, sans-serif')
|
||||
.attr('font-weight', d => labelWeightFor(d))
|
||||
.attr('fill', d => labelColorFor(d))
|
||||
.attr('pointer-events', 'none')
|
||||
.text(d => truncate(d.label, isMobile.value ? 18 : 30))
|
||||
|
||||
// Tooltip <title>
|
||||
nodeGroups.append('title')
|
||||
.text(d => `${d.label}\n[${d.family}]\n${truncate(d.resume || d.intention || '', 200)}`)
|
||||
|
||||
// Simulation force avec charges differenciees par niveau
|
||||
simulation = d3.forceSimulation<SimNode, SimLink>(simNodes)
|
||||
.force('link', d3.forceLink<SimNode, SimLink>(simLinks)
|
||||
.id(d => d.id)
|
||||
.distance(80)
|
||||
.strength(0.35))
|
||||
.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('collide', d3.forceCollide<SimNode>().radius(d => getRadius(d) + 6))
|
||||
.alphaDecay(0.03)
|
||||
.on('tick', tick)
|
||||
|
||||
// Bind drag once simulation exists.
|
||||
nodeGroups.call(makeDrag(simulation) as any)
|
||||
}
|
||||
|
||||
function tick() {
|
||||
if (!gLinks || !gNodes) return
|
||||
|
||||
gLinks.selectAll<SVGLineElement, SimLink>('line')
|
||||
.attr('x1', d => (d.source as SimNode).x ?? 0)
|
||||
.attr('y1', d => (d.source as SimNode).y ?? 0)
|
||||
.attr('x2', d => (d.target as SimNode).x ?? 0)
|
||||
.attr('y2', d => (d.target as SimNode).y ?? 0)
|
||||
|
||||
gNodes.selectAll<SVGGElement, SimNode>('g.node')
|
||||
.attr('transform', d => `translate(${d.x ?? 0},${d.y ?? 0})`)
|
||||
}
|
||||
|
||||
// Public methods exposed (zoom controls).
|
||||
function zoomIn() {
|
||||
if (!svgRoot || !zoomBehavior) return
|
||||
svgRoot.transition().duration(250).call(zoomBehavior.scaleBy as any, 1.3)
|
||||
}
|
||||
function zoomOut() {
|
||||
if (!svgRoot || !zoomBehavior) return
|
||||
svgRoot.transition().duration(250).call(zoomBehavior.scaleBy as any, 0.77)
|
||||
}
|
||||
function zoomReset() {
|
||||
if (!svgRoot || !zoomBehavior) return
|
||||
svgRoot.transition().duration(350).call(zoomBehavior.transform as any, d3.zoomIdentity)
|
||||
}
|
||||
defineExpose({ zoomIn, zoomOut, zoomReset })
|
||||
|
||||
// Re-render on data changes.
|
||||
watch(() => [props.nodes, props.edges], () => {
|
||||
if (simulation) {
|
||||
simulation.stop()
|
||||
simulation = null
|
||||
}
|
||||
render()
|
||||
}, { deep: true })
|
||||
|
||||
// ResizeObserver
|
||||
let ro: ResizeObserver | null = null
|
||||
|
||||
onMounted(() => {
|
||||
if (!container.value) return
|
||||
width.value = container.value.clientWidth || 800
|
||||
height.value = container.value.clientHeight || 600
|
||||
|
||||
render()
|
||||
|
||||
ro = new ResizeObserver(() => {
|
||||
if (!container.value) return
|
||||
width.value = container.value.clientWidth || 800
|
||||
height.value = container.value.clientHeight || 600
|
||||
if (svgRoot) {
|
||||
svgRoot.attr('width', width.value).attr('height', height.value)
|
||||
}
|
||||
if (simulation) {
|
||||
simulation.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
||||
simulation.alpha(0.3).restart()
|
||||
}
|
||||
})
|
||||
ro.observe(container.value)
|
||||
})
|
||||
|
||||
onUnmounted(() => {
|
||||
if (simulation) simulation.stop()
|
||||
if (ro) ro.disconnect()
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="h-full w-full flex items-center justify-center text-sm text-neutral-400">
|
||||
Carte O placeholder (PC3)
|
||||
<div ref="container" class="carte-o-wrap">
|
||||
<svg ref="svgEl" class="carte-o-svg" />
|
||||
|
||||
<!-- Zoom controls overlay -->
|
||||
<div class="zoom-controls">
|
||||
<button type="button" @click="zoomIn" aria-label="Zoom avant">+</button>
|
||||
<button type="button" @click="zoomReset" aria-label="Réinitialiser le zoom">⟲</button>
|
||||
<button type="button" @click="zoomOut" aria-label="Zoom arrière">−</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.carte-o-wrap {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
background: #fafafa;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.carte-o-svg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
.carte-o-svg:active {
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.zoom-controls {
|
||||
position: absolute;
|
||||
top: 0.5rem;
|
||||
right: 0.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
background: rgba(255, 255, 255, 0.85);
|
||||
border: 1px solid rgba(0, 0, 0, 0.06);
|
||||
border-radius: 8px;
|
||||
padding: 4px;
|
||||
backdrop-filter: blur(4px);
|
||||
}
|
||||
|
||||
.zoom-controls button {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #374151;
|
||||
border-radius: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.zoom-controls button:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
</style>
|
||||
|
||||
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>
|
||||
180
src/components/vue/CarteOWrapper.vue
Normal file
180
src/components/vue/CarteOWrapper.vue
Normal file
@@ -0,0 +1,180 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, onMounted, computed } from 'vue'
|
||||
import CarteO from './CarteO.vue'
|
||||
import CarteOContextMenu from './CarteOContextMenu.vue'
|
||||
|
||||
interface CarteNode {
|
||||
id: string
|
||||
label: string
|
||||
family: string
|
||||
niveau?: number
|
||||
nature?: 'essai' | 'projet'
|
||||
statut?: 'gestation' | 'edite'
|
||||
resume?: string | null
|
||||
intention?: string
|
||||
slug?: string
|
||||
theme?: string
|
||||
}
|
||||
|
||||
interface CarteEdge {
|
||||
source: string
|
||||
target: string
|
||||
}
|
||||
|
||||
interface CarteData {
|
||||
meta?: {
|
||||
nodeCount?: number
|
||||
edgeCount?: number
|
||||
familyDistribution?: Record<string, number>
|
||||
familyColors?: Record<string, string>
|
||||
}
|
||||
nodes: CarteNode[]
|
||||
edges: CarteEdge[]
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<{
|
||||
src?: string
|
||||
}>(), {
|
||||
src: '/data/carte-o.json',
|
||||
})
|
||||
|
||||
const data = ref<CarteData | null>(null)
|
||||
const error = ref<string | null>(null)
|
||||
const selectedNode = ref<CarteNode | null>(null)
|
||||
const contextX = ref(0)
|
||||
const contextY = ref(0)
|
||||
const isMobileScreen = ref(false)
|
||||
|
||||
const familyColors = computed(() =>
|
||||
data.value?.meta?.familyColors || {
|
||||
penseur: '#3b82f6',
|
||||
concept: '#10b981',
|
||||
methode: '#f59e0b',
|
||||
collectif: '#ef4444',
|
||||
ressource: '#8b5cf6',
|
||||
}
|
||||
)
|
||||
|
||||
function onNodeClick(payload: { node: CarteNode; x: number; y: number }) {
|
||||
selectedNode.value = payload.node
|
||||
contextX.value = payload.x
|
||||
contextY.value = payload.y
|
||||
}
|
||||
|
||||
onMounted(async () => {
|
||||
isMobileScreen.value = window.innerWidth < 768
|
||||
try {
|
||||
const res = await fetch(props.src)
|
||||
if (!res.ok) throw new Error(`HTTP ${res.status}`)
|
||||
data.value = await res.json()
|
||||
} catch (e: any) {
|
||||
console.error('[CarteO] failed to load', e)
|
||||
error.value = e?.message || 'Erreur de chargement'
|
||||
}
|
||||
|
||||
window.addEventListener('resize', () => {
|
||||
isMobileScreen.value = window.innerWidth < 768
|
||||
})
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="wrapper">
|
||||
<!-- Mobile fallback (V1) -->
|
||||
<div v-if="isMobileScreen" class="mobile-fallback">
|
||||
<div class="mini-map">
|
||||
<svg viewBox="0 0 200 120" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
||||
<circle cx="100" cy="60" r="8" fill="#3b82f6" />
|
||||
<circle cx="50" cy="35" r="5" fill="#10b981" />
|
||||
<circle cx="150" cy="35" r="5" fill="#f59e0b" />
|
||||
<circle cx="55" cy="90" r="5" fill="#ef4444" />
|
||||
<circle cx="145" cy="90" r="5" fill="#8b5cf6" />
|
||||
<line x1="100" y1="60" x2="50" y2="35" stroke="#94a3b8" stroke-width="0.8" opacity="0.5" />
|
||||
<line x1="100" y1="60" x2="150" y2="35" stroke="#94a3b8" stroke-width="0.8" opacity="0.5" />
|
||||
<line x1="100" y1="60" x2="55" y2="90" stroke="#94a3b8" stroke-width="0.8" opacity="0.5" />
|
||||
<line x1="100" y1="60" x2="145" y2="90" stroke="#94a3b8" stroke-width="0.8" opacity="0.5" />
|
||||
</svg>
|
||||
</div>
|
||||
<p class="msg">
|
||||
Carte O optimisee desktop. Retournez sur grand ecran pour explorer la mindmap interactive.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Loading state -->
|
||||
<div v-else-if="!data && !error" class="state">
|
||||
<span>Chargement de la Carte O...</span>
|
||||
</div>
|
||||
|
||||
<!-- Error state -->
|
||||
<div v-else-if="error" class="state error">
|
||||
<span>Impossible de charger la Carte O ({{ error }})</span>
|
||||
</div>
|
||||
|
||||
<!-- Carte O -->
|
||||
<template v-else-if="data">
|
||||
<CarteO
|
||||
:nodes="data.nodes"
|
||||
:edges="data.edges"
|
||||
:family-colors="familyColors"
|
||||
@node-click="onNodeClick"
|
||||
/>
|
||||
<CarteOContextMenu
|
||||
:node="selectedNode"
|
||||
:x="contextX"
|
||||
:y="contextY"
|
||||
@close="selectedNode = null"
|
||||
/>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.wrapper {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.state {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #9ca3af;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.state.error {
|
||||
color: #dc2626;
|
||||
}
|
||||
|
||||
.mobile-fallback {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 1.5rem;
|
||||
text-align: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.mini-map {
|
||||
width: 70%;
|
||||
max-width: 240px;
|
||||
}
|
||||
|
||||
.mini-map svg {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.msg {
|
||||
color: #6b7280;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.45;
|
||||
font-style: italic;
|
||||
max-width: 24rem;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
187
src/components/vue/ChatbotV2.vue
Normal file
187
src/components/vue/ChatbotV2.vue
Normal file
@@ -0,0 +1,187 @@
|
||||
<script setup lang="ts">
|
||||
// PC7 — Chatbot V1 brancha sur endpoint AEP (proxy Astro server-side).
|
||||
// Persistance thread sessionStorage. Bandeau beta info ; pas de streaming, pas de markdown V1.
|
||||
|
||||
import { ref, onMounted, nextTick, useTemplateRef } from 'vue'
|
||||
|
||||
interface Msg {
|
||||
role: 'user' | 'bot'
|
||||
content: string
|
||||
ts: number
|
||||
}
|
||||
|
||||
const props = defineProps<{ apiUrl?: string }>()
|
||||
|
||||
const messages = ref<Msg[]>([])
|
||||
const input = ref('')
|
||||
const sending = ref(false)
|
||||
const errorBanner = ref('')
|
||||
const threadEl = useTemplateRef<HTMLElement>('threadEl')
|
||||
|
||||
const STORAGE_KEY = 'tf-chatbot-v2-thread'
|
||||
const ENDPOINT = props.apiUrl || '/api/chatbot'
|
||||
|
||||
onMounted(() => {
|
||||
try {
|
||||
const saved = sessionStorage.getItem(STORAGE_KEY)
|
||||
if (saved) messages.value = JSON.parse(saved)
|
||||
} catch {
|
||||
// sessionStorage indisponible ; on ignore.
|
||||
}
|
||||
})
|
||||
|
||||
const persist = () => {
|
||||
try {
|
||||
sessionStorage.setItem(STORAGE_KEY, JSON.stringify(messages.value))
|
||||
} catch {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
const scrollToBottom = async () => {
|
||||
await nextTick()
|
||||
const el = threadEl.value
|
||||
if (el) el.scrollTo({ top: el.scrollHeight, behavior: 'smooth' })
|
||||
}
|
||||
|
||||
const send = async () => {
|
||||
const q = input.value.trim()
|
||||
if (!q || sending.value) return
|
||||
|
||||
messages.value.push({ role: 'user', content: q, ts: Date.now() })
|
||||
input.value = ''
|
||||
sending.value = true
|
||||
errorBanner.value = ''
|
||||
persist()
|
||||
scrollToBottom()
|
||||
|
||||
try {
|
||||
const res = await fetch(ENDPOINT, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({
|
||||
question: q,
|
||||
history: messages.value.slice(-10).map((m) => ({ role: m.role, content: m.content })),
|
||||
}),
|
||||
})
|
||||
|
||||
if (!res.ok) {
|
||||
if (res.status === 429) {
|
||||
errorBanner.value = 'Limite de questions atteinte ; ressaie plus tard.'
|
||||
} else if (res.status === 502 || res.status === 504) {
|
||||
errorBanner.value = "Le service de chat n'est pas joignable ; ressaie dans un instant."
|
||||
} else {
|
||||
errorBanner.value = `Erreur ${res.status} ; ressaie ou recharge la page.`
|
||||
}
|
||||
sending.value = false
|
||||
return
|
||||
}
|
||||
|
||||
const data = await res.json()
|
||||
const answer =
|
||||
data.reponse_texte ||
|
||||
data.answer ||
|
||||
data.text ||
|
||||
data.message ||
|
||||
'Pas de reponse.'
|
||||
|
||||
messages.value.push({ role: 'bot', content: answer, ts: Date.now() })
|
||||
} catch (e) {
|
||||
errorBanner.value = "Probleme reseau ; verifie ta connexion."
|
||||
messages.value.push({
|
||||
role: 'bot',
|
||||
content: `Erreur : ${(e as Error).message || 'inconnue'}`,
|
||||
ts: Date.now(),
|
||||
})
|
||||
} finally {
|
||||
sending.value = false
|
||||
persist()
|
||||
scrollToBottom()
|
||||
}
|
||||
}
|
||||
|
||||
const reset = () => {
|
||||
messages.value = []
|
||||
errorBanner.value = ''
|
||||
persist()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="h-full flex flex-col bg-white">
|
||||
<div class="bg-amber-50 border-b border-amber-200 px-3 py-2 text-xs text-amber-900 leading-snug">
|
||||
<span class="font-medium">Beta :</span> 120 fiches AEP indexees (Mistral Small) ; bientot RAG-PE multi-corpus.
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="errorBanner"
|
||||
class="bg-rose-50 border-b border-rose-200 px-3 py-2 text-xs text-rose-800"
|
||||
role="alert"
|
||||
>
|
||||
{{ errorBanner }}
|
||||
</div>
|
||||
|
||||
<div
|
||||
ref="threadEl"
|
||||
class="flex-1 overflow-y-auto px-3 py-3 space-y-3"
|
||||
role="log"
|
||||
aria-live="polite"
|
||||
>
|
||||
<p
|
||||
v-if="!messages.length"
|
||||
class="text-neutral-400 text-sm italic text-center mt-8 px-4"
|
||||
>
|
||||
Pose une question sur l'AEP ; le manifeste ; les agences locales...
|
||||
</p>
|
||||
|
||||
<div
|
||||
v-for="m in messages"
|
||||
:key="m.ts"
|
||||
:class="[
|
||||
'max-w-[85%] rounded-lg px-3 py-2 text-sm leading-relaxed whitespace-pre-wrap break-words',
|
||||
m.role === 'user'
|
||||
? 'bg-neutral-900 text-white ml-auto'
|
||||
: 'bg-neutral-100 text-neutral-800 mr-auto',
|
||||
]"
|
||||
>
|
||||
{{ m.content }}
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="sending"
|
||||
class="bg-neutral-100 max-w-[60%] rounded-lg px-3 py-2 text-sm text-neutral-500 italic mr-auto"
|
||||
>
|
||||
Le bot reflechit...
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form
|
||||
class="border-t border-neutral-200 p-2 flex gap-2 items-stretch"
|
||||
@submit.prevent="send"
|
||||
>
|
||||
<input
|
||||
v-model="input"
|
||||
type="text"
|
||||
placeholder="Ta question..."
|
||||
:disabled="sending"
|
||||
class="flex-1 px-3 py-2 border border-neutral-300 rounded-lg text-sm focus:outline-none focus:border-neutral-900 disabled:opacity-60"
|
||||
aria-label="Saisis ta question"
|
||||
/>
|
||||
<button
|
||||
type="submit"
|
||||
:disabled="sending || !input.trim()"
|
||||
class="px-3 py-2 bg-neutral-900 text-white rounded-lg text-sm font-medium disabled:opacity-50"
|
||||
>
|
||||
Envoyer
|
||||
</button>
|
||||
<button
|
||||
v-if="messages.length"
|
||||
type="button"
|
||||
class="px-2 py-2 text-neutral-500 text-xs hover:text-neutral-900 underline"
|
||||
@click="reset"
|
||||
>
|
||||
Reset
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</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>
|
||||
107
src/components/vue/InstaFeed.vue
Normal file
107
src/components/vue/InstaFeed.vue
Normal file
@@ -0,0 +1,107 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, onMounted } from 'vue';
|
||||
|
||||
interface BeholdPost {
|
||||
id: string;
|
||||
permalink: string;
|
||||
mediaUrl: string;
|
||||
thumbnailUrl?: string;
|
||||
caption?: string;
|
||||
mediaType: 'IMAGE' | 'VIDEO' | 'CAROUSEL_ALBUM';
|
||||
timestamp: string;
|
||||
}
|
||||
|
||||
const props = defineProps<{
|
||||
feedId: string;
|
||||
account: string;
|
||||
accountUrl: string;
|
||||
fallbackBio?: string;
|
||||
}>();
|
||||
|
||||
const posts = ref<BeholdPost[]>([]);
|
||||
const loading = ref(true);
|
||||
const error = ref<string | null>(null);
|
||||
|
||||
const isPlaceholder = (id: string) => !id || id.startsWith('PLACEHOLDER_');
|
||||
|
||||
onMounted(async () => {
|
||||
if (isPlaceholder(props.feedId)) {
|
||||
loading.value = false;
|
||||
error.value = 'no-feed-id';
|
||||
return;
|
||||
}
|
||||
try {
|
||||
const controller = new AbortController();
|
||||
const timeoutId = setTimeout(() => controller.abort(), 5000);
|
||||
const res = await fetch(`https://feeds.behold.so/${props.feedId}`, {
|
||||
signal: controller.signal,
|
||||
});
|
||||
clearTimeout(timeoutId);
|
||||
if (!res.ok) throw new Error(`Behold returned ${res.status}`);
|
||||
const data = await res.json();
|
||||
const items: BeholdPost[] = Array.isArray(data) ? data : (data.posts ?? []);
|
||||
posts.value = items.slice(0, 6);
|
||||
} catch (e) {
|
||||
error.value = (e as Error).message || 'fetch-error';
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section class="border-b border-neutral-200 last:border-b-0">
|
||||
<header class="px-4 py-3 flex items-center justify-between">
|
||||
<a
|
||||
:href="accountUrl"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
class="font-medium text-sm hover:underline"
|
||||
>
|
||||
{{ account }}
|
||||
</a>
|
||||
<span v-if="loading" class="text-xs text-neutral-400">...</span>
|
||||
</header>
|
||||
|
||||
<div v-if="loading" class="grid grid-cols-2 gap-1 p-1">
|
||||
<div
|
||||
v-for="i in 4"
|
||||
:key="i"
|
||||
class="aspect-square bg-neutral-100 animate-pulse"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-else-if="posts.length"
|
||||
class="grid grid-cols-2 gap-1 p-1"
|
||||
>
|
||||
<a
|
||||
v-for="post in posts"
|
||||
:key="post.id"
|
||||
:href="post.permalink"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
class="block aspect-square overflow-hidden group"
|
||||
>
|
||||
<img
|
||||
:src="post.thumbnailUrl || post.mediaUrl"
|
||||
:alt="post.caption?.slice(0, 80) || account"
|
||||
loading="lazy"
|
||||
class="w-full h-full object-cover group-hover:scale-105 transition-transform"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div v-else class="p-4 text-sm text-neutral-600">
|
||||
<p v-if="fallbackBio" class="mb-3">{{ fallbackBio }}</p>
|
||||
<a
|
||||
:href="accountUrl"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
class="inline-block px-3 py-2 bg-neutral-900 text-white rounded-lg text-sm"
|
||||
>
|
||||
Voir sur Instagram →
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
@@ -1,9 +1,196 @@
|
||||
<script setup lang="ts">
|
||||
// Placeholder journal list — PC6 lit public/data/journal.json
|
||||
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
|
||||
}
|
||||
|
||||
interface JournalPayload {
|
||||
generatedAt: string
|
||||
items: JournalItem[]
|
||||
counts?: Record<string, number>
|
||||
}
|
||||
|
||||
const items = ref<JournalItem[]>([])
|
||||
const filters = ref<Record<string, boolean>>({})
|
||||
const platformFilter = ref<string | null>(null)
|
||||
const loading = ref(true)
|
||||
const errored = ref(false)
|
||||
const empty = ref(false)
|
||||
|
||||
const JOURNAL_URL =
|
||||
(import.meta as unknown as { env: Record<string, string | undefined> }).env
|
||||
.PUBLIC_JOURNAL_URL || 'https://data.trans-former.fr/journal.json'
|
||||
|
||||
const STORAGE_KEY = 'tf-hashtag-filters'
|
||||
|
||||
const loadFilters = () => {
|
||||
try {
|
||||
filters.value = JSON.parse(localStorage.getItem(STORAGE_KEY) || '{}')
|
||||
} catch {
|
||||
filters.value = {}
|
||||
}
|
||||
}
|
||||
|
||||
const onFilterChange = (e: Event) => {
|
||||
const ce = e as CustomEvent
|
||||
if (ce.detail && typeof ce.detail === 'object') {
|
||||
filters.value = { ...ce.detail }
|
||||
}
|
||||
}
|
||||
|
||||
const onPlatformChange = (e: Event) => {
|
||||
const ce = e as CustomEvent
|
||||
platformFilter.value = ce.detail?.platform ?? null
|
||||
}
|
||||
|
||||
onMounted(async () => {
|
||||
loadFilters()
|
||||
window.addEventListener('hashtag-filter-change', onFilterChange as EventListener)
|
||||
window.addEventListener('platform-filter-change', onPlatformChange as EventListener)
|
||||
try {
|
||||
const res = await fetch(JOURNAL_URL, { cache: 'no-store' })
|
||||
if (!res.ok) {
|
||||
errored.value = true
|
||||
return
|
||||
}
|
||||
const data = (await res.json()) as JournalPayload
|
||||
items.value = Array.isArray(data.items) ? data.items : []
|
||||
if (items.value.length === 0) empty.value = true
|
||||
} catch (e) {
|
||||
errored.value = true
|
||||
console.error('JournalList fetch failed', e)
|
||||
} finally {
|
||||
loading.value = false
|
||||
}
|
||||
})
|
||||
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener('hashtag-filter-change', onFilterChange 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 keys = Object.keys(filters.value)
|
||||
let filtered: JournalItem[]
|
||||
if (keys.length === 0) {
|
||||
filtered = items.value
|
||||
} else {
|
||||
const activeKeys = keys.filter((k) => filters.value[k])
|
||||
if (activeKeys.length === 0 && keys.some((k) => filters.value[k] === false)) {
|
||||
filtered = []
|
||||
} else if (activeKeys.length === 0) {
|
||||
filtered = items.value
|
||||
} else {
|
||||
filtered = items.value.filter((it) => activeKeys.includes(it.hashtag))
|
||||
}
|
||||
}
|
||||
if (platformFilter.value) {
|
||||
filtered = filtered.filter((it) => it.platform === platformFilter.value)
|
||||
}
|
||||
return filtered
|
||||
})
|
||||
|
||||
const formatDate = (iso: string) => {
|
||||
try {
|
||||
const d = new Date(iso)
|
||||
if (isNaN(d.getTime())) return ''
|
||||
return `${String(d.getDate()).padStart(2, '0')}/${String(d.getMonth() + 1).padStart(2, '0')}`
|
||||
} catch {
|
||||
return ''
|
||||
}
|
||||
}
|
||||
|
||||
const platformLabel = (p: string) => {
|
||||
switch (p) {
|
||||
case 'gitea':
|
||||
case 'github':
|
||||
return 'code'
|
||||
case 'substack':
|
||||
return 'substack'
|
||||
case 'instagram':
|
||||
return 'insta'
|
||||
case 'castopod':
|
||||
return 'pod'
|
||||
case 'blog':
|
||||
return 'blog'
|
||||
case 'linkedin':
|
||||
return 'linkedin'
|
||||
default:
|
||||
return p
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="h-full w-full flex items-center justify-center text-sm text-neutral-400">
|
||||
Journal list placeholder (PC6)
|
||||
<div class="space-y-3">
|
||||
<p v-if="loading" class="text-neutral-400 italic text-xs">
|
||||
Chargement du journal...
|
||||
</p>
|
||||
<p v-else-if="errored" class="text-neutral-400 italic text-xs">
|
||||
Journal en cours d'agregation. Reviens dans quelques heures.
|
||||
</p>
|
||||
<p v-else-if="empty" class="text-neutral-400 italic text-xs">
|
||||
Aucun item agrege. Le cron nocturne tourne a 3h.
|
||||
</p>
|
||||
<p
|
||||
v-else-if="!visibleItems.length"
|
||||
class="text-neutral-400 italic text-xs"
|
||||
>
|
||||
Aucun item ; ajuste les filtres.
|
||||
</p>
|
||||
<article
|
||||
v-for="item in visibleItems"
|
||||
:key="item.id"
|
||||
class="border-b border-neutral-100 pb-3 last:border-b-0"
|
||||
>
|
||||
<a
|
||||
:href="item.url"
|
||||
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>
|
||||
<span class="font-mono text-neutral-700">{{ item.hashtag }}</span>
|
||||
<span class="text-neutral-400">{{ platformLabel(item.platform) }}</span>
|
||||
</div>
|
||||
<h4
|
||||
class="text-sm text-neutral-900 group-hover:text-neutral-600 leading-snug"
|
||||
>
|
||||
{{ item.titre }}
|
||||
</h4>
|
||||
<p
|
||||
v-if="item.extrait"
|
||||
class="text-xs text-neutral-500 mt-1 line-clamp-2"
|
||||
>
|
||||
{{ item.extrait }}
|
||||
</p>
|
||||
<img
|
||||
v-if="item.thumbnail"
|
||||
:src="item.thumbnail"
|
||||
:alt="item.titre"
|
||||
loading="lazy"
|
||||
class="mt-2 w-full max-h-32 object-cover rounded"
|
||||
/>
|
||||
</a>
|
||||
</article>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -22,12 +22,17 @@ const resetFade = () => {
|
||||
}, 3000);
|
||||
};
|
||||
|
||||
const emitPositionChange = (pos: number) => {
|
||||
document.dispatchEvent(new CustomEvent('swipe-position-change', { detail: { pos } }));
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
if (!emblaApi.value) return;
|
||||
emblaApi.value.on('select', () => {
|
||||
if (!emblaApi.value) return;
|
||||
selectedIndex.value = emblaApi.value.selectedScrollSnap();
|
||||
sessionStorage.setItem('pc-position', String(selectedIndex.value));
|
||||
emitPositionChange(selectedIndex.value);
|
||||
resetFade();
|
||||
});
|
||||
const saved = sessionStorage.getItem('pc-position');
|
||||
@@ -35,6 +40,13 @@ onMounted(() => {
|
||||
const idx = Number(saved);
|
||||
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();
|
||||
});
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
---
|
||||
import '../styles/global.css';
|
||||
import Footer from '../components/astro/Footer.astro';
|
||||
|
||||
interface Props {
|
||||
title?: string;
|
||||
@@ -8,7 +9,7 @@ interface Props {
|
||||
|
||||
const {
|
||||
title = 'trans-former.fr',
|
||||
description = 'Page-cerveau : journal, mindmap AEP, Insta',
|
||||
description = "Architecture d'ecologie politique - journal, carte conceptuelle, manifeste",
|
||||
} = Astro.props;
|
||||
---
|
||||
<!doctype html>
|
||||
@@ -29,5 +30,6 @@ const {
|
||||
</head>
|
||||
<body class="m-0 bg-white text-neutral-900 antialiased">
|
||||
<slot />
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
---
|
||||
export const prerender = true;
|
||||
|
||||
import BaseLayout from '../layouts/BaseLayout.astro';
|
||||
import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
||||
---
|
||||
|
||||
65
src/pages/api/chatbot.ts
Normal file
65
src/pages/api/chatbot.ts
Normal file
@@ -0,0 +1,65 @@
|
||||
// PC7 — Endpoint proxy POST /api/chatbot
|
||||
// Forward la question vers CHATBOT_UPSTREAM (default : aep.trans-former.fr/api/chatbot).
|
||||
// Tunnel CORS (l'upstream ne sert pas de header CORS pour trans-former.fr) + timeout 25s.
|
||||
|
||||
import type { APIRoute } from 'astro'
|
||||
|
||||
export const prerender = false
|
||||
|
||||
const UPSTREAM =
|
||||
import.meta.env.CHATBOT_UPSTREAM || 'https://aep.trans-former.fr/api/chatbot'
|
||||
const TIMEOUT_MS = 25_000
|
||||
|
||||
const jsonResponse = (status: number, payload: unknown) =>
|
||||
new Response(JSON.stringify(payload), {
|
||||
status,
|
||||
headers: { 'Content-Type': 'application/json; charset=utf-8' },
|
||||
})
|
||||
|
||||
export const POST: APIRoute = async ({ request }) => {
|
||||
let body: { question?: string; q?: string; history?: unknown }
|
||||
|
||||
try {
|
||||
body = await request.json()
|
||||
} catch {
|
||||
return jsonResponse(400, { error: 'invalid_json' })
|
||||
}
|
||||
|
||||
const question = (body.question || body.q || '').toString().trim()
|
||||
if (!question) {
|
||||
return jsonResponse(400, { error: 'missing_question' })
|
||||
}
|
||||
|
||||
const ctrl = new AbortController()
|
||||
const timer = setTimeout(() => ctrl.abort(), TIMEOUT_MS)
|
||||
|
||||
try {
|
||||
const upstream = await fetch(UPSTREAM, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({
|
||||
question,
|
||||
history: Array.isArray(body.history) ? body.history : [],
|
||||
}),
|
||||
signal: ctrl.signal,
|
||||
})
|
||||
clearTimeout(timer)
|
||||
|
||||
const text = await upstream.text()
|
||||
const contentType =
|
||||
upstream.headers.get('content-type') || 'application/json; charset=utf-8'
|
||||
|
||||
return new Response(text, {
|
||||
status: upstream.status,
|
||||
headers: { 'Content-Type': contentType },
|
||||
})
|
||||
} catch (e) {
|
||||
clearTimeout(timer)
|
||||
const err = e as Error
|
||||
const aborted = err.name === 'AbortError'
|
||||
return jsonResponse(aborted ? 504 : 502, {
|
||||
error: aborted ? 'upstream_timeout' : 'upstream_failed',
|
||||
detail: err.message || 'unknown',
|
||||
})
|
||||
}
|
||||
}
|
||||
71
src/pages/api/subscribe.ts
Normal file
71
src/pages/api/subscribe.ts
Normal file
@@ -0,0 +1,71 @@
|
||||
import type { APIRoute } from 'astro'
|
||||
|
||||
export const prerender = false
|
||||
|
||||
const KIT_API_BASE = 'https://api.kit.com/v4'
|
||||
|
||||
export const POST: APIRoute = async ({ request }) => {
|
||||
const KIT_API_KEY = import.meta.env.KIT_API_SECRET_V4
|
||||
if (!KIT_API_KEY) {
|
||||
return new Response(JSON.stringify({ error: 'config_missing' }), {
|
||||
status: 500,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
})
|
||||
}
|
||||
|
||||
let body: { email: string; first_name?: string }
|
||||
try {
|
||||
body = await request.json()
|
||||
} catch {
|
||||
return new Response(JSON.stringify({ error: 'invalid_json' }), {
|
||||
status: 400,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
})
|
||||
}
|
||||
|
||||
const email = (body.email || '').trim().toLowerCase()
|
||||
if (!email || !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) {
|
||||
return new Response(JSON.stringify({ error: 'invalid_email' }), {
|
||||
status: 400,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
})
|
||||
}
|
||||
|
||||
try {
|
||||
const upstream = await fetch(`${KIT_API_BASE}/subscribers`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-Kit-Api-Key': KIT_API_KEY,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
email_address: email,
|
||||
first_name: body.first_name || undefined,
|
||||
state: 'active',
|
||||
}),
|
||||
signal: AbortSignal.timeout(10000),
|
||||
})
|
||||
|
||||
if (upstream.ok) {
|
||||
return new Response(JSON.stringify({ ok: true }), {
|
||||
status: 200,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
})
|
||||
}
|
||||
if (upstream.status === 422) {
|
||||
return new Response(JSON.stringify({ ok: true, already: true }), {
|
||||
status: 200,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
})
|
||||
}
|
||||
return new Response(
|
||||
JSON.stringify({ error: 'kit_failed', status: upstream.status }),
|
||||
{ status: 502, headers: { 'Content-Type': 'application/json' } }
|
||||
)
|
||||
} catch (e) {
|
||||
return new Response(
|
||||
JSON.stringify({ error: 'upstream_failed', detail: (e as Error).message }),
|
||||
{ status: 502, headers: { 'Content-Type': 'application/json' } }
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -1,14 +1,18 @@
|
||||
---
|
||||
export const prerender = true;
|
||||
|
||||
import BaseLayout from '../layouts/BaseLayout.astro';
|
||||
import ColJournal from '../components/astro/ColJournal.astro';
|
||||
import ColCentre from '../components/astro/ColCentre.astro';
|
||||
import ColInsta from '../components/astro/ColInsta.astro';
|
||||
import SwipeContainer from '../components/vue/SwipeContainer.vue';
|
||||
import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
||||
import MobileTabBar from '../components/astro/MobileTabBar.astro';
|
||||
import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
||||
---
|
||||
<BaseLayout title="trans-former.fr">
|
||||
<HamburgerMenu />
|
||||
<MobileTabBar />
|
||||
<PopupOnboarding />
|
||||
|
||||
<!-- Desktop : grid 3 colonnes -->
|
||||
@@ -18,8 +22,8 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
||||
<aside class="border-l border-neutral-200 overflow-y-auto"><ColInsta /></aside>
|
||||
</div>
|
||||
|
||||
<!-- Mobile : SwipeContainer Vue island -->
|
||||
<div class="md:hidden h-screen overflow-hidden">
|
||||
<!-- Mobile : SwipeContainer Vue island - decale de 44px pour la tabbar -->
|
||||
<div class="md:hidden overflow-hidden" style="height: calc(100dvh - 44px); margin-top: 44px;">
|
||||
<SwipeContainer client:load>
|
||||
<ColJournal slot="left" />
|
||||
<ColCentre slot="center" />
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
---
|
||||
export const prerender = true;
|
||||
|
||||
import BaseLayout from '../layouts/BaseLayout.astro';
|
||||
import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
||||
---
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
---
|
||||
export const prerender = true;
|
||||
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import HamburgerMenu from '../../components/astro/HamburgerMenu.astro';
|
||||
---
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
---
|
||||
export const prerender = true;
|
||||
|
||||
import BaseLayout from '../layouts/BaseLayout.astro';
|
||||
import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
||||
---
|
||||
|
||||
@@ -1 +1,23 @@
|
||||
@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