Add clickable article links to Live News Ticker

RSS and GDELT ticker items now open the source article in a new tab
when clicked. Telegram/WHO items without URLs remain non-clickable.

Changes:
- Extract <link> from RSS feed items in inject.mjs
- Carry url field through fetchAllNews() and buildNewsFeed()
- Add data-url attribute and pointer cursor to clickable ticker cards
- Add delegated click listener to open articles in new tab
This commit is contained in:
R4V3N
2026-03-15 19:49:18 +01:00
parent 97c438e617
commit 8bbc9058f2
2 changed files with 17 additions and 8 deletions

View File

@@ -69,8 +69,9 @@ async function fetchRSS(url, source) {
while ((match = itemRegex.exec(xml)) !== null) {
const block = match[1];
const title = (block.match(/<title>(?:<!\[CDATA\[)?(.*?)(?:\]\]>)?<\/title>/)?.[1] || '').trim();
const link = (block.match(/<link>(?:<!\[CDATA\[)?(.*?)(?:\]\]>)?<\/link>/)?.[1] || '').trim();
const pubDate = block.match(/<pubDate>(.*?)<\/pubDate>/)?.[1] || '';
if (title && title !== source) items.push({ title, date: pubDate, source });
if (title && title !== source) items.push({ title, date: pubDate, source, url: link || undefined });
}
return items;
} catch (e) {
@@ -107,6 +108,7 @@ export async function fetchAllNews() {
title: item.title.substring(0, 100),
source: item.source,
date: item.date,
url: item.url,
lat: geo.lat + (Math.random() - 0.5) * 2,
lon: geo.lon + (Math.random() - 0.5) * 2,
region: geo.region
@@ -409,17 +411,17 @@ function buildNewsFeed(rssNews, gdeltData, tgUrgent, tgTop) {
for (const n of rssNews) {
feed.push({
headline: n.title, source: n.source, type: 'rss',
timestamp: n.date, region: n.region, urgent: false
timestamp: n.date, region: n.region, urgent: false, url: n.url
});
}
// GDELT top articles
for (const title of (gdeltData.allArticles || []).slice(0, 10).map(a => a.title)) {
if (title) {
const geo = geoTagText(title);
for (const a of (gdeltData.allArticles || []).slice(0, 10)) {
if (a.title) {
const geo = geoTagText(a.title);
feed.push({
headline: title.substring(0, 100), source: 'GDELT', type: 'gdelt',
timestamp: new Date().toISOString(), region: geo?.region || 'Global', urgent: false
headline: a.title.substring(0, 100), source: 'GDELT', type: 'gdelt',
timestamp: new Date().toISOString(), region: geo?.region || 'Global', urgent: false, url: a.url
});
}
}