Compare commits
16 Commits
feat/v13-e
...
feat/v1.5-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
458a152525 | ||
|
|
36feace21f | ||
|
|
0e65156fa0 | ||
|
|
020cf0a162 | ||
|
|
1c4dce2fa4 | ||
|
|
cde95cdf61 | ||
|
|
f099463636 | ||
|
|
d01301e40b | ||
|
|
dbba7dee3a | ||
|
|
3baeb0378c | ||
|
|
6db93d9c5a | ||
|
|
5a628fd85b | ||
|
|
bc7e394913 | ||
|
|
b48b66bd76 | ||
|
|
e012d11bee | ||
|
|
8703d056d9 |
11
.env.example
11
.env.example
@@ -1,14 +1,15 @@
|
|||||||
# Kit (ex-ConvertKit) - newsletter infolettre
|
# Kit (ex-ConvertKit) - newsletter infolettre
|
||||||
KIT_API_SECRET_V4=kit_xxx
|
KIT_API_SECRET_V4=kit_xxx
|
||||||
|
|
||||||
# Behold.so feed IDs (voir docs/BEHOLD-SETUP.md)
|
# Behold.so : DEPRECATED V1.5-E — remplace par RSSHub self-host (rss.trans-former.fr).
|
||||||
# 1) Inscris-toi sur https://behold.so/dashboard
|
# InstaFeed.vue consomme desormais PUBLIC_JOURNAL_URL (filtre platform=instagram).
|
||||||
# 2) Connecte les 2 comptes Insta (@aep.politique + @julesneny)
|
# Les 2 vars ci-dessous ne sont plus lues ; conservees pour compat.env.local existant.
|
||||||
# 3) Recupere les feed IDs et copie ce fichier vers .env.local puis remplis ci-dessous
|
|
||||||
PUBLIC_BEHOLD_AEP=
|
PUBLIC_BEHOLD_AEP=
|
||||||
PUBLIC_BEHOLD_JULESNENY=
|
PUBLIC_BEHOLD_JULESNENY=
|
||||||
|
|
||||||
# Journal unifie (PC6) - URL JSON agrege par n8n cron nocturne
|
# Journal unifie (PC6 + V1.5-E) - URL JSON agrege par n8n cron 4h UTC
|
||||||
|
# Sources : RSSHub self-host (Insta @aep.politique + @julesneny + Substack @julesneny)
|
||||||
|
# + Atom Gitea natif (git.trans-former.fr/jules.atom)
|
||||||
# Override en local : pointer vers un mock /public/data/journal.json par exemple
|
# Override en local : pointer vers un mock /public/data/journal.json par exemple
|
||||||
PUBLIC_JOURNAL_URL=https://data.trans-former.fr/journal.json
|
PUBLIC_JOURNAL_URL=https://data.trans-former.fr/journal.json
|
||||||
|
|
||||||
|
|||||||
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
FROM node:22-alpine AS builder
|
||||||
|
WORKDIR /app
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN npm ci
|
||||||
|
COPY . .
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
FROM node:22-alpine
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=builder /app/dist ./dist
|
||||||
|
COPY --from=builder /app/node_modules ./node_modules
|
||||||
|
COPY --from=builder /app/package*.json ./
|
||||||
|
EXPOSE 3000
|
||||||
|
ENV HOST=0.0.0.0
|
||||||
|
ENV PORT=3000
|
||||||
|
CMD ["node", "./dist/server/entry.mjs"]
|
||||||
@@ -3,14 +3,22 @@ import { defineConfig } from 'astro/config';
|
|||||||
import vue from '@astrojs/vue';
|
import vue from '@astrojs/vue';
|
||||||
import node from '@astrojs/node';
|
import node from '@astrojs/node';
|
||||||
import tailwindcss from '@tailwindcss/vite';
|
import tailwindcss from '@tailwindcss/vite';
|
||||||
|
import sitemap from '@astrojs/sitemap';
|
||||||
|
|
||||||
// PC7 — bascule SSR (mode 'server' Astro 6) pour endpoint /api/chatbot proxy.
|
// PC7 — bascule SSR (mode 'server' Astro 6) pour endpoint /api/chatbot proxy.
|
||||||
// Toutes les pages publiques restent statiques via `export const prerender = true`.
|
// Toutes les pages publiques restent statiques via `export const prerender = true`.
|
||||||
// Coolify deploy (PC8) : `node ./dist/server/entry.mjs` (Node adapter standalone).
|
// Coolify deploy (PC8) : `node ./dist/server/entry.mjs` (Node adapter standalone).
|
||||||
|
// PC8 — sitemap auto-genere + site URL pour canonical + redirects SEO.
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
|
site: 'https://trans-former.fr',
|
||||||
output: 'server',
|
output: 'server',
|
||||||
adapter: node({ mode: 'standalone' }),
|
adapter: node({ mode: 'standalone' }),
|
||||||
integrations: [vue()],
|
integrations: [
|
||||||
|
vue(),
|
||||||
|
sitemap({
|
||||||
|
filter: (page) => !page.includes('/api/'),
|
||||||
|
}),
|
||||||
|
],
|
||||||
vite: {
|
vite: {
|
||||||
plugins: [tailwindcss()],
|
plugins: [tailwindcss()],
|
||||||
},
|
},
|
||||||
|
|||||||
139
docs/n8n-workflow-journal-aggregate-v2-rsshub.json
Normal file
139
docs/n8n-workflow-journal-aggregate-v2-rsshub.json
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
{
|
||||||
|
"name": "journal-aggregate-v2-rsshub",
|
||||||
|
"_notes": "V1.5-E (2026-05-13) — remplace Behold par RSSHub self-host (rss.trans-former.fr) + ajoute Substack natif. Cron decale a 4h UTC (anti-rate-limit Insta). Si /instagram/user/* renvoie 503 (config Insta absente), le node tombe gracefully et le JSON final aura 0 item insta — ColInsta affichera fallbackBio. A importer dans n8n via UI (Workflows -> Import from File) ou API.",
|
||||||
|
"nodes": [
|
||||||
|
{
|
||||||
|
"parameters": {
|
||||||
|
"rule": {
|
||||||
|
"interval": [
|
||||||
|
{
|
||||||
|
"field": "cronExpression",
|
||||||
|
"expression": "0 4 * * *"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": "schedule-trigger",
|
||||||
|
"name": "Cron-4h-UTC",
|
||||||
|
"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, 160]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parameters": {
|
||||||
|
"url": "https://julesneny.substack.com/feed",
|
||||||
|
"options": {
|
||||||
|
"response": { "response": { "responseFormat": "text" } },
|
||||||
|
"timeout": 15000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": "fetch-substack",
|
||||||
|
"name": "Fetch-substack-natif",
|
||||||
|
"type": "n8n-nodes-base.httpRequest",
|
||||||
|
"typeVersion": 4.1,
|
||||||
|
"position": [460, 280]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parameters": {
|
||||||
|
"url": "https://rss.trans-former.fr/instagram/user/aep.politique",
|
||||||
|
"options": {
|
||||||
|
"response": { "response": { "neverError": true, "responseFormat": "text" } },
|
||||||
|
"timeout": 20000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": "fetch-rsshub-aep",
|
||||||
|
"name": "Fetch-rsshub-insta-aep",
|
||||||
|
"type": "n8n-nodes-base.httpRequest",
|
||||||
|
"typeVersion": 4.1,
|
||||||
|
"position": [460, 400]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parameters": {
|
||||||
|
"url": "https://rss.trans-former.fr/instagram/user/julesneny",
|
||||||
|
"options": {
|
||||||
|
"response": { "response": { "neverError": true, "responseFormat": "text" } },
|
||||||
|
"timeout": 20000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": "fetch-rsshub-julesneny",
|
||||||
|
"name": "Fetch-rsshub-insta-julesneny",
|
||||||
|
"type": "n8n-nodes-base.httpRequest",
|
||||||
|
"typeVersion": 4.1,
|
||||||
|
"position": [460, 520]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parameters": {
|
||||||
|
"jsCode": "// V1.5-E : Normalisation 4 sources -> JSON unifie\n// Sources : Gitea Atom (XML), Substack natif (RSS XML), RSSHub Insta x2 (Atom/RSS XML)\n\nconst items = [];\n\n// ---- Helper parse Atom (Gitea) ----\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 const decode = (s) => s\n .replace(/</g, '<').replace(/>/g, '>')\n .replace(/"/g, '\"').replace(/"/g, '\"')\n .replace(/
/g, ' ').replace(/&/g, '&')\n .replace(/<[^>]+>/g, ' ').replace(/\\s+/g, ' ').trim();\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: decode(title).slice(0, 140),\n extrait: decode(summary).slice(0, 280),\n url: link,\n thumbnail: null,\n });\n }\n return out;\n}\n\n// ---- Helper parse RSS 2.0 (Substack, RSSHub) ----\nfunction parseRss(xml, platform, hashtag, fallbackUrl) {\n const out = [];\n if (!xml || typeof xml !== 'string') return out;\n const items = xml.split(/<item[\\s>]/i).slice(1);\n for (const raw of items) {\n const block = '<item ' + raw.split(/<\\/item>/i)[0] + '</item>';\n const cdata = (re) => {\n const m = block.match(re);\n if (!m) return '';\n let s = m[1] || '';\n s = s.replace(/<!\\[CDATA\\[([\\s\\S]*?)\\]\\]>/g, '$1');\n return s;\n };\n const title = cdata(/<title[^>]*>([\\s\\S]*?)<\\/title>/i);\n const link = cdata(/<link[^>]*>([\\s\\S]*?)<\\/link>/i).trim();\n const guid = cdata(/<guid[^>]*>([\\s\\S]*?)<\\/guid>/i).trim();\n const desc = cdata(/<description[^>]*>([\\s\\S]*?)<\\/description>/i);\n const pub = cdata(/<pubDate[^>]*>([\\s\\S]*?)<\\/pubDate>/i).trim();\n if (!pub && !title) continue;\n const decode = (s) => s\n .replace(/</g, '<').replace(/>/g, '>')\n .replace(/"/g, '\"').replace(/"/g, '\"')\n .replace(/&/g, '&')\n .replace(/<[^>]+>/g, ' ').replace(/\\s+/g, ' ').trim();\n const enclosure = (block.match(/<enclosure[^>]+url=\"([^\"]+)\"/i) || [])[1] || null;\n const mediaThumb = (block.match(/<media:thumbnail[^>]+url=\"([^\"]+)\"/i) || [])[1] || null;\n out.push({\n id: platform + '-' + (guid || link || pub).slice(0, 80),\n platform,\n hashtag,\n date: pub ? new Date(pub).toISOString() : new Date().toISOString(),\n titre: decode(title).slice(0, 140) || platform,\n extrait: decode(desc).slice(0, 280),\n url: link || fallbackUrl,\n thumbnail: mediaThumb || enclosure,\n });\n }\n return out;\n}\n\n// ---- Recupere payloads ----\nfunction safeText(nodeName) {\n try {\n const its = $(nodeName).all();\n if (!its.length || !its[0].json) return '';\n const j = its[0].json;\n return String(j.data || j.body || '');\n } catch (e) {\n console.log(nodeName + ' missing:', e.message);\n return '';\n }\n}\n\nconst giteaXml = safeText('Fetch-gitea');\nconst subXml = safeText('Fetch-substack-natif');\nconst rsshubAepXml = safeText('Fetch-rsshub-insta-aep');\nconst rsshubJnXml = safeText('Fetch-rsshub-insta-julesneny');\n\nfor (const it of parseAtomGitea(giteaXml)) items.push(it);\nfor (const it of parseRss(subXml, 'substack', '#substack', 'https://julesneny.substack.com')) items.push(it);\nfor (const it of parseRss(rsshubAepXml, 'instagram', '#aep-politique', 'https://instagram.com/aep.politique')) items.push(it);\nfor (const it of parseRss(rsshubJnXml, 'instagram', '#peinture', 'https://instagram.com/julesneny')) items.push(it);\n\n// ---- Dedup par id, tri desc, cap top 100 ----\nconst seen = new Set();\nconst uniq = items.filter((it) => {\n if (seen.has(it.id)) return false;\n seen.add(it.id);\n return true;\n});\nuniq.sort((a, b) => b.date.localeCompare(a.date));\nconst top = uniq.slice(0, 100);\n\nconst counts = {\n total: top.length,\n gitea: top.filter((i) => i.platform === 'gitea').length,\n substack: top.filter((i) => i.platform === 'substack').length,\n instagram: top.filter((i) => i.platform === 'instagram').length,\n};\n\nreturn [{ json: { generatedAt: new Date().toISOString(), items: top, counts } }];"
|
||||||
|
},
|
||||||
|
"id": "normalise",
|
||||||
|
"name": "Normalise",
|
||||||
|
"type": "n8n-nodes-base.code",
|
||||||
|
"typeVersion": 2,
|
||||||
|
"position": [720, 340]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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, 340]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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, 340]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"connections": {
|
||||||
|
"Cron-4h-UTC": {
|
||||||
|
"main": [[
|
||||||
|
{ "node": "Fetch-gitea", "type": "main", "index": 0 },
|
||||||
|
{ "node": "Fetch-substack-natif", "type": "main", "index": 0 },
|
||||||
|
{ "node": "Fetch-rsshub-insta-aep", "type": "main", "index": 0 },
|
||||||
|
{ "node": "Fetch-rsshub-insta-julesneny", "type": "main", "index": 0 }
|
||||||
|
]]
|
||||||
|
},
|
||||||
|
"Fetch-gitea": { "main": [[{ "node": "Normalise", "type": "main", "index": 0 }]] },
|
||||||
|
"Fetch-substack-natif": { "main": [[{ "node": "Normalise", "type": "main", "index": 0 }]] },
|
||||||
|
"Fetch-rsshub-insta-aep": { "main": [[{ "node": "Normalise", "type": "main", "index": 0 }]] },
|
||||||
|
"Fetch-rsshub-insta-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": "V1.5-E" }
|
||||||
|
]
|
||||||
|
}
|
||||||
67
package-lock.json
generated
67
package-lock.json
generated
@@ -9,6 +9,7 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^10.1.0",
|
"@astrojs/node": "^10.1.0",
|
||||||
|
"@astrojs/sitemap": "^3.7.2",
|
||||||
"@astrojs/vue": "^6.0.1",
|
"@astrojs/vue": "^6.0.1",
|
||||||
"@fontsource-variable/roboto-condensed": "^5.2.8",
|
"@fontsource-variable/roboto-condensed": "^5.2.8",
|
||||||
"@tailwindcss/vite": "^4.2.4",
|
"@tailwindcss/vite": "^4.2.4",
|
||||||
@@ -98,6 +99,17 @@
|
|||||||
"node": ">=22.12.0"
|
"node": ">=22.12.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@astrojs/sitemap": {
|
||||||
|
"version": "3.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.7.2.tgz",
|
||||||
|
"integrity": "sha512-PqkzkcZTb5ICiyIR8VoKbIAP/laNRXi5tw616N1Ckk+40oNB8Can1AzVV56lrbC5GKSZFCyJYUVYqVivMisvpA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"sitemap": "^9.0.0",
|
||||||
|
"stream-replace-string": "^2.0.0",
|
||||||
|
"zod": "^4.3.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@astrojs/telemetry": {
|
"node_modules/@astrojs/telemetry": {
|
||||||
"version": "3.3.2",
|
"version": "3.3.2",
|
||||||
"resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.2.tgz",
|
||||||
@@ -2661,6 +2673,24 @@
|
|||||||
"@types/unist": "*"
|
"@types/unist": "*"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@types/node": {
|
||||||
|
"version": "24.12.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.4.tgz",
|
||||||
|
"integrity": "sha512-GUUEShf+PBCGW2KaXwcIt3Yk+e3pkKwWKb9GSyM9WQVE+ep2jzmHdGsHzu4wgcZy5fN9FBdVzjpBQsYlpfpgLA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"undici-types": "~7.16.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/sax": {
|
||||||
|
"version": "1.2.7",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz",
|
||||||
|
"integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@types/unist": {
|
"node_modules/@types/unist": {
|
||||||
"version": "3.0.3",
|
"version": "3.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
||||||
@@ -2936,6 +2966,12 @@
|
|||||||
"url": "https://github.com/sponsors/jonschlinkert"
|
"url": "https://github.com/sponsors/jonschlinkert"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/arg": {
|
||||||
|
"version": "5.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
|
||||||
|
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/argparse": {
|
"node_modules/argparse": {
|
||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
||||||
@@ -6982,6 +7018,25 @@
|
|||||||
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
|
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/sitemap": {
|
||||||
|
"version": "9.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/sitemap/-/sitemap-9.0.1.tgz",
|
||||||
|
"integrity": "sha512-S6hzjGJSG3d6if0YoF5kTyeRJvia6FSTBroE5fQ0bu1QNxyJqhhinfUsXi9fH3MgtXODWvwo2BDyQSnhPQ88uQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "^24.9.2",
|
||||||
|
"@types/sax": "^1.2.1",
|
||||||
|
"arg": "^5.0.0",
|
||||||
|
"sax": "^1.4.1"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"sitemap": "dist/esm/cli.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.5",
|
||||||
|
"npm": ">=10.8.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/slash": {
|
"node_modules/slash": {
|
||||||
"version": "5.1.0",
|
"version": "5.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
|
||||||
@@ -7040,6 +7095,12 @@
|
|||||||
"node": ">= 0.8"
|
"node": ">= 0.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/stream-replace-string": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/stream-replace-string/-/stream-replace-string-2.0.0.tgz",
|
||||||
|
"integrity": "sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/stringify-entities": {
|
"node_modules/stringify-entities": {
|
||||||
"version": "4.0.4",
|
"version": "4.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
|
||||||
@@ -7222,6 +7283,12 @@
|
|||||||
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
|
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/undici-types": {
|
||||||
|
"version": "7.16.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
|
||||||
|
"integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/unicorn-magic": {
|
"node_modules/unicorn-magic": {
|
||||||
"version": "0.4.0",
|
"version": "0.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.4.0.tgz",
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^10.1.0",
|
"@astrojs/node": "^10.1.0",
|
||||||
|
"@astrojs/sitemap": "^3.7.2",
|
||||||
"@astrojs/vue": "^6.0.1",
|
"@astrojs/vue": "^6.0.1",
|
||||||
"@fontsource-variable/roboto-condensed": "^5.2.8",
|
"@fontsource-variable/roboto-condensed": "^5.2.8",
|
||||||
"@tailwindcss/vite": "^4.2.4",
|
"@tailwindcss/vite": "^4.2.4",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "1.1",
|
"version": "1.1",
|
||||||
"generatedAt": "2026-05-11T18:07:36.883Z",
|
"generatedAt": "2026-05-12T22:53:33.094Z",
|
||||||
"nodes": [
|
"nodes": [
|
||||||
{
|
{
|
||||||
"id": "contrat-social-medecine-corps-social",
|
"id": "contrat-social-medecine-corps-social",
|
||||||
|
|||||||
46
public/llms.txt
Normal file
46
public/llms.txt
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
# trans-former.fr
|
||||||
|
|
||||||
|
> Page-cerveau de Jules NENY. Architecture, ecologie, politique : un commun a
|
||||||
|
> construire ensemble. Manifeste et infrastructure vivante.
|
||||||
|
|
||||||
|
## A propos
|
||||||
|
|
||||||
|
Jules NENY est architecte, ecrivain, penseur politique. Il porte le projet AEP
|
||||||
|
(Agences d'Ecologie Politique) - reseau de structures locales pour articuler
|
||||||
|
ecologie, social et politique au niveau du territoire.
|
||||||
|
|
||||||
|
Ce site est l'epicentre de son ecosysteme : manifeste, journal cross-platform,
|
||||||
|
carte AEP des bifurcations, mindmap des thematiques de la pensee AEP.
|
||||||
|
|
||||||
|
## Sections
|
||||||
|
|
||||||
|
- / : page-cerveau (hub : journal + mindmap + Insta)
|
||||||
|
- /manifeste : manifeste fondateur (V1)
|
||||||
|
- /manifeste/commander : pre-inscription version imprimee
|
||||||
|
- /a-propos : parcours et intention
|
||||||
|
- /mentions-legales : mentions legales
|
||||||
|
|
||||||
|
## Ecosysteme
|
||||||
|
|
||||||
|
- aep.trans-former.fr : cartes AEP (cartobifurcation + trouver du taf)
|
||||||
|
- manifeste.trans-former.fr : ancien blog (archives 2024-2026)
|
||||||
|
- automate.trans-former.fr : workflows n8n (journal cross-platform)
|
||||||
|
- podcast.trans-former.fr : podcast Castopod
|
||||||
|
- calculs.trans-former.fr : simulateurs autonomie energetique
|
||||||
|
|
||||||
|
## Reseaux
|
||||||
|
|
||||||
|
- Substack : julesneny.substack.com (Architecture d'ecologie politique)
|
||||||
|
- Instagram @aep.politique : carousels manifeste
|
||||||
|
- Instagram @julesneny : peinture / poesie / Corse
|
||||||
|
- LinkedIn : journal pro / building public
|
||||||
|
- Gitea : git.trans-former.fr/jules (code open source)
|
||||||
|
|
||||||
|
## Politique d'usage
|
||||||
|
|
||||||
|
Le contenu du site est explicitement ouvert a l'indexation et a la citation
|
||||||
|
par les LLMs (GPTBot, ClaudeBot, Google-Extended, Applebot-Extended, PerplexityBot).
|
||||||
|
|
||||||
|
L'auteur souhaite que la pensee AEP soit largement diffusee.
|
||||||
|
|
||||||
|
Pour citer ce site : "Jules NENY, trans-former.fr, [date d'acces]"
|
||||||
19
public/robots.txt
Normal file
19
public/robots.txt
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
User-agent: *
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
User-agent: GPTBot
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
User-agent: ClaudeBot
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
User-agent: Google-Extended
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
User-agent: Applebot-Extended
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
User-agent: PerplexityBot
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
Sitemap: https://trans-former.fr/sitemap-index.xml
|
||||||
@@ -3,6 +3,7 @@
|
|||||||
// MILIEU : preview article (V1.2-P) - inseree au clic journal-item-click.
|
// MILIEU : preview article (V1.2-P) - inseree au clic journal-item-click.
|
||||||
// BAS : iframe carte AEP (toujours visible).
|
// BAS : iframe carte AEP (toujours visible).
|
||||||
// V1.3-D : ChatbotV2 retire du DOM (backlog V2). Pour reactivation -> reintroduire le tab + panel.
|
// V1.3-D : ChatbotV2 retire du DOM (backlog V2). Pour reactivation -> reintroduire le tab + panel.
|
||||||
|
// V1.4-C : cadre Carte O + bouton toggle desktop + drag fix (window listeners) + preview hydration (client:load) + transitions.
|
||||||
import CarteOWrapper from '../vue/CarteOWrapper.vue';
|
import CarteOWrapper from '../vue/CarteOWrapper.vue';
|
||||||
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
import EmbedDynamique from '../vue/EmbedDynamique.vue';
|
||||||
import PreviewArticle from '../vue/PreviewArticle.vue';
|
import PreviewArticle from '../vue/PreviewArticle.vue';
|
||||||
@@ -19,11 +20,13 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
data-preview-open="false"
|
data-preview-open="false"
|
||||||
style="height: 100%; overflow-y: hidden;"
|
style="height: 100%; overflow-y: hidden;"
|
||||||
>
|
>
|
||||||
<!-- HAUT (default flex-1 base 33%) : V1.3-D bandeau "Sommaire editorial" + legende + Carte O plein espace -->
|
<!-- HAUT (default flex-1 base 33%) : V1.3-D bandeau "Sommaire editorial" + legende + Carte O plein espace
|
||||||
|
V1.4-C1 : cadre 1px renforce (border-neutral-300) + transition height pour toggle collapse desktop -->
|
||||||
<section
|
<section
|
||||||
id="col-centre-haut"
|
id="col-centre-haut"
|
||||||
class="border border-neutral-200 rounded flex flex-col overflow-hidden bg-white"
|
class="rounded flex flex-col overflow-hidden bg-white"
|
||||||
style="min-height: 0; flex: 1 1 33%;"
|
style="min-height: 0; flex: 1 1 33%; border: 1px solid #CBD5E1; border-radius: 6px; transition: flex-basis 0.3s ease, min-height 0.3s ease;"
|
||||||
|
data-collapsed="false"
|
||||||
>
|
>
|
||||||
<!-- V1.3-D : bandeau header (titre gauche + legende droite) -->
|
<!-- V1.3-D : bandeau header (titre gauche + legende droite) -->
|
||||||
<header
|
<header
|
||||||
@@ -33,32 +36,45 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
<span class="text-xs truncate" style="color: #475569;">
|
<span class="text-xs truncate" style="color: #475569;">
|
||||||
Sommaire éditorial d'architecture d'écologie politique
|
Sommaire éditorial d'architecture d'écologie politique
|
||||||
</span>
|
</span>
|
||||||
<ul class="flex items-center gap-3 shrink-0 text-xs" style="color: #475569;" aria-label="Légende">
|
<div class="flex items-center gap-3 shrink-0">
|
||||||
<li class="flex items-center gap-1.5">
|
<ul class="flex items-center gap-3 shrink-0 text-xs" style="color: #475569;" aria-label="Légende">
|
||||||
<span
|
<li class="flex items-center gap-1.5">
|
||||||
aria-hidden="true"
|
<span
|
||||||
style="width: 8px; height: 8px; border-radius: 999px; background: #0F172A; display: inline-block;"
|
aria-hidden="true"
|
||||||
></span>
|
style="width: 8px; height: 8px; border-radius: 999px; background: #0F172A; display: inline-block;"
|
||||||
<span>publié</span>
|
></span>
|
||||||
</li>
|
<span>publié</span>
|
||||||
<li class="flex items-center gap-1.5">
|
</li>
|
||||||
<span
|
<li class="flex items-center gap-1.5">
|
||||||
aria-hidden="true"
|
<span
|
||||||
style="width: 8px; height: 8px; border-radius: 999px; background: transparent; border: 1px solid #0F172A; display: inline-block;"
|
aria-hidden="true"
|
||||||
></span>
|
style="width: 8px; height: 8px; border-radius: 999px; background: transparent; border: 1px solid #0F172A; display: inline-block;"
|
||||||
<span>à venir</span>
|
></span>
|
||||||
</li>
|
<span>à venir</span>
|
||||||
<li class="flex items-center gap-1.5">
|
</li>
|
||||||
<span
|
<li class="flex items-center gap-1.5">
|
||||||
aria-hidden="true"
|
<span
|
||||||
style="width: 8px; height: 8px; border-radius: 999px; background: #B45309; display: inline-block;"
|
aria-hidden="true"
|
||||||
></span>
|
style="width: 8px; height: 8px; border-radius: 999px; background: #B45309; display: inline-block;"
|
||||||
<span>projet</span>
|
></span>
|
||||||
</li>
|
<span>projet</span>
|
||||||
</ul>
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- V1.4-C2 : bouton toggle Carte O desktop (replier/deployer la zone HAUT) -->
|
||||||
|
<button
|
||||||
|
id="col-centre-haut-toggle-desktop"
|
||||||
|
type="button"
|
||||||
|
aria-label="Replier la Carte O"
|
||||||
|
class="hidden md:inline-flex items-center justify-center w-5 h-5 text-neutral-500 hover:text-neutral-900 cursor-pointer transition-colors"
|
||||||
|
style="font-size: 10px; line-height: 1;"
|
||||||
|
title="Replier la Carte O"
|
||||||
|
>
|
||||||
|
<span id="col-centre-haut-toggle-icon">▼</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="flex-1 overflow-hidden relative">
|
<div id="col-centre-haut-body" class="flex-1 overflow-hidden relative" style="transition: opacity 0.25s ease;">
|
||||||
<div id="panel-mindmap" class="absolute inset-0">
|
<div id="panel-mindmap" class="absolute inset-0">
|
||||||
<CarteOWrapper client:visible />
|
<CarteOWrapper client:visible />
|
||||||
</div>
|
</div>
|
||||||
@@ -86,16 +102,23 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
|
|
||||||
<!-- MILIEU (V1.2-P) : preview article inseree entre Carte O et iframe AEP.
|
<!-- MILIEU (V1.2-P) : preview article inseree entre Carte O et iframe AEP.
|
||||||
Pas de border ici - PreviewArticle.vue gere son propre conteneur.
|
Pas de border ici - PreviewArticle.vue gere son propre conteneur.
|
||||||
shrink-0 pour preserver sa taille auto, sinon flex pourrait l'ecraser. -->
|
shrink-0 pour preserver sa taille auto, sinon flex pourrait l'ecraser.
|
||||||
<div id="col-centre-preview-slot" class="shrink-0" style="display: contents;">
|
V1.4-E1 : client:load (vs client:visible) pour garantir hydration immediate des listeners
|
||||||
<PreviewArticle client:visible />
|
'preview-open' / 'journal-item-click' (le v-if rendait l'observer aveugle).
|
||||||
|
V1.4-bis FIX 3 : le wrapper en display:contents masquait l'astro-island au flex layout.
|
||||||
|
On passe en flex container explicite (column) + l'astro-island prend display:block.
|
||||||
|
Quand mode=null, PreviewArticle renvoie rien → le slot ne prend pas de hauteur.
|
||||||
|
Quand mode=manifeste/article, le slot grandit pour contenir la preview. -->
|
||||||
|
<div id="col-centre-preview-slot" class="shrink-0 flex flex-col">
|
||||||
|
<PreviewArticle client:load />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- BAS (default flex-1 base 67%) : iframe carte AEP toujours visible -->
|
<!-- BAS (default flex-1 base 67%) : iframe carte AEP toujours visible
|
||||||
|
V1.4-E2 : transition flex-basis 0.3s ease (smooth quand preview ouvre/ferme) -->
|
||||||
<section
|
<section
|
||||||
id="col-centre-bas"
|
id="col-centre-bas"
|
||||||
class="border border-neutral-200 rounded overflow-hidden bg-white"
|
class="border border-neutral-200 rounded overflow-hidden bg-white"
|
||||||
style="min-height: 0; flex: 1 1 67%;"
|
style="min-height: 0; flex: 1 1 67%; transition: flex-basis 0.3s ease;"
|
||||||
>
|
>
|
||||||
<div class="h-full min-h-[60vh] md:min-h-[400px]">
|
<div class="h-full min-h-[60vh] md:min-h-[400px]">
|
||||||
<EmbedDynamique client:visible />
|
<EmbedDynamique client:visible />
|
||||||
@@ -103,12 +126,45 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
/* V1.4-bis FIX 3 : force l'astro-island a se comporter comme block dans le slot preview,
|
||||||
|
sinon le default inline empeche le contenu Vue (border + bg) de se rendre correctement
|
||||||
|
dans le flex column de la col centre. */
|
||||||
|
#col-centre-preview-slot > astro-island {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
/* V1.4-bis FIX 4 : scrollbar visible sur la col centre quand preview ouverte
|
||||||
|
(overflow:auto au lieu de natif fin qui se cache). Style WebKit + Firefox. */
|
||||||
|
#col-centre-grid[data-preview-open="true"] {
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: #94A3B8 #FAFAF7;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar-track {
|
||||||
|
background: #FAFAF7;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar-thumb {
|
||||||
|
background: #94A3B8;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 2px solid #FAFAF7;
|
||||||
|
}
|
||||||
|
#col-centre-grid[data-preview-open="true"]::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #64748B;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// Poignee repli zone HAUT (mobile only)
|
// Poignee repli zone HAUT (mobile only) + toggle desktop V1.4-C2
|
||||||
const grid = document.getElementById('col-centre-grid');
|
const grid = document.getElementById('col-centre-grid');
|
||||||
const haut = document.getElementById('col-centre-haut');
|
const haut = document.getElementById('col-centre-haut');
|
||||||
const bas = document.getElementById('col-centre-bas');
|
const bas = document.getElementById('col-centre-bas');
|
||||||
const poignee = document.getElementById('col-centre-poignee');
|
const poignee = document.getElementById('col-centre-poignee');
|
||||||
|
const toggleDesktop = document.getElementById('col-centre-haut-toggle-desktop');
|
||||||
|
const toggleDesktopIcon = document.getElementById('col-centre-haut-toggle-icon');
|
||||||
|
const hautBody = document.getElementById('col-centre-haut-body');
|
||||||
|
|
||||||
// Sauvegarde flex-basis defaults pour restaure apres fermeture preview
|
// Sauvegarde flex-basis defaults pour restaure apres fermeture preview
|
||||||
let defaultHautFlex = '1 1 33%';
|
let defaultHautFlex = '1 1 33%';
|
||||||
@@ -140,6 +196,44 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
applyRepliState(next);
|
applyRepliState(next);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// V1.4-C2 : bouton toggle Carte O desktop (replier/deployer la zone HAUT).
|
||||||
|
// Etat distinct de l'etat mobile (clef differente) pour permettre persistance par device.
|
||||||
|
// Replie : flex 0 0 36px (juste le bandeau header reste visible), body masque.
|
||||||
|
// Deploye : restaure flex-basis precedent (default 33% ou drag-resize sauvegarde).
|
||||||
|
const applyDesktopCollapseState = (collapsed: boolean) => {
|
||||||
|
if (!haut) return;
|
||||||
|
if (grid && grid.dataset.previewOpen === 'true') return; // skip si preview ouverte (preview pilote la mise en page)
|
||||||
|
if (collapsed) {
|
||||||
|
haut.style.flex = '0 0 36px';
|
||||||
|
haut.dataset.collapsed = 'true';
|
||||||
|
if (hautBody) hautBody.style.opacity = '0';
|
||||||
|
if (toggleDesktopIcon) toggleDesktopIcon.textContent = '▶';
|
||||||
|
toggleDesktop?.setAttribute('aria-label', 'Deployer la Carte O');
|
||||||
|
toggleDesktop?.setAttribute('title', 'Deployer la Carte O');
|
||||||
|
} else {
|
||||||
|
// Restaure flex-basis precedent (drag-resize ou default)
|
||||||
|
haut.style.flex = defaultHautFlex;
|
||||||
|
haut.dataset.collapsed = 'false';
|
||||||
|
if (hautBody) hautBody.style.opacity = '1';
|
||||||
|
if (toggleDesktopIcon) toggleDesktopIcon.textContent = '▼';
|
||||||
|
toggleDesktop?.setAttribute('aria-label', 'Replier la Carte O');
|
||||||
|
toggleDesktop?.setAttribute('title', 'Replier la Carte O');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const savedDesktopCollapsed = sessionStorage.getItem('tf-carte-o-collapsed') === 'true';
|
||||||
|
if (savedDesktopCollapsed) {
|
||||||
|
// applique apres que defaultHautFlex soit defini (deja le cas)
|
||||||
|
applyDesktopCollapseState(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleDesktop?.addEventListener('click', () => {
|
||||||
|
const current = sessionStorage.getItem('tf-carte-o-collapsed') === 'true';
|
||||||
|
const next = !current;
|
||||||
|
sessionStorage.setItem('tf-carte-o-collapsed', String(next));
|
||||||
|
applyDesktopCollapseState(next);
|
||||||
|
});
|
||||||
|
|
||||||
// V1.2-P : preview ouverte = container scrollable, Carte O et iframe AEP figes en vh.
|
// V1.2-P : preview ouverte = container scrollable, Carte O et iframe AEP figes en vh.
|
||||||
const applyPreviewState = (open: boolean) => {
|
const applyPreviewState = (open: boolean) => {
|
||||||
if (!grid || !haut || !bas) return;
|
if (!grid || !haut || !bas) return;
|
||||||
@@ -196,19 +290,37 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
let startHautH = 0;
|
let startHautH = 0;
|
||||||
let containerH = 0;
|
let containerH = 0;
|
||||||
|
|
||||||
|
// V1.4-bis FIX 1 : overlay full-screen pendant drag.
|
||||||
|
// ROOT CAUSE : l'iframe AEP (EmbedDynamique) capture les pointer events des qu'on
|
||||||
|
// depasse sa zone — mouseup tombe dans l'iframe et n'arrive jamais au parent window.
|
||||||
|
// SOLUTION : creer un <div fixed inset-0 z-9998> AU MOMENT DU mousedown, qui
|
||||||
|
// intercepte tous les events (mousemove + mouseup) pendant le drag. Au mouseup,
|
||||||
|
// on retire l'overlay. Garantie : peu importe ce qu'il y a en dessous (iframe,
|
||||||
|
// Vue island, browser chrome), l'overlay capte la fin du drag.
|
||||||
|
const overlayDuringDrag = document.createElement('div');
|
||||||
|
overlayDuringDrag.style.cssText = 'position:fixed;inset:0;z-index:9998;cursor:row-resize;display:none;background:transparent;';
|
||||||
|
overlayDuringDrag.setAttribute('aria-hidden', 'true');
|
||||||
|
document.body.appendChild(overlayDuringDrag);
|
||||||
|
|
||||||
dragHandle.addEventListener('mousedown', (e: MouseEvent) => {
|
dragHandle.addEventListener('mousedown', (e: MouseEvent) => {
|
||||||
if (grid.dataset.previewOpen === 'true') return;
|
if (grid.dataset.previewOpen === 'true') return;
|
||||||
if (sessionStorage.getItem('tf-haut-replie') === 'true') return;
|
if (sessionStorage.getItem('tf-haut-replie') === 'true') return;
|
||||||
|
if (sessionStorage.getItem('tf-carte-o-collapsed') === 'true') return;
|
||||||
isDragging = true;
|
isDragging = true;
|
||||||
startY = e.clientY;
|
startY = e.clientY;
|
||||||
startHautH = haut.getBoundingClientRect().height;
|
startHautH = haut.getBoundingClientRect().height;
|
||||||
containerH = grid.getBoundingClientRect().height;
|
containerH = grid.getBoundingClientRect().height;
|
||||||
document.body.style.cursor = 'row-resize';
|
document.body.style.cursor = 'row-resize';
|
||||||
document.body.style.userSelect = 'none';
|
document.body.style.userSelect = 'none';
|
||||||
|
// Suspend transitions pendant drag pour responsivite
|
||||||
|
haut.style.transition = 'none';
|
||||||
|
bas.style.transition = 'none';
|
||||||
|
// Active l'overlay : capture tous les events tant qu'on draggue
|
||||||
|
overlayDuringDrag.style.display = 'block';
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
document.addEventListener('mousemove', (e: MouseEvent) => {
|
const onMouseMove = (e: MouseEvent) => {
|
||||||
if (!isDragging) return;
|
if (!isDragging) return;
|
||||||
const delta = e.clientY - startY;
|
const delta = e.clientY - startY;
|
||||||
const newHautH = Math.min(Math.max(startHautH + delta, containerH * 0.2), containerH * 0.8);
|
const newHautH = Math.min(Math.max(startHautH + delta, containerH * 0.2), containerH * 0.8);
|
||||||
@@ -216,24 +328,42 @@ import PreviewArticle from '../vue/PreviewArticle.vue';
|
|||||||
const basPct = 100 - hautPct;
|
const basPct = 100 - hautPct;
|
||||||
haut.style.flex = `1 1 ${hautPct.toFixed(1)}%`;
|
haut.style.flex = `1 1 ${hautPct.toFixed(1)}%`;
|
||||||
bas.style.flex = `1 1 ${basPct.toFixed(1)}%`;
|
bas.style.flex = `1 1 ${basPct.toFixed(1)}%`;
|
||||||
});
|
};
|
||||||
|
|
||||||
document.addEventListener('mouseup', () => {
|
const stopDrag = () => {
|
||||||
if (isDragging) {
|
if (!isDragging) return;
|
||||||
isDragging = false;
|
isDragging = false;
|
||||||
document.body.style.cursor = '';
|
// Retire l'overlay (rend le reste de la page de nouveau interactif)
|
||||||
document.body.style.userSelect = '';
|
overlayDuringDrag.style.display = 'none';
|
||||||
const hf = haut.style.flex;
|
document.body.style.cursor = '';
|
||||||
const bf = bas.style.flex;
|
document.body.style.userSelect = '';
|
||||||
if (hf) {
|
// Restaure transitions
|
||||||
sessionStorage.setItem('tf-centre-haut-flex', hf);
|
haut.style.transition = 'flex-basis 0.3s ease, min-height 0.3s ease';
|
||||||
defaultHautFlex = hf;
|
bas.style.transition = 'flex-basis 0.3s ease';
|
||||||
}
|
const hf = haut.style.flex;
|
||||||
if (bf) {
|
const bf = bas.style.flex;
|
||||||
sessionStorage.setItem('tf-centre-bas-flex', bf);
|
if (hf) {
|
||||||
defaultBasFlex = bf;
|
sessionStorage.setItem('tf-centre-haut-flex', hf);
|
||||||
}
|
defaultHautFlex = hf;
|
||||||
}
|
}
|
||||||
|
if (bf) {
|
||||||
|
sessionStorage.setItem('tf-centre-bas-flex', bf);
|
||||||
|
defaultBasFlex = bf;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// V1.4-bis : ecoute mousemove + mouseup SUR L'OVERLAY (le plus haut z-index garantit capture).
|
||||||
|
overlayDuringDrag.addEventListener('mousemove', onMouseMove);
|
||||||
|
overlayDuringDrag.addEventListener('mouseup', stopDrag);
|
||||||
|
overlayDuringDrag.addEventListener('pointerup', stopDrag);
|
||||||
|
overlayDuringDrag.addEventListener('mouseleave', stopDrag);
|
||||||
|
// Backup window listeners (pour le cas tres rare ou l'overlay n'aurait pas pris le focus)
|
||||||
|
window.addEventListener('mouseup', stopDrag);
|
||||||
|
window.addEventListener('pointerup', stopDrag);
|
||||||
|
window.addEventListener('blur', stopDrag);
|
||||||
|
// Si la souris revient dans la fenetre sans bouton enfonce, on stoppe
|
||||||
|
window.addEventListener('mouseenter', (e: MouseEvent) => {
|
||||||
|
if (isDragging && e.buttons === 0) stopDrag();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Restaurer position depuis sessionStorage
|
// Restaurer position depuis sessionStorage
|
||||||
|
|||||||
@@ -1,23 +1,21 @@
|
|||||||
---
|
---
|
||||||
import InstaFeed from '../vue/InstaFeed.vue';
|
import InstaFeed from '../vue/InstaFeed.vue';
|
||||||
|
|
||||||
// Feed IDs Behold a remplir apres inscription Behold (voir docs/BEHOLD-SETUP.md)
|
// V1.5-E : Behold remplacé par RSSHub self-host. InstaFeed lit désormais
|
||||||
const FEED_AEP = import.meta.env.PUBLIC_BEHOLD_AEP || 'PLACEHOLDER_AEP';
|
// le journal unifié (PUBLIC_JOURNAL_URL → data.trans-former.fr/journal.json)
|
||||||
const FEED_JULESNENY = import.meta.env.PUBLIC_BEHOLD_JULESNENY || 'PLACEHOLDER_JULESNENY';
|
// agrégé par n8n depuis rss.trans-former.fr. Plus de feedId Behold à passer.
|
||||||
---
|
---
|
||||||
<div class="h-full overflow-y-auto">
|
<div class="h-full overflow-y-auto">
|
||||||
<InstaFeed
|
<InstaFeed
|
||||||
client:visible
|
client:visible
|
||||||
feedId={FEED_AEP}
|
account="aep.politique"
|
||||||
account="@aep.politique"
|
|
||||||
accountUrl="https://www.instagram.com/aep.politique/"
|
accountUrl="https://www.instagram.com/aep.politique/"
|
||||||
fallbackBio="Carrousels manifeste AEP ; pensee politique eco-architecture"
|
fallbackBio="Carrousels manifeste AEP ; pensee politique eco-architecture"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<InstaFeed
|
<InstaFeed
|
||||||
client:visible
|
client:visible
|
||||||
feedId={FEED_JULESNENY}
|
account="julesneny"
|
||||||
account="@julesneny"
|
|
||||||
accountUrl="https://www.instagram.com/julesneny/"
|
accountUrl="https://www.instagram.com/julesneny/"
|
||||||
fallbackBio="Peinture, poesie, Corse ; archives visuelles personnelles"
|
fallbackBio="Peinture, poesie, Corse ; archives visuelles personnelles"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,11 +1,17 @@
|
|||||||
---
|
---
|
||||||
import JournalList from '../vue/JournalList.vue';
|
import JournalList from '../vue/JournalList.vue';
|
||||||
|
|
||||||
|
// V1.4-bis FIX 5 : couleurs pills actives attenuees (60% color + 40% papier).
|
||||||
|
// Active = fill couleur ATTENUEE (muted) + texte encre #0F172A (contraste WCAG ≥4.5:1).
|
||||||
|
// Inactive = transparent + border + texte couleur 100% (inchange).
|
||||||
|
// Mix 60/40 : moins agressif que 100% mais reste lisible (vs 30/70 pastels V1.3 trop dilues).
|
||||||
const categories = [
|
const categories = [
|
||||||
{
|
{
|
||||||
id: 'politique',
|
id: 'politique',
|
||||||
label: 'Politique',
|
label: 'Politique',
|
||||||
color: '#B5443A',
|
color: '#B5443A',
|
||||||
|
muted: '#C8867E',
|
||||||
|
pastel: '#E5C3BE',
|
||||||
hashtags: ['#politique', '#aep-politique'],
|
hashtags: ['#politique', '#aep-politique'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
{ id: 'instagram', label: 'Court', url: 'https://www.instagram.com/aep.politique/' },
|
{ id: 'instagram', label: 'Court', url: 'https://www.instagram.com/aep.politique/' },
|
||||||
@@ -18,6 +24,8 @@ const categories = [
|
|||||||
id: 'art',
|
id: 'art',
|
||||||
label: 'Art',
|
label: 'Art',
|
||||||
color: '#5B6B3A',
|
color: '#5B6B3A',
|
||||||
|
muted: '#8F9A78',
|
||||||
|
pastel: '#CACFBE',
|
||||||
hashtags: ['#peinture', '#art'],
|
hashtags: ['#peinture', '#art'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
{ id: 'instagram', label: '@julesneny', url: 'https://www.instagram.com/julesneny/' },
|
{ id: 'instagram', label: '@julesneny', url: 'https://www.instagram.com/julesneny/' },
|
||||||
@@ -28,6 +36,8 @@ const categories = [
|
|||||||
id: 'outils',
|
id: 'outils',
|
||||||
label: 'Outils',
|
label: 'Outils',
|
||||||
color: '#475569',
|
color: '#475569',
|
||||||
|
muted: '#7B848E',
|
||||||
|
pastel: '#C4C8CC',
|
||||||
hashtags: ['#stack', '#building-public'],
|
hashtags: ['#stack', '#building-public'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
{ id: 'gitea', label: 'Gitea', url: 'https://git.trans-former.fr/jules' },
|
{ id: 'gitea', label: 'Gitea', url: 'https://git.trans-former.fr/jules' },
|
||||||
@@ -38,6 +48,8 @@ const categories = [
|
|||||||
id: 'pro',
|
id: 'pro',
|
||||||
label: 'Pro',
|
label: 'Pro',
|
||||||
color: '#0F172A',
|
color: '#0F172A',
|
||||||
|
muted: '#566375',
|
||||||
|
pastel: '#C4C8CC',
|
||||||
hashtags: ['#building-public', '#pro'],
|
hashtags: ['#building-public', '#pro'],
|
||||||
plateformes: [
|
plateformes: [
|
||||||
{ id: 'linkedin', label: 'LinkedIn', url: 'https://www.linkedin.com/in/jules-neny/' },
|
{ id: 'linkedin', label: 'LinkedIn', url: 'https://www.linkedin.com/in/jules-neny/' },
|
||||||
@@ -62,16 +74,18 @@ const categories = [
|
|||||||
data-category-id={cat.id}
|
data-category-id={cat.id}
|
||||||
data-hashtags={cat.hashtags.join(',')}
|
data-hashtags={cat.hashtags.join(',')}
|
||||||
data-color={cat.color}
|
data-color={cat.color}
|
||||||
|
data-muted={cat.muted}
|
||||||
|
data-pastel={cat.pastel}
|
||||||
data-has-selector={cat.hasSelector ? 'true' : 'false'}
|
data-has-selector={cat.hasSelector ? 'true' : 'false'}
|
||||||
class="category-badge"
|
class="category-badge"
|
||||||
style={`background:${cat.color};color:#fff;font-family:'Courier New',Courier,monospace;font-size:13px;padding:3px 10px;border-radius:4px;cursor:pointer;border:1px solid ${cat.color};`}
|
style={`background:${cat.muted};color:#0F172A;font-family:'Courier New',Courier,monospace;font-size:13px;padding:3px 10px;border-radius:4px;cursor:pointer;border:1px solid ${cat.muted};`}
|
||||||
>
|
>
|
||||||
{cat.label}
|
{cat.label}
|
||||||
</button>
|
</button>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Selecteur plateforme Politique -->
|
<!-- Selecteur plateforme Politique (V1.4-B : transparent en fill inactive) -->
|
||||||
<div id="politique-selector" class="mt-2 hidden flex gap-2">
|
<div id="politique-selector" class="mt-2 hidden flex gap-2">
|
||||||
{categories[0].plateformes.map((p) => (
|
{categories[0].plateformes.map((p) => (
|
||||||
<button
|
<button
|
||||||
@@ -203,12 +217,17 @@ const categories = [
|
|||||||
window.dispatchEvent(new CustomEvent('platform-filter-change', { detail: { platform } }));
|
window.dispatchEvent(new CustomEvent('platform-filter-change', { detail: { platform } }));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// V1.4-bis FIX 5 : pill active en couleur ATTENUEE (data-muted) + texte encre #0F172A.
|
||||||
|
// Inactive : transparent + texte couleur 100% + border couleur 100% (inchange).
|
||||||
|
// Pourquoi encre #0F172A au lieu de blanc : sur fond attenue (#C8867E etc.), le ratio
|
||||||
|
// contraste blanc tombe ~3.5:1 (limite). Encre #0F172A donne ratio ≥6:1 sur tous les muted.
|
||||||
const updateBadgeStyle = (btn: HTMLElement, active: boolean) => {
|
const updateBadgeStyle = (btn: HTMLElement, active: boolean) => {
|
||||||
const color = btn.dataset.color || '#000';
|
const color = btn.dataset.color || '#000';
|
||||||
|
const muted = btn.dataset.muted || color;
|
||||||
if (active) {
|
if (active) {
|
||||||
btn.style.background = color;
|
btn.style.background = muted;
|
||||||
btn.style.color = '#fff';
|
btn.style.color = '#0F172A';
|
||||||
btn.style.border = `1px solid ${color}`;
|
btn.style.border = `1px solid ${muted}`;
|
||||||
} else {
|
} else {
|
||||||
btn.style.background = 'transparent';
|
btn.style.background = 'transparent';
|
||||||
btn.style.color = color;
|
btn.style.color = color;
|
||||||
@@ -228,14 +247,17 @@ const categories = [
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// V1.4-bis FIX 5 : sub-pills Politique, active en brique ATTENUEE #C8867E + encre.
|
||||||
|
// Active (ou aucun filtre) = fill #C8867E + texte encre #0F172A.
|
||||||
|
// Inactive = transparent + texte brique 100% + border brique 100%.
|
||||||
const updatePillStyles = () => {
|
const updatePillStyles = () => {
|
||||||
const pills = document.querySelectorAll<HTMLElement>('.platform-pill');
|
const pills = document.querySelectorAll<HTMLElement>('.platform-pill');
|
||||||
const active = platformFilters['politique'];
|
const active = platformFilters['politique'];
|
||||||
pills.forEach((pill) => {
|
pills.forEach((pill) => {
|
||||||
const pid = pill.dataset.platformId;
|
const pid = pill.dataset.platformId;
|
||||||
if (!active || pid === active) {
|
if (!active || pid === active) {
|
||||||
pill.style.background = '#B5443A';
|
pill.style.background = '#C8867E';
|
||||||
pill.style.color = '#fff';
|
pill.style.color = '#0F172A';
|
||||||
} else {
|
} else {
|
||||||
pill.style.background = 'transparent';
|
pill.style.background = 'transparent';
|
||||||
pill.style.color = '#B5443A';
|
pill.style.color = '#B5443A';
|
||||||
|
|||||||
@@ -1,30 +1,32 @@
|
|||||||
---
|
---
|
||||||
// Footer.astro - V1.2-L : 1 ligne 3 zones (nav / subscribe / logos RS)
|
// Footer.astro - V1.4-F : 1 ligne 3 zones (nav / subscribe / logos RS).
|
||||||
// Style monochrome encre #0F172A palette terre V1.2
|
// Alignement vertical centre + padding-y reduit (py-2) pour profil plus fin.
|
||||||
|
// Subscribe input/button compact (py-1) cale sur baseline des autres elements.
|
||||||
---
|
---
|
||||||
<footer class="border-t border-neutral-200 px-6 py-4 bg-[#FAFAF7] text-[#0F172A]">
|
<footer class="border-t border-neutral-200 px-6 py-2 bg-[#FAFAF7] text-[#0F172A]">
|
||||||
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-3 md:gap-6">
|
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-2 md:gap-6">
|
||||||
|
|
||||||
<!-- ZONE GAUCHE : liens nav -->
|
<!-- ZONE GAUCHE : liens nav -->
|
||||||
<nav class="flex gap-4 text-xs justify-center md:justify-start">
|
<nav class="flex gap-4 text-xs items-center justify-center md:justify-start">
|
||||||
<a href="/manifeste" data-manifeste-link class="opacity-60 hover:opacity-100 transition-opacity">Manifeste</a>
|
<a href="/manifeste" data-manifeste-link class="opacity-60 hover:opacity-100 transition-opacity">Manifeste</a>
|
||||||
<a href="/a-propos" class="opacity-60 hover:opacity-100 transition-opacity">A propos</a>
|
<a href="/a-propos" class="opacity-60 hover:opacity-100 transition-opacity">A propos</a>
|
||||||
<a href="/mentions-legales" class="opacity-60 hover:opacity-100 transition-opacity">Mentions legales</a>
|
<a href="/mentions-legales" class="opacity-60 hover:opacity-100 transition-opacity">Mentions legales</a>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<!-- ZONE CENTRE : subscribe form compact (endpoint /api/subscribe V1.1-I) -->
|
<!-- ZONE CENTRE : subscribe form compact (endpoint /api/subscribe V1.1-I).
|
||||||
<div class="flex flex-col items-center gap-1">
|
V1.4-F : padding-y reduit (py-1) pour caler input sur la baseline des liens + logos. -->
|
||||||
|
<div class="flex flex-col items-center gap-0.5">
|
||||||
<form id="subscribe-form" class="flex gap-2 items-center">
|
<form id="subscribe-form" class="flex gap-2 items-center">
|
||||||
<input
|
<input
|
||||||
type="email"
|
type="email"
|
||||||
name="email"
|
name="email"
|
||||||
required
|
required
|
||||||
placeholder="ton@email.fr"
|
placeholder="ton@email.fr"
|
||||||
class="px-3 py-1.5 border border-neutral-300 rounded text-xs focus:outline-none focus:border-[#0F172A] bg-white"
|
class="px-3 py-1 border border-neutral-300 rounded text-xs focus:outline-none focus:border-[#0F172A] bg-white leading-tight"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
class="px-3 py-1.5 bg-[#0F172A] text-white rounded text-xs hover:bg-[#475569] transition-colors whitespace-nowrap"
|
class="px-3 py-1 bg-[#0F172A] text-white rounded text-xs hover:bg-[#475569] transition-colors whitespace-nowrap leading-tight"
|
||||||
>
|
>
|
||||||
s'abonner
|
s'abonner
|
||||||
</button>
|
</button>
|
||||||
@@ -33,17 +35,34 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- ZONE DROITE : logos RS cliquables (SVG inline, fill #0F172A 60%) -->
|
<!-- ZONE DROITE : logos RS cliquables (SVG inline, fill #0F172A 60%) -->
|
||||||
<div class="flex gap-3 items-center justify-center md:justify-end text-[#0F172A]">
|
<!-- V1.3-F : gap-4 mobile / gap-6 desktop pour espacer les logos. V1.4-F : items-center force baseline. -->
|
||||||
<!-- Instagram -->
|
<div class="flex gap-4 md:gap-6 items-center justify-center md:justify-end text-[#0F172A]">
|
||||||
|
<!-- V1.4-bis FIX 6 : Instagram x2 (AEP politique + Jules perso) avec aria-labels distincts.
|
||||||
|
V1.4-bis FIX 7 : SVG simplifie (camera carree avec coins arrondis, lentille, point flash) — rendu propre net. -->
|
||||||
<a
|
<a
|
||||||
href="https://www.instagram.com/aep.politique/"
|
href="https://www.instagram.com/aep.politique/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
aria-label="Instagram @aep.politique"
|
aria-label="Instagram @aep.politique"
|
||||||
|
title="@aep.politique"
|
||||||
class="opacity-60 hover:opacity-100 transition-opacity"
|
class="opacity-60 hover:opacity-100 transition-opacity"
|
||||||
>
|
>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
|
||||||
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 1.366.062 2.633.336 3.608 1.311.975.975 1.249 2.242 1.311 3.608.058 1.266.069 1.646.069 4.85s-.012 3.584-.07 4.85c-.062 1.366-.336 2.633-1.311 3.608-.975.975-2.242 1.249-3.608 1.311-1.266.058-1.646.07-4.85.07s-3.584-.012-4.85-.07c-1.366-.062-2.633-.336-3.608-1.311-.975-.975-1.249-2.242-1.311-3.608C2.175 15.647 2.163 15.267 2.163 12s.012-3.584.07-4.85c.062-1.366.336-2.633 1.311-3.608.975-.975 2.242-1.249 3.608-1.311 1.266-.058 1.646-.07 4.85-.07zm0 1.838c-3.15 0-3.522.012-4.766.069-1.024.047-1.58.218-1.95.362-.49.19-.84.418-1.207.786-.367.367-.595.717-.786 1.207-.144.37-.315.926-.362 1.95-.057 1.244-.069 1.616-.069 4.766s.012 3.522.069 4.766c.047 1.024.218 1.58.362 1.95.19.49.418.84.786 1.207.367.367.717.595 1.207.786.37.144.926.315 1.95.362 1.244.057 1.616.069 4.766.069s3.522-.012 4.766-.069c1.024-.047 1.58-.218 1.95-.362.49-.19.84-.418 1.207-.786.367-.367.595-.717.786-1.207.144-.37.315-.926.362-1.95.057-1.244.069-1.616.069-4.766s-.012-3.522-.069-4.766c-.047-1.024-.218-1.58-.362-1.95-.19-.49-.418-.84-.786-1.207-.367-.367-.717-.595-1.207-.786-.37-.144-.926-.315-1.95-.362C15.522 4.013 15.15 4.001 12 4.001zm0 3.135a4.864 4.864 0 110 9.728 4.864 4.864 0 010-9.728zm0 8.027a3.162 3.162 0 100-6.325 3.162 3.162 0 000 6.325zm6.187-8.249a1.137 1.137 0 11-2.275 0 1.137 1.137 0 012.275 0z"/>
|
<path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<!-- Instagram @julesneny (compte perso/art) -->
|
||||||
|
<a
|
||||||
|
href="https://www.instagram.com/julesneny/"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
aria-label="Instagram @julesneny"
|
||||||
|
title="@julesneny"
|
||||||
|
class="opacity-60 hover:opacity-100 transition-opacity"
|
||||||
|
>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
|
||||||
|
<path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/>
|
||||||
</svg>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|||||||
@@ -404,12 +404,14 @@ function render() {
|
|||||||
return -220
|
return -220
|
||||||
}))
|
}))
|
||||||
.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
||||||
.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.05))
|
// V1.4-C1 : rappel horizontal/vertical renforce (0.05 -> 0.08) + collide +14 (vs +12)
|
||||||
.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
|
// pour mieux contenir les nodes dans le cadre visible de la zone Carte O.
|
||||||
|
.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.08))
|
||||||
|
.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.08))
|
||||||
.force('collide', d3.forceCollide<SimNode>().radius(d => {
|
.force('collide', d3.forceCollide<SimNode>().radius(d => {
|
||||||
// V1.3-D : central traite comme zone large (rect 300x64 -> rayon equivalent 160)
|
// V1.3-D : central traite comme zone large (rect 300x64 -> rayon equivalent 160)
|
||||||
if (d.niveau === 0) return CENTRAL_COLLIDE_RADIUS
|
if (d.niveau === 0) return CENTRAL_COLLIDE_RADIUS
|
||||||
return getRadius(d) + 12
|
return getRadius(d) + 14
|
||||||
}))
|
}))
|
||||||
.alphaDecay(0.025)
|
.alphaDecay(0.025)
|
||||||
.velocityDecay(0.4)
|
.velocityDecay(0.4)
|
||||||
@@ -476,8 +478,9 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
if (simulation) {
|
if (simulation) {
|
||||||
simulation.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
simulation.force('center', d3.forceCenter(width.value / 2, height.value / 2))
|
||||||
simulation.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.05))
|
// V1.4-C1 : aligne avec la simulation initiale (strength 0.08)
|
||||||
simulation.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.05))
|
simulation.force('x', d3.forceX<SimNode>(width.value / 2).strength(0.08))
|
||||||
|
simulation.force('y', d3.forceY<SimNode>(height.value / 2).strength(0.08))
|
||||||
simulation.alpha(0.3).restart()
|
simulation.alpha(0.3).restart()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,46 +1,80 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
|
|
||||||
interface BeholdPost {
|
// V1.5-E : on consomme désormais le journal unifié agrégé par n8n
|
||||||
|
// (sources RSSHub self-host → data.trans-former.fr/journal.json),
|
||||||
|
// au lieu de l'API Behold directe (rate-limit, plafond 6 posts gratuit).
|
||||||
|
interface JournalItem {
|
||||||
|
id: string;
|
||||||
|
platform: string;
|
||||||
|
date: string;
|
||||||
|
titre: string;
|
||||||
|
extrait?: string;
|
||||||
|
url: string;
|
||||||
|
thumbnail: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface JournalPayload {
|
||||||
|
generatedAt: string;
|
||||||
|
items: JournalItem[];
|
||||||
|
}
|
||||||
|
|
||||||
|
interface InstaPost {
|
||||||
id: string;
|
id: string;
|
||||||
permalink: string;
|
permalink: string;
|
||||||
mediaUrl: string;
|
thumbnailUrl: string | null;
|
||||||
thumbnailUrl?: string;
|
caption: string;
|
||||||
caption?: string;
|
|
||||||
mediaType: 'IMAGE' | 'VIDEO' | 'CAROUSEL_ALBUM';
|
|
||||||
timestamp: string;
|
timestamp: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
feedId: string;
|
/** handle Instagram sans @ (ex: 'aep.politique', 'julesneny') — sert à filtrer le journal */
|
||||||
account: string;
|
account: string;
|
||||||
accountUrl: string;
|
accountUrl: string;
|
||||||
fallbackBio?: string;
|
fallbackBio?: string;
|
||||||
|
/** nombre max de posts affichés (défaut 6, parité avec ancien Behold) */
|
||||||
|
max?: number;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const posts = ref<BeholdPost[]>([]);
|
const posts = ref<InstaPost[]>([]);
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
const error = ref<string | null>(null);
|
const error = ref<string | null>(null);
|
||||||
|
|
||||||
const isPlaceholder = (id: string) => !id || id.startsWith('PLACEHOLDER_');
|
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 accountHandle = (props.account || '').replace(/^@/, '').toLowerCase();
|
||||||
|
const limit = props.max ?? 6;
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
if (isPlaceholder(props.feedId)) {
|
|
||||||
loading.value = false;
|
|
||||||
error.value = 'no-feed-id';
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
const controller = new AbortController();
|
const controller = new AbortController();
|
||||||
const timeoutId = setTimeout(() => controller.abort(), 5000);
|
const timeoutId = setTimeout(() => controller.abort(), 8000);
|
||||||
const res = await fetch(`https://feeds.behold.so/${props.feedId}`, {
|
const res = await fetch(JOURNAL_URL, {
|
||||||
signal: controller.signal,
|
signal: controller.signal,
|
||||||
|
cache: 'no-store',
|
||||||
});
|
});
|
||||||
clearTimeout(timeoutId);
|
clearTimeout(timeoutId);
|
||||||
if (!res.ok) throw new Error(`Behold returned ${res.status}`);
|
if (!res.ok) throw new Error(`Journal returned ${res.status}`);
|
||||||
const data = await res.json();
|
const data = (await res.json()) as JournalPayload;
|
||||||
const items: BeholdPost[] = Array.isArray(data) ? data : (data.posts ?? []);
|
const all = Array.isArray(data?.items) ? data.items : [];
|
||||||
posts.value = items.slice(0, 6);
|
posts.value = all
|
||||||
|
.filter(
|
||||||
|
(it) =>
|
||||||
|
it.platform === 'instagram' &&
|
||||||
|
typeof it.url === 'string' &&
|
||||||
|
it.url.toLowerCase().includes(`/${accountHandle}`),
|
||||||
|
)
|
||||||
|
.slice(0, limit)
|
||||||
|
.map((it) => ({
|
||||||
|
id: it.id,
|
||||||
|
permalink: it.url,
|
||||||
|
thumbnailUrl: it.thumbnail ?? null,
|
||||||
|
caption: it.titre || it.extrait || '',
|
||||||
|
timestamp: it.date,
|
||||||
|
}));
|
||||||
|
if (!posts.value.length) error.value = 'no-posts';
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
error.value = (e as Error).message || 'fetch-error';
|
error.value = (e as Error).message || 'fetch-error';
|
||||||
} finally {
|
} finally {
|
||||||
@@ -71,24 +105,28 @@ onMounted(async () => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div v-else-if="posts.length" class="grid grid-cols-2 gap-1 p-1">
|
||||||
v-else-if="posts.length"
|
|
||||||
class="grid grid-cols-2 gap-1 p-1"
|
|
||||||
>
|
|
||||||
<a
|
<a
|
||||||
v-for="post in posts"
|
v-for="post in posts"
|
||||||
:key="post.id"
|
:key="post.id"
|
||||||
:href="post.permalink"
|
:href="post.permalink"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener"
|
rel="noopener"
|
||||||
class="block aspect-square overflow-hidden group"
|
class="block aspect-square overflow-hidden group bg-neutral-100"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
:src="post.thumbnailUrl || post.mediaUrl"
|
v-if="post.thumbnailUrl"
|
||||||
|
:src="post.thumbnailUrl"
|
||||||
:alt="post.caption?.slice(0, 80) || account"
|
:alt="post.caption?.slice(0, 80) || account"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
class="w-full h-full object-cover group-hover:scale-105 transition-transform"
|
class="w-full h-full object-cover group-hover:scale-105 transition-transform"
|
||||||
/>
|
/>
|
||||||
|
<span
|
||||||
|
v-else
|
||||||
|
class="w-full h-full flex items-center justify-center text-[10px] text-neutral-400 p-2 text-center"
|
||||||
|
>
|
||||||
|
{{ post.caption?.slice(0, 60) || account }}
|
||||||
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -20,13 +20,8 @@
|
|||||||
<p class="mt-3 text-neutral-600 text-sm md:text-base leading-relaxed">
|
<p class="mt-3 text-neutral-600 text-sm md:text-base leading-relaxed">
|
||||||
Un commun vivant pour bifurquer ; ensemble, lentement, par accumulation de petits gestes situés.
|
Un commun vivant pour bifurquer ; ensemble, lentement, par accumulation de petits gestes situés.
|
||||||
</p>
|
</p>
|
||||||
|
<!-- V1.3-F : CTA "commander" deplace tout en bas (apres lecture). Le seul lien d'entete = page complete. -->
|
||||||
<div class="mt-5 flex flex-wrap gap-2">
|
<div class="mt-5 flex flex-wrap gap-2">
|
||||||
<a
|
|
||||||
href="/manifeste/commander"
|
|
||||||
class="inline-block px-4 py-2 border border-neutral-900 text-neutral-900 rounded-lg font-medium text-sm hover:bg-neutral-900 hover:text-white transition-colors"
|
|
||||||
>
|
|
||||||
Commander la version imprimée
|
|
||||||
</a>
|
|
||||||
<a
|
<a
|
||||||
href="/manifeste"
|
href="/manifeste"
|
||||||
class="inline-block px-4 py-2 border border-neutral-300 text-neutral-700 rounded-lg text-sm hover:border-neutral-900 hover:text-neutral-900 transition-colors"
|
class="inline-block px-4 py-2 border border-neutral-300 text-neutral-700 rounded-lg text-sm hover:border-neutral-900 hover:text-neutral-900 transition-colors"
|
||||||
@@ -134,8 +129,22 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- V1.3-F : CTA commander version papier — bord rouge brique #B5443A, signal politique fort.
|
||||||
|
Place en bas, apres lecture : j'achete, tranquille. -->
|
||||||
|
<section class="mt-10 pt-6 border-t border-neutral-200 text-center">
|
||||||
|
<p class="text-xs italic text-neutral-500 mb-3">
|
||||||
|
Manifeste lu. J'achete la version papier, tranquille.
|
||||||
|
</p>
|
||||||
|
<a
|
||||||
|
href="/manifeste/commander"
|
||||||
|
class="inline-block px-5 py-2.5 border-2 border-[#B5443A] text-[#0F172A] bg-[#FAFAF7] font-medium text-sm hover:bg-[#E5C3BE] transition-colors"
|
||||||
|
>
|
||||||
|
Commander la version papier
|
||||||
|
</a>
|
||||||
|
</section>
|
||||||
|
|
||||||
<!-- Footer simple : lien vers page complete pour les detail (mouvements, etc.) -->
|
<!-- Footer simple : lien vers page complete pour les detail (mouvements, etc.) -->
|
||||||
<footer class="mt-10 pt-6 border-t border-neutral-200 text-center">
|
<footer class="mt-6 pt-4 border-t border-neutral-200 text-center">
|
||||||
<a
|
<a
|
||||||
href="/manifeste"
|
href="/manifeste"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|||||||
@@ -112,6 +112,7 @@ const formatDate = (iso: string) => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<Transition name="preview-fade">
|
||||||
<div v-if="mode" class="preview-article border border-neutral-200 rounded overflow-hidden bg-white flex flex-col">
|
<div v-if="mode" class="preview-article border border-neutral-200 rounded overflow-hidden bg-white flex flex-col">
|
||||||
|
|
||||||
<!-- Header : reset + label (hashtag article OU "Manifeste") -->
|
<!-- Header : reset + label (hashtag article OU "Manifeste") -->
|
||||||
@@ -199,4 +200,21 @@ const formatDate = (iso: string) => {
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
</Transition>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
/* V1.4-E2 : animation legere ouverture/fermeture preview (fade + slide-up subtil) */
|
||||||
|
.preview-fade-enter-active,
|
||||||
|
.preview-fade-leave-active {
|
||||||
|
transition: opacity 0.25s ease, transform 0.25s ease;
|
||||||
|
}
|
||||||
|
.preview-fade-enter-from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(8px);
|
||||||
|
}
|
||||||
|
.preview-fade-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(4px);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -6,12 +6,63 @@ import SiteHeader from '../components/astro/SiteHeader.astro';
|
|||||||
interface Props {
|
interface Props {
|
||||||
title?: string;
|
title?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
|
ogImage?: string;
|
||||||
|
canonical?: string;
|
||||||
|
/** Article JSON-LD : passer true sur les pages articles (manifeste, etc.) */
|
||||||
|
isArticle?: boolean;
|
||||||
|
articleDate?: string;
|
||||||
|
articleDescription?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
title = 'trans-former.fr',
|
title,
|
||||||
description = "Architecture d'ecologie politique - journal, carte conceptuelle, manifeste",
|
description,
|
||||||
|
ogImage,
|
||||||
|
canonical,
|
||||||
|
isArticle = false,
|
||||||
|
articleDate,
|
||||||
|
articleDescription,
|
||||||
} = Astro.props;
|
} = Astro.props;
|
||||||
|
|
||||||
|
const SITE_NAME = 'trans-former.fr';
|
||||||
|
const SITE_URL = 'https://trans-former.fr';
|
||||||
|
const DEFAULT_DESC = "Architecture, ecologie, politique : un commun a construire ensemble. Manifeste et infrastructure vivante de Jules NENY.";
|
||||||
|
const DEFAULT_OG = '/og-default.png';
|
||||||
|
|
||||||
|
const fullTitle = title ? `${title} - ${SITE_NAME}` : SITE_NAME;
|
||||||
|
const finalDesc = description || DEFAULT_DESC;
|
||||||
|
const finalCanonical = canonical || new URL(Astro.url.pathname, SITE_URL).href;
|
||||||
|
const finalOg = ogImage || DEFAULT_OG;
|
||||||
|
const finalOgAbsolute = finalOg.startsWith('http') ? finalOg : `${SITE_URL}${finalOg}`;
|
||||||
|
|
||||||
|
const websiteSchema = {
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "WebSite",
|
||||||
|
"name": SITE_NAME,
|
||||||
|
"url": SITE_URL,
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "Jules NENY",
|
||||||
|
"url": `${SITE_URL}/a-propos`,
|
||||||
|
"sameAs": [
|
||||||
|
"https://www.instagram.com/julesneny/",
|
||||||
|
"https://www.instagram.com/aep.politique/",
|
||||||
|
"https://julesneny.substack.com",
|
||||||
|
"https://git.trans-former.fr/jules"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"description": DEFAULT_DESC
|
||||||
|
};
|
||||||
|
|
||||||
|
const articleSchema = isArticle ? {
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Article",
|
||||||
|
"headline": title || SITE_NAME,
|
||||||
|
"author": { "@type": "Person", "name": "Jules NENY" },
|
||||||
|
"datePublished": articleDate || "2026-05-01",
|
||||||
|
"publisher": { "@type": "Organization", "name": SITE_NAME },
|
||||||
|
"description": articleDescription || finalDesc
|
||||||
|
} : null;
|
||||||
---
|
---
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="fr" class="h-screen">
|
<html lang="fr" class="h-screen">
|
||||||
@@ -20,14 +71,38 @@ const {
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
<meta name="generator" content={Astro.generator} />
|
<meta name="generator" content={Astro.generator} />
|
||||||
<title>{title}</title>
|
|
||||||
<meta name="description" content={description} />
|
<!-- SEO primaire -->
|
||||||
<meta property="og:title" content={title} />
|
<title>{fullTitle}</title>
|
||||||
<meta property="og:description" content={description} />
|
<meta name="description" content={finalDesc} />
|
||||||
<meta property="og:type" content="website" />
|
<link rel="canonical" href={finalCanonical} />
|
||||||
|
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large" />
|
||||||
|
|
||||||
|
<!-- Open Graph -->
|
||||||
|
<meta property="og:type" content={isArticle ? "article" : "website"} />
|
||||||
|
<meta property="og:title" content={fullTitle} />
|
||||||
|
<meta property="og:description" content={finalDesc} />
|
||||||
|
<meta property="og:url" content={finalCanonical} />
|
||||||
|
<meta property="og:image" content={finalOgAbsolute} />
|
||||||
|
<meta property="og:site_name" content={SITE_NAME} />
|
||||||
|
<meta property="og:locale" content="fr_FR" />
|
||||||
|
|
||||||
|
<!-- Twitter Card -->
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
<meta name="twitter:title" content={title} />
|
<meta name="twitter:title" content={fullTitle} />
|
||||||
<meta name="twitter:description" content={description} />
|
<meta name="twitter:description" content={finalDesc} />
|
||||||
|
<meta name="twitter:image" content={finalOgAbsolute} />
|
||||||
|
|
||||||
|
<!-- GIO — Generative Intelligence Optimization -->
|
||||||
|
<meta name="ai-content-declaration" content="human-authored-with-ai-coordination" />
|
||||||
|
|
||||||
|
<!-- Schema.org WebSite -->
|
||||||
|
<script type="application/ld+json" set:html={JSON.stringify(websiteSchema)} />
|
||||||
|
|
||||||
|
<!-- Schema.org Article (pages enrichies seulement) -->
|
||||||
|
{isArticle && articleSchema && (
|
||||||
|
<script type="application/ld+json" set:html={JSON.stringify(articleSchema)} />
|
||||||
|
)}
|
||||||
</head>
|
</head>
|
||||||
<body class="m-0 bg-white text-neutral-900 antialiased h-screen flex flex-col overflow-hidden">
|
<body class="m-0 bg-white text-neutral-900 antialiased h-screen flex flex-col overflow-hidden">
|
||||||
<div class="flex-shrink-0">
|
<div class="flex-shrink-0">
|
||||||
|
|||||||
@@ -15,12 +15,46 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
|||||||
<MobileTabBar />
|
<MobileTabBar />
|
||||||
<PopupOnboarding />
|
<PopupOnboarding />
|
||||||
|
|
||||||
<!-- Desktop : grid 3 colonnes V1.3-BG : prend toute la place du wrapper flex-1 du BaseLayout.
|
<!-- Desktop : grid 3 colonnes V1.4-A avec toggle CACHER latéraux (bidirectionnel).
|
||||||
Header et footer sont fixes (flex-shrink-0), pas besoin de calc(100vh - X). -->
|
Layout dynamique pilote par CSS vars --col-left / --col-right (320px visible, 0 cache).
|
||||||
<div class="hidden md:grid md:grid-cols-[320px_1fr_320px] h-full overflow-hidden">
|
Re-clic = bidirectionnel : col reapparait, centre se retracte. sessionStorage persist.
|
||||||
<aside class="border-r border-neutral-200 overflow-y-auto h-full"><ColJournal /></aside>
|
V1.4-bis FIX 2 : suppression du couplage display:none + width:0 (conflit grid).
|
||||||
<main class="overflow-hidden h-full"><ColCentre /></main>
|
On utilise EXCLUSIVEMENT --col-left/--col-right (0px = aside disparait visuellement).
|
||||||
<aside class="border-l border-neutral-200 overflow-y-auto h-full"><ColInsta /></aside>
|
Le contenu de l'aside est cache via visibility hidden (preserve la place 0 sans bug grid).
|
||||||
|
Grid template utilise minmax(0,1fr) pour que la col centre ne s'effondre pas quand les
|
||||||
|
voisins sont a 0 (cas critique 2 togglees). -->
|
||||||
|
<div
|
||||||
|
id="desktop-grid"
|
||||||
|
class="hidden md:grid h-full overflow-hidden relative"
|
||||||
|
style="grid-template-columns: var(--col-left, 320px) minmax(0, 1fr) var(--col-right, 320px);"
|
||||||
|
>
|
||||||
|
<aside id="col-left-aside" class="border-r border-neutral-200 overflow-hidden h-full"><div class="h-full overflow-y-auto"><ColJournal /></div></aside>
|
||||||
|
<main class="overflow-hidden h-full relative" style="min-width: 0;">
|
||||||
|
<ColCentre />
|
||||||
|
<!-- Toggle gauche : pose sur le bord gauche de la colonne centrale.
|
||||||
|
Icone < quand col visible (clic = cacher) ; > quand col cachee (clic = rouvrir). -->
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
id="toggle-col-left"
|
||||||
|
aria-label="Cacher/afficher colonne gauche"
|
||||||
|
class="hidden md:flex absolute left-0 top-1/2 -translate-y-1/2 z-20 w-5 h-12 items-center justify-center bg-white border border-neutral-200 border-l-0 rounded-r text-neutral-500 hover:bg-neutral-50 hover:text-neutral-900 transition-colors cursor-pointer"
|
||||||
|
style="font-family:'Courier New',Courier,monospace;font-size:14px;line-height:1;"
|
||||||
|
>
|
||||||
|
<span id="toggle-col-left-icon">‹</span>
|
||||||
|
</button>
|
||||||
|
<!-- Toggle droite : pose sur le bord droit de la colonne centrale.
|
||||||
|
Icone > quand col visible (clic = cacher) ; < quand col cachee (clic = rouvrir). -->
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
id="toggle-col-right"
|
||||||
|
aria-label="Cacher/afficher colonne droite"
|
||||||
|
class="hidden md:flex absolute right-0 top-1/2 -translate-y-1/2 z-20 w-5 h-12 items-center justify-center bg-white border border-neutral-200 border-r-0 rounded-l text-neutral-500 hover:bg-neutral-50 hover:text-neutral-900 transition-colors cursor-pointer"
|
||||||
|
style="font-family:'Courier New',Courier,monospace;font-size:14px;line-height:1;"
|
||||||
|
>
|
||||||
|
<span id="toggle-col-right-icon">›</span>
|
||||||
|
</button>
|
||||||
|
</main>
|
||||||
|
<aside id="col-right-aside" class="border-l border-neutral-200 overflow-hidden h-full"><div class="h-full overflow-y-auto"><ColInsta /></div></aside>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Mobile : SwipeContainer Vue island - tabbar 44px reserve dans la zone flex-1 -->
|
<!-- Mobile : SwipeContainer Vue island - tabbar 44px reserve dans la zone flex-1 -->
|
||||||
@@ -31,4 +65,67 @@ import PopupOnboarding from '../components/astro/PopupOnboarding.astro';
|
|||||||
<ColInsta slot="right" />
|
<ColInsta slot="right" />
|
||||||
</SwipeContainer>
|
</SwipeContainer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// V1.4-A : toggle CACHER colonnes laterales (bidirectionnel, focus simple).
|
||||||
|
// - Clic bouton gauche / droite -> cache la col concernee (width 0 + display:none).
|
||||||
|
// - Re-clic -> re-affiche. ColCentre s'elargit ou se retracte selon le grid recalcul.
|
||||||
|
// - Etat persiste en sessionStorage (survit aux refresh dans la meme tab).
|
||||||
|
const KEY_LEFT = 'tf-col-left-collapsed';
|
||||||
|
const KEY_RIGHT = 'tf-col-right-collapsed';
|
||||||
|
|
||||||
|
const grid = document.getElementById('desktop-grid') as HTMLElement | null;
|
||||||
|
const asideLeft = document.getElementById('col-left-aside') as HTMLElement | null;
|
||||||
|
const asideRight = document.getElementById('col-right-aside') as HTMLElement | null;
|
||||||
|
const btnLeft = document.getElementById('toggle-col-left') as HTMLButtonElement | null;
|
||||||
|
const btnRight = document.getElementById('toggle-col-right') as HTMLButtonElement | null;
|
||||||
|
const iconLeft = document.getElementById('toggle-col-left-icon');
|
||||||
|
const iconRight = document.getElementById('toggle-col-right-icon');
|
||||||
|
|
||||||
|
let collapsedLeft = false;
|
||||||
|
let collapsedRight = false;
|
||||||
|
|
||||||
|
try {
|
||||||
|
collapsedLeft = sessionStorage.getItem(KEY_LEFT) === '1';
|
||||||
|
collapsedRight = sessionStorage.getItem(KEY_RIGHT) === '1';
|
||||||
|
} catch { /* mode prive */ }
|
||||||
|
|
||||||
|
// V1.4-bis FIX 2 : UNE SEULE technique (CSS var width 0px) — pas de display:none
|
||||||
|
// qui creait un conflit grid : quand display:none + grid-column 0 cohabitent,
|
||||||
|
// certains navigateurs ne recalculent pas la col centre correctement → centre disparu.
|
||||||
|
// Maintenant : aside reste dans le flux avec width 0 (overflow hidden cache le contenu)
|
||||||
|
// + le contenu interne avec visibility hidden pour ne pas etre focusable au tab.
|
||||||
|
const apply = () => {
|
||||||
|
if (!grid) return;
|
||||||
|
grid.style.setProperty('--col-left', collapsedLeft ? '0px' : '320px');
|
||||||
|
grid.style.setProperty('--col-right', collapsedRight ? '0px' : '320px');
|
||||||
|
// Aside reste en flux (display: '' par defaut) pour ne pas casser le grid template.
|
||||||
|
// Visibility hidden + tabindex -1 sur le contenu pour empecher interaction inutile.
|
||||||
|
if (asideLeft) {
|
||||||
|
asideLeft.style.visibility = collapsedLeft ? 'hidden' : '';
|
||||||
|
asideLeft.setAttribute('aria-hidden', collapsedLeft ? 'true' : 'false');
|
||||||
|
}
|
||||||
|
if (asideRight) {
|
||||||
|
asideRight.style.visibility = collapsedRight ? 'hidden' : '';
|
||||||
|
asideRight.setAttribute('aria-hidden', collapsedRight ? 'true' : 'false');
|
||||||
|
}
|
||||||
|
// Icones : pointe vers la direction d'ouverture (sens depliage).
|
||||||
|
if (iconLeft) iconLeft.innerHTML = collapsedLeft ? '›' : '‹';
|
||||||
|
if (iconRight) iconRight.innerHTML = collapsedRight ? '‹' : '›';
|
||||||
|
};
|
||||||
|
|
||||||
|
apply();
|
||||||
|
|
||||||
|
btnLeft?.addEventListener('click', () => {
|
||||||
|
collapsedLeft = !collapsedLeft;
|
||||||
|
try { sessionStorage.setItem(KEY_LEFT, collapsedLeft ? '1' : '0'); } catch { /* mode prive */ }
|
||||||
|
apply();
|
||||||
|
});
|
||||||
|
|
||||||
|
btnRight?.addEventListener('click', () => {
|
||||||
|
collapsedRight = !collapsedRight;
|
||||||
|
try { sessionStorage.setItem(KEY_RIGHT, collapsedRight ? '1' : '0'); } catch { /* mode prive */ }
|
||||||
|
apply();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</BaseLayout>
|
</BaseLayout>
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
|||||||
<BaseLayout
|
<BaseLayout
|
||||||
title="Manifeste - Architecture d'Ecologie Politique"
|
title="Manifeste - Architecture d'Ecologie Politique"
|
||||||
description="Manifeste AEP : un commun vivant pour une architecture d'ecologie politique. Architectes, allie-es, habitant-es."
|
description="Manifeste AEP : un commun vivant pour une architecture d'ecologie politique. Architectes, allie-es, habitant-es."
|
||||||
|
isArticle={true}
|
||||||
|
articleDate="2026-05-01"
|
||||||
|
articleDescription="Manifeste fondateur des Agences d'Ecologie Politique - un commun vivant pour bifurquer ensemble."
|
||||||
>
|
>
|
||||||
<HamburgerMenu />
|
<HamburgerMenu />
|
||||||
|
|
||||||
@@ -24,14 +27,7 @@ import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
|||||||
<p class="mt-4 text-neutral-600 text-base md:text-lg leading-relaxed">
|
<p class="mt-4 text-neutral-600 text-base md:text-lg leading-relaxed">
|
||||||
Un commun vivant pour bifurquer ; ensemble, lentement, par accumulation de petits gestes situes.
|
Un commun vivant pour bifurquer ; ensemble, lentement, par accumulation de petits gestes situes.
|
||||||
</p>
|
</p>
|
||||||
<div class="mt-8">
|
<!-- V1.3-F : CTA "commander" deplace tout en bas de page (apres avoir lu). -->
|
||||||
<a
|
|
||||||
href="/manifeste/commander"
|
|
||||||
class="inline-block px-5 py-2.5 border border-neutral-900 text-neutral-900 rounded-lg font-medium hover:bg-neutral-900 hover:text-white transition-colors"
|
|
||||||
>
|
|
||||||
Commander la version imprimee
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- Corps du manifeste -->
|
<!-- Corps du manifeste -->
|
||||||
@@ -203,6 +199,20 @@ import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!-- V1.3-F : CTA commander version papier — bord rouge brique #B5443A, signal politique fort.
|
||||||
|
Place en bas : le lecteur a lu, il sait ce qu'il achete. Tranquille. -->
|
||||||
|
<section class="mt-16 pt-10 border-t border-neutral-200 text-center">
|
||||||
|
<p class="text-sm italic text-neutral-500 mb-4">
|
||||||
|
Manifeste lu. J'achete la version papier, tranquille.
|
||||||
|
</p>
|
||||||
|
<a
|
||||||
|
href="/manifeste/commander"
|
||||||
|
class="inline-block px-6 py-3 border-2 border-[#B5443A] text-[#0F172A] bg-[#FAFAF7] font-medium text-base hover:bg-[#E5C3BE] transition-colors"
|
||||||
|
>
|
||||||
|
Commander la version papier
|
||||||
|
</a>
|
||||||
|
</section>
|
||||||
|
|
||||||
<!-- En lire plus -->
|
<!-- En lire plus -->
|
||||||
<footer class="mt-16 pt-10 border-t border-neutral-200 text-center">
|
<footer class="mt-16 pt-10 border-t border-neutral-200 text-center">
|
||||||
<p class="text-neutral-600 mb-4">En lire plus</p>
|
<p class="text-neutral-600 mb-4">En lire plus</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user