mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { FieldType, DataFrame, dateTime } from '@grafana/data';
|
|
|
|
import { Feed } from './types';
|
|
|
|
export function feedToDataFrame(feed: Feed): DataFrame {
|
|
const date: number[] = [];
|
|
const title: string[] = [];
|
|
const link: string[] = [];
|
|
const content: string[] = [];
|
|
const ogImage: Array<string | undefined | null> = [];
|
|
|
|
for (const item of feed.items) {
|
|
const val = dateTime(item.pubDate);
|
|
|
|
try {
|
|
date.push(val.valueOf());
|
|
title.push(item.title);
|
|
link.push(item.link);
|
|
ogImage.push(item.ogImage);
|
|
|
|
if (item.content) {
|
|
const body = item.content.replace(/<\/?[^>]+(>|$)/g, '');
|
|
content.push(body);
|
|
}
|
|
} catch (err) {
|
|
console.warn('Error reading news item:', err, item);
|
|
}
|
|
}
|
|
|
|
return {
|
|
fields: [
|
|
{ name: 'date', type: FieldType.time, config: { displayName: 'Date' }, values: date },
|
|
{ name: 'title', type: FieldType.string, config: {}, values: title },
|
|
{ name: 'link', type: FieldType.string, config: {}, values: link },
|
|
{ name: 'content', type: FieldType.string, config: {}, values: content },
|
|
{ name: 'ogImage', type: FieldType.string, config: {}, values: ogImage },
|
|
],
|
|
length: date.length,
|
|
};
|
|
}
|