mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Eslint: allign with latest grafana-eslint-config * fix ts * Fix react/jsx-key * Fix react/no-children-prop * Fix react/jsx-no-target-blank
129 lines
3.2 KiB
TypeScript
Executable File
129 lines
3.2 KiB
TypeScript
Executable File
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Utils & Services
|
|
import { CustomScrollbar, stylesFactory } from '@grafana/ui';
|
|
|
|
import config from 'app/core/config';
|
|
import { feedToDataFrame } from './utils';
|
|
import { loadRSSFeed } from './rss';
|
|
|
|
// Types
|
|
import { PanelProps, DataFrameView, dateTimeFormat, GrafanaTheme, textUtil } from '@grafana/data';
|
|
import { NewsOptions, NewsItem } from './types';
|
|
import { DEFAULT_FEED_URL, PROXY_PREFIX } from './constants';
|
|
import { css } from 'emotion';
|
|
|
|
interface Props extends PanelProps<NewsOptions> {}
|
|
|
|
interface State {
|
|
news?: DataFrameView<NewsItem>;
|
|
isError?: boolean;
|
|
}
|
|
|
|
export class NewsPanel extends PureComponent<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this.state = {};
|
|
}
|
|
|
|
componentDidMount(): void {
|
|
this.loadChannel();
|
|
}
|
|
|
|
componentDidUpdate(prevProps: Props): void {
|
|
if (this.props.options.feedUrl !== prevProps.options.feedUrl) {
|
|
this.loadChannel();
|
|
}
|
|
}
|
|
|
|
async loadChannel() {
|
|
const { options } = this.props;
|
|
try {
|
|
const url = options.feedUrl
|
|
? options.useProxy
|
|
? `${PROXY_PREFIX}${options.feedUrl}`
|
|
: options.feedUrl
|
|
: DEFAULT_FEED_URL;
|
|
const res = await loadRSSFeed(url);
|
|
const frame = feedToDataFrame(res);
|
|
this.setState({
|
|
news: new DataFrameView<NewsItem>(frame),
|
|
isError: false,
|
|
});
|
|
} catch (err) {
|
|
console.error('Error Loading News', err);
|
|
this.setState({
|
|
news: undefined,
|
|
isError: true,
|
|
});
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { isError, news } = this.state;
|
|
const styles = getStyles(config.theme);
|
|
|
|
if (isError) {
|
|
return <div>Error Loading News</div>;
|
|
}
|
|
if (!news) {
|
|
return <div>loading...</div>;
|
|
}
|
|
|
|
return (
|
|
<CustomScrollbar autoHeightMin="100%" autoHeightMax="100%">
|
|
{news.map((item, index) => {
|
|
return (
|
|
<div key={index} className={styles.item}>
|
|
<a href={textUtil.sanitizeUrl(item.link)} target="_blank" rel="noopener noreferrer">
|
|
<div className={styles.title}>{item.title}</div>
|
|
<div className={styles.date}>{dateTimeFormat(item.date, { format: 'MMM DD' })} </div>
|
|
</a>
|
|
<div className={styles.content} dangerouslySetInnerHTML={{ __html: textUtil.sanitize(item.content) }} />
|
|
</div>
|
|
);
|
|
})}
|
|
</CustomScrollbar>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyles = stylesFactory((theme: GrafanaTheme) => ({
|
|
container: css`
|
|
height: 100%;
|
|
`,
|
|
item: css`
|
|
padding: ${theme.spacing.sm};
|
|
position: relative;
|
|
margin-bottom: 4px;
|
|
margin-right: ${theme.spacing.sm};
|
|
border-bottom: 2px solid ${theme.colors.border1};
|
|
`,
|
|
title: css`
|
|
color: ${theme.colors.linkExternal};
|
|
max-width: calc(100% - 70px);
|
|
font-size: 16px;
|
|
margin-bottom: ${theme.spacing.sm};
|
|
`,
|
|
content: css`
|
|
p {
|
|
margin-bottom: 4px;
|
|
color: ${theme.colors.text};
|
|
}
|
|
`,
|
|
date: css`
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
background: ${theme.colors.panelBg};
|
|
width: 55px;
|
|
text-align: right;
|
|
padding: ${theme.spacing.xs};
|
|
font-weight: 500;
|
|
border-radius: 0 0 0 3px;
|
|
color: ${theme.colors.textWeak};
|
|
`,
|
|
}));
|