Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 8x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 11x 11x 1x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 5x 5x 5x 2x 2x 2x 8x | // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
// SPDX-License-Identifier: Apache-2.0
/**
* @module Generators/Strategies/MonthAheadStrategy
* @description Article strategy for the Month Ahead article type.
* Fetches plenary sessions, committee meetings, documents, and legislative
* pipeline data for the upcoming 30 days, then renders a forward-looking
* strategic outlook article.
*/
import type { EuropeanParliamentMCPClient } from '../../mcp/ep-mcp-client.js';
import { ArticleCategory } from '../../types/index.js';
import type { LanguageCode, DateRange, WeekAheadData, EPFeedData } from '../../types/index.js';
import { MONTH_AHEAD_TITLES, getLocalizedString } from '../../constants/languages.js';
import { fetchWeekAheadData, fetchEPFeedData } from '../pipeline/fetch-stage.js';
import { buildWeekAheadContent, buildKeywords } from '../week-ahead-content.js';
import { buildDeepAnalysisSection } from '../deep-analysis-content.js';
import {
buildProspectiveAnalysis,
buildProspectiveSwot,
buildProspectiveDashboard,
} from '../analysis-builders.js';
import { buildSwotSection } from '../swot-content.js';
import { buildDashboardSection } from '../dashboard-content.js';
import type { ArticleStrategy, ArticleData, ArticleMetadata } from './article-strategy.js';
// ─── Data payload ─────────────────────────────────────────────────────────────
/** Data fetched and pre-processed by {@link MonthAheadStrategy} */
export interface MonthAheadArticleData extends ArticleData {
/** Month-ahead date range (30 days) */
readonly dateRange: DateRange;
/** Aggregated month-ahead domain data */
readonly monthData: WeekAheadData;
/** SEO keywords derived from the data */
readonly keywords: readonly string[];
/** Display label for the target month */
readonly monthLabel: string;
/** EP feed data for enrichment (when available) */
readonly feedData?: EPFeedData | undefined;
}
/** Keywords shared by all Month Ahead articles */
const MONTH_AHEAD_KEYWORDS = [
'European Parliament',
'month ahead',
'strategic outlook',
'legislative calendar',
] as const;
// ─── Date-range helper ────────────────────────────────────────────────────────
/**
* Compute the month-ahead date range spanning 30 days from the day after `baseDate`.
*
* @param baseDate - ISO 8601 publication date (YYYY-MM-DD)
* @returns Date range spanning the next 30 days
*/
function computeMonthAheadDateRange(baseDate: string): DateRange {
const base = new Date(`${baseDate}T00:00:00Z`);
const startDate = new Date(base);
startDate.setUTCDate(base.getUTCDate() + 1);
const endDate = new Date(startDate);
endDate.setUTCDate(startDate.getUTCDate() + 30);
const startParts = startDate.toISOString().split('T');
const endParts = endDate.toISOString().split('T');
Iif (!startParts[0] || !endParts[0]) {
throw new Error('Invalid date format generated in computeMonthAheadDateRange');
}
return {
start: startParts[0],
end: endParts[0],
};
}
/**
* Format a month label from a date string (e.g. "February 2026").
*
* @param dateStr - ISO 8601 date
* @returns Human-readable month label, using the runtime's default locale
*/
function formatMonthLabel(dateStr: string): string {
const date = new Date(`${dateStr}T00:00:00Z`);
return date.toLocaleDateString(undefined, { month: 'long', year: 'numeric', timeZone: 'UTC' });
}
// ─── Strategy implementation ──────────────────────────────────────────────────
/**
* Article strategy for {@link ArticleCategory.MONTH_AHEAD}.
* Fetches plenary, committee, document, and pipeline data then builds
* a forward-looking 30-day strategic outlook of parliamentary activity.
*/
export class MonthAheadStrategy implements ArticleStrategy<MonthAheadArticleData> {
readonly type = ArticleCategory.MONTH_AHEAD;
readonly requiredMCPTools = [
'get_plenary_sessions',
'get_committee_info',
'search_documents',
'monitor_legislative_pipeline',
'get_parliamentary_questions',
'get_events',
'get_events_feed',
'get_adopted_texts_feed',
'get_procedures_feed',
] as const;
/**
* Fetch month-ahead data from MCP.
*
* @param client - MCP client or null
* @param date - ISO 8601 publication date
* @returns Populated month-ahead data payload
*/
async fetchData(
client: EuropeanParliamentMCPClient | null,
date: string
): Promise<MonthAheadArticleData> {
const dateRange = computeMonthAheadDateRange(date);
console.log(` 📆 Month-ahead range: ${dateRange.start} to ${dateRange.end}`);
// Fetch traditional MCP data and EP feeds in parallel
const [monthData, feedData] = await Promise.all([
fetchWeekAheadData(client, dateRange),
fetchEPFeedData(client, 'one-month', dateRange),
]);
const keywords = [...MONTH_AHEAD_KEYWORDS, ...buildKeywords(monthData)];
const monthLabel = formatMonthLabel(dateRange.start);
return { date, dateRange, monthData, keywords, monthLabel, feedData };
}
/**
* Build the month-ahead HTML body for the specified language.
*
* @param data - Month-ahead data payload
* @param lang - Target language code used for editorial strings
* @returns Article HTML body
*/
buildContent(data: MonthAheadArticleData, lang: LanguageCode): string {
const base = buildWeekAheadContent(data.monthData, data.dateRange, lang);
const analysis = buildProspectiveAnalysis(data.monthData, data.dateRange, 'month');
const analysisSection = buildDeepAnalysisSection(analysis, lang, 'en');
const swotData = buildProspectiveSwot(data.monthData, 'month', lang);
const swotSection = buildSwotSection(swotData, lang);
const dashboardData = buildProspectiveDashboard(data.monthData, 'month', lang);
const dashboardSection = buildDashboardSection(dashboardData, lang);
return base.replace(
'<!-- /article-content -->',
analysisSection + swotSection + dashboardSection
);
}
/**
* Return language-specific metadata for the month-ahead article.
*
* @param data - Month-ahead data payload
* @param lang - Target language code
* @returns Localised metadata
*/
getMetadata(data: MonthAheadArticleData, lang: LanguageCode): ArticleMetadata {
const titleFn = getLocalizedString(MONTH_AHEAD_TITLES, lang);
const { title, subtitle } = titleFn(data.monthLabel);
return {
title,
subtitle,
keywords: data.keywords,
category: ArticleCategory.MONTH_AHEAD,
sources: [],
};
}
}
/** Singleton instance for use by the strategy registry */
export const monthAheadStrategy = new MonthAheadStrategy();
|