merge(v12-n): Carte O fusion noeud central + palette minimaliste
This commit is contained in:
@@ -64,32 +64,46 @@ let zoomBehavior: d3.ZoomBehavior<SVGSVGElement, unknown> | null = null
|
||||
const isMobile = computed(() => width.value < 600)
|
||||
const nodeRadius = computed(() => isMobile.value ? 10 : 14)
|
||||
|
||||
// V1.2-N palette : encre / papier / ocre
|
||||
// - central niveau 0 : fill encre #0F172A, label blanc inscrit dans le cercle
|
||||
// - essais (niveaux 1-2) : fill papier #FFFFFF, stroke encre, label encre a droite
|
||||
// - projets : fill ocre #B45309, label blanc inscrit dans le cercle
|
||||
// - statut "edite" : stroke epaissi (l'epaisseur conserve l'info, pas la couleur)
|
||||
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'
|
||||
if (d.nature === 'projet') return '#B45309'
|
||||
if (d.niveau === 0) return '#0F172A'
|
||||
return '#FFFFFF'
|
||||
}
|
||||
|
||||
function getRadius(d: SimNode): number {
|
||||
return d.radius ?? nodeRadius.value
|
||||
if (d.radius != null) return d.radius
|
||||
if (d.niveau === 0) return 30
|
||||
if (d.nature === 'projet') return 18
|
||||
return nodeRadius.value
|
||||
}
|
||||
|
||||
function strokeFor(d: SimNode): string {
|
||||
return d.statut === 'edite' ? '#0f172a' : '#94a3b8'
|
||||
if (d.nature === 'projet') return '#B45309'
|
||||
if (d.niveau === 0) return '#0F172A'
|
||||
return '#0F172A'
|
||||
}
|
||||
|
||||
function strokeWidthFor(d: SimNode): number {
|
||||
return d.statut === 'edite' ? 2.5 : 1
|
||||
return d.statut === 'edite' ? 2.5 : 1.5
|
||||
}
|
||||
|
||||
function labelWeightFor(d: SimNode): string {
|
||||
return d.statut === 'edite' ? 'bold' : 'normal'
|
||||
}
|
||||
|
||||
// Label inscrit dans le cercle (fond fonce) pour central + projets
|
||||
function labelInsideFor(d: SimNode): boolean {
|
||||
return d.niveau === 0 || d.nature === 'projet'
|
||||
}
|
||||
|
||||
function labelColorFor(d: SimNode): string {
|
||||
return d.statut === 'edite' ? '#0f172a' : '#6b7280'
|
||||
if (labelInsideFor(d)) return '#FFFFFF'
|
||||
return d.statut === 'edite' ? '#0F172A' : '#475569'
|
||||
}
|
||||
|
||||
function truncate(str: string, max: number): string {
|
||||
@@ -97,6 +111,27 @@ function truncate(str: string, max: number): string {
|
||||
return str.length > max ? str.slice(0, max - 1) + '…' : str
|
||||
}
|
||||
|
||||
// Split intelligent du label central sur 2-3 lignes (autour de "+")
|
||||
function splitCentralLabel(label: string): string[] {
|
||||
if (!label) return ['']
|
||||
// priorite : split sur " + " si present
|
||||
if (label.includes(' + ')) {
|
||||
const parts = label.split(' + ')
|
||||
return [parts[0].trim(), '+', parts.slice(1).join(' + ').trim()]
|
||||
}
|
||||
// fallback : split a peu pres au milieu sur un espace
|
||||
if (label.length > 14) {
|
||||
const mid = Math.floor(label.length / 2)
|
||||
const left = label.lastIndexOf(' ', mid)
|
||||
const right = label.indexOf(' ', mid)
|
||||
const cut = (mid - left <= right - mid && left > 0) ? left : right
|
||||
if (cut > 0) {
|
||||
return [label.slice(0, cut).trim(), label.slice(cut).trim()]
|
||||
}
|
||||
}
|
||||
return [label]
|
||||
}
|
||||
|
||||
function buildSimNodes(): SimNode[] {
|
||||
return props.nodes.map(n => ({ ...n }))
|
||||
}
|
||||
@@ -167,14 +202,14 @@ function render() {
|
||||
|
||||
const fontSize = isMobile.value ? 9 : 11
|
||||
|
||||
// Liens
|
||||
// Liens — gris doux papier
|
||||
gLinks!
|
||||
.selectAll<SVGLineElement, SimLink>('line')
|
||||
.data(simLinks)
|
||||
.join('line')
|
||||
.attr('stroke', '#94a3b8')
|
||||
.attr('stroke-opacity', 0.45)
|
||||
.attr('stroke-width', 1.2)
|
||||
.attr('stroke', '#94A3B8')
|
||||
.attr('stroke-opacity', 0.4)
|
||||
.attr('stroke-width', 1)
|
||||
|
||||
// Noeuds = groupe <g> par node
|
||||
const nodeGroups = gNodes!
|
||||
@@ -202,17 +237,58 @@ function render() {
|
||||
.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))
|
||||
// Label : inscrit dans le cercle pour central + projets, a droite sinon
|
||||
// Pour le noeud central (label long), on passe en multi-lignes
|
||||
nodeGroups.each(function (d) {
|
||||
const g = d3.select(this)
|
||||
const inside = labelInsideFor(d)
|
||||
|
||||
if (inside && d.niveau === 0) {
|
||||
// Noeud central : label en 2 lignes inscrites au centre
|
||||
const parts = splitCentralLabel(d.label)
|
||||
const lineHeight = isMobile.value ? 10 : 12
|
||||
const fs = isMobile.value ? 9 : 11
|
||||
const startY = -((parts.length - 1) * lineHeight) / 2
|
||||
parts.forEach((line, i) => {
|
||||
g.append('text')
|
||||
.attr('text-anchor', 'middle')
|
||||
.attr('dominant-baseline', 'central')
|
||||
.attr('x', 0)
|
||||
.attr('y', startY + i * lineHeight)
|
||||
.attr('font-size', fs)
|
||||
.attr('font-family', 'system-ui, sans-serif')
|
||||
.attr('font-weight', 'bold')
|
||||
.attr('fill', '#FFFFFF')
|
||||
.attr('pointer-events', 'none')
|
||||
.text(line)
|
||||
})
|
||||
} else if (inside) {
|
||||
// Projets : label centre dans le cercle (court)
|
||||
g.append('text')
|
||||
.attr('text-anchor', 'middle')
|
||||
.attr('dominant-baseline', 'central')
|
||||
.attr('x', 0)
|
||||
.attr('y', 0)
|
||||
.attr('font-size', fontSize)
|
||||
.attr('font-family', 'system-ui, sans-serif')
|
||||
.attr('font-weight', labelWeightFor(d))
|
||||
.attr('fill', '#FFFFFF')
|
||||
.attr('pointer-events', 'none')
|
||||
.text(truncate(d.label, 6))
|
||||
} else {
|
||||
// Essais : label a droite du cercle
|
||||
g.append('text')
|
||||
.attr('text-anchor', 'start')
|
||||
.attr('dominant-baseline', 'central')
|
||||
.attr('dx', getRadius(d) + 4)
|
||||
.attr('font-size', fontSize)
|
||||
.attr('font-family', 'system-ui, sans-serif')
|
||||
.attr('font-weight', labelWeightFor(d))
|
||||
.attr('fill', labelColorFor(d))
|
||||
.attr('pointer-events', 'none')
|
||||
.text(truncate(d.label, isMobile.value ? 18 : 30))
|
||||
}
|
||||
})
|
||||
|
||||
// Tooltip <title>
|
||||
nodeGroups.append('title')
|
||||
@@ -325,7 +401,7 @@ onUnmounted(() => {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
background: #fafafa;
|
||||
background: #FAFAF7;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user