File size: 9,693 Bytes
9d2d895 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | import * as d3 from 'd3';
import { escapeHtml } from '@/utils/sanitize';
import { getCSSColor } from '@/utils';
import { t } from '@/services/i18n';
import { setTrustedHtml, trustedHtml } from '@/utils/dom-utils';
export interface TimelineEvent {
timestamp: number;
lane: 'protest' | 'conflict' | 'natural' | 'military';
label: string;
severity?: 'low' | 'medium' | 'high' | 'critical';
}
const LANES: TimelineEvent['lane'][] = ['protest', 'conflict', 'natural', 'military'];
const LANE_COLORS: Record<TimelineEvent['lane'], string> = {
protest: '#ffaa00',
conflict: '#ff4444',
natural: '#b478ff',
military: '#64b4ff',
};
const SEVERITY_RADIUS: Record<string, number> = {
low: 4,
medium: 5,
high: 7,
critical: 9,
};
const MARGIN = { top: 20, right: 20, bottom: 30, left: 80 };
const HEIGHT = 200;
const SEVEN_DAYS_MS = 7 * 24 * 60 * 60 * 1000;
export class CountryTimeline {
private container: HTMLElement;
private svg: d3.Selection<SVGSVGElement, unknown, null, undefined> | null = null;
private tooltip: HTMLDivElement | null = null;
private resizeObserver: ResizeObserver | null = null;
private currentEvents: TimelineEvent[] = [];
private handleThemeChange: () => void;
constructor(container: HTMLElement) {
this.container = container;
this.createTooltip();
this.resizeObserver = new ResizeObserver(() => {
if (this.currentEvents.length > 0) this.render(this.currentEvents);
});
this.resizeObserver.observe(this.container);
this.handleThemeChange = () => {
// Re-create tooltip with new theme colors
if (this.tooltip) {
this.tooltip.remove();
this.tooltip = null;
}
this.createTooltip();
// Re-render chart with new colors
if (this.currentEvents.length > 0) this.render(this.currentEvents);
};
window.addEventListener('theme-changed', this.handleThemeChange);
}
private createTooltip(): void {
this.tooltip = document.createElement('div');
Object.assign(this.tooltip.style, {
position: 'absolute',
pointerEvents: 'none',
background: getCSSColor('--bg'),
border: `1px solid ${getCSSColor('--border')}`,
borderRadius: '6px',
padding: '6px 10px',
fontSize: '12px',
color: getCSSColor('--text'),
zIndex: '9999',
display: 'none',
whiteSpace: 'nowrap',
boxShadow: `0 2px 8px ${getCSSColor('--shadow-color')}`,
});
this.container.style.position = 'relative';
this.container.appendChild(this.tooltip);
}
render(events: TimelineEvent[]): void {
this.currentEvents = events;
if (this.svg) this.svg.remove();
const width = this.container.clientWidth;
if (width <= 0) return;
// Clamp timestamps to the visible 7-day domain so dots align with the
// axis labels they describe (issue #2973 bug 3). Events with missing or
// future timestamps would otherwise plot off-axis.
const nowMs = Date.now();
const domainStart = nowMs - SEVEN_DAYS_MS;
const visibleEvents = events
.filter((e) => Number.isFinite(e.timestamp) && e.timestamp >= domainStart)
.map((e) => (e.timestamp > nowMs ? { ...e, timestamp: nowMs } : e));
const innerW = width - MARGIN.left - MARGIN.right;
const innerH = HEIGHT - MARGIN.top - MARGIN.bottom;
this.svg = d3
.select(this.container)
.append('svg')
.attr('width', width)
.attr('height', HEIGHT)
.attr('style', 'display:block;');
const g = this.svg
.append('g')
.attr('transform', `translate(${MARGIN.left},${MARGIN.top})`);
const now = nowMs;
const xScale = d3
.scaleTime()
.domain([new Date(domainStart), new Date(now)])
.range([0, innerW]);
const yScale = d3
.scaleBand<string>()
.domain(LANES)
.range([0, innerH])
.padding(0.2);
this.drawGrid(g, xScale, innerH);
this.drawAxes(g, xScale, yScale, innerH);
this.drawNowMarker(g, xScale, new Date(now), innerH);
this.drawEmptyLaneLabels(g, visibleEvents, yScale, innerW);
this.drawEvents(g, visibleEvents, xScale, yScale);
}
private drawGrid(
g: d3.Selection<SVGGElement, unknown, null, undefined>,
xScale: d3.ScaleTime<number, number>,
innerH: number,
): void {
const ticks = xScale.ticks(6);
g.selectAll('.grid-line')
.data(ticks)
.join('line')
.attr('x1', (d) => xScale(d))
.attr('x2', (d) => xScale(d))
.attr('y1', 0)
.attr('y2', innerH)
.attr('stroke', getCSSColor('--border-subtle'))
.attr('stroke-width', 1);
}
private drawAxes(
g: d3.Selection<SVGGElement, unknown, null, undefined>,
xScale: d3.ScaleTime<number, number>,
yScale: d3.ScaleBand<string>,
innerH: number,
): void {
const xAxis = d3
.axisBottom(xScale)
.ticks(6)
.tickFormat(d3.timeFormat('%b %d') as (d: Date | d3.NumberValue, i: number) => string);
const xAxisG = g
.append('g')
.attr('transform', `translate(0,${innerH})`)
.call(xAxis);
xAxisG.selectAll('text').attr('fill', getCSSColor('--text-dim')).attr('font-size', '10px');
xAxisG.selectAll('line').attr('stroke', getCSSColor('--border'));
xAxisG.select('.domain').attr('stroke', getCSSColor('--border'));
const laneLabels: Record<string, string> = {
protest: 'Protest',
conflict: 'Conflict',
natural: 'Natural',
military: 'Military',
};
g.selectAll('.lane-label')
.data(LANES)
.join('text')
.attr('x', -10)
.attr('y', (d) => (yScale(d) ?? 0) + yScale.bandwidth() / 2)
.attr('text-anchor', 'end')
.attr('dominant-baseline', 'central')
.attr('fill', (d: TimelineEvent['lane']) => LANE_COLORS[d])
.attr('font-size', '11px')
.attr('font-weight', '500')
.text((d: TimelineEvent['lane']) => laneLabels[d] || d);
}
private drawNowMarker(
g: d3.Selection<SVGGElement, unknown, null, undefined>,
xScale: d3.ScaleTime<number, number>,
now: Date,
innerH: number,
): void {
const x = xScale(now);
g.append('line')
.attr('x1', x)
.attr('x2', x)
.attr('y1', 0)
.attr('y2', innerH)
.attr('stroke', getCSSColor('--text'))
.attr('stroke-width', 1)
.attr('stroke-dasharray', '4,3')
.attr('opacity', 0.6);
g.append('text')
.attr('x', x)
.attr('y', -6)
.attr('text-anchor', 'middle')
.attr('fill', getCSSColor('--text-muted'))
.attr('font-size', '9px')
.text(t('components.countryTimeline.now'));
}
private drawEmptyLaneLabels(
g: d3.Selection<SVGGElement, unknown, null, undefined>,
events: TimelineEvent[],
yScale: d3.ScaleBand<string>,
innerW: number,
): void {
const populatedLanes = new Set(events.map((e) => e.lane));
const emptyLanes = LANES.filter((l) => !populatedLanes.has(l));
g.selectAll('.empty-label')
.data(emptyLanes)
.join('text')
.attr('x', innerW / 2)
.attr('y', (d) => (yScale(d) ?? 0) + yScale.bandwidth() / 2)
.attr('text-anchor', 'middle')
.attr('dominant-baseline', 'central')
.attr('fill', getCSSColor('--text-ghost'))
.attr('font-size', '10px')
.attr('font-style', 'italic')
.text(t('components.countryTimeline.noEventsIn7Days'));
}
private drawEvents(
g: d3.Selection<SVGGElement, unknown, null, undefined>,
events: TimelineEvent[],
xScale: d3.ScaleTime<number, number>,
yScale: d3.ScaleBand<string>,
): void {
const tooltip = this.tooltip!;
const container = this.container;
const fmt = d3.timeFormat('%b %d, %H:%M');
g.selectAll('.event-circle')
.data(events)
.join('circle')
.attr('cx', (d) => xScale(new Date(d.timestamp)))
.attr('cy', (d) => (yScale(d.lane) ?? 0) + yScale.bandwidth() / 2)
.attr('r', (d) => SEVERITY_RADIUS[d.severity ?? 'medium'] ?? 5)
.attr('fill', (d) => LANE_COLORS[d.lane])
.attr('opacity', 0.85)
.attr('cursor', 'pointer')
.attr('stroke', getCSSColor('--shadow-color'))
.attr('stroke-width', 0.5)
.on('mouseenter', function (event: MouseEvent, d: TimelineEvent) {
d3.select(this).attr('opacity', 1).attr('stroke', getCSSColor('--text')).attr('stroke-width', 1.5);
const dateStr = fmt(new Date(d.timestamp));
setTrustedHtml(tooltip, trustedHtml(`<strong>${escapeHtml(d.label)}</strong><br/>${escapeHtml(dateStr)}`, "legacy direct innerHTML migration"));
tooltip.style.display = 'block';
const rect = container.getBoundingClientRect();
const x = event.clientX - rect.left + 12;
const y = event.clientY - rect.top - 10;
tooltip.style.left = `${x}px`;
tooltip.style.top = `${y}px`;
})
.on('mousemove', (event: MouseEvent) => {
const rect = container.getBoundingClientRect();
const x = event.clientX - rect.left + 12;
const y = event.clientY - rect.top - 10;
tooltip.style.left = `${x}px`;
tooltip.style.top = `${y}px`;
})
.on('mouseleave', function () {
d3.select(this).attr('opacity', 0.85).attr('stroke', getCSSColor('--shadow-color')).attr('stroke-width', 0.5);
tooltip.style.display = 'none';
});
}
destroy(): void {
window.removeEventListener('theme-changed', this.handleThemeChange);
if (this.resizeObserver) {
this.resizeObserver.disconnect();
this.resizeObserver = null;
}
if (this.svg) {
this.svg.remove();
this.svg = null;
}
if (this.tooltip) {
this.tooltip.remove();
this.tooltip = null;
}
this.currentEvents = [];
}
}
|