* First pass at configuring localization * Add CI job for translations * Update CI job * Update default value * Update parser config * Update defaults again * try to fix the multiple parsing of a file * Update crowdlin config * Update configs * New Crowdin translations by GitHub Action (#3448) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Point to updated translated files * Tooltip i18n * Run translation job when web components are updated * Commit updated translations * Translations update (#3453) * Update source file strings.json Updated translations * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (English, United States) Updated translations * Commit updated translations * New Crowdin translations by GitHub Action (#3452) Co-authored-by: Owncast <owncast@owncast.online> * chore(deps): update to next config to address build errors * New Crowdin translations by GitHub Action (#3455) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Translations update (#3456) * New translations strings.json (Arabic) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (Greek) Updated translations * New translations strings.json (Irish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Korean) Updated translations * New translations strings.json (Dutch) Updated translations * New translations strings.json (Norwegian) Updated translations * New translations strings.json (Punjabi) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Swedish) Updated translations * New translations strings.json (Chinese Traditional) Updated translations * New translations strings.json (Vietnamese) Updated translations * New translations strings.json (Bengali) Updated translations * New translations strings.json (Thai) Updated translations * New translations strings.json (Croatian) Updated translations * New translations strings.json (Hindi) Updated translations * New translations strings.json (Malay) Updated translations * New Crowdin translations by GitHub Action (#3457) * New translations strings.json (Arabic) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (Greek) Updated translations * New translations strings.json (Irish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Korean) Updated translations * New translations strings.json (Dutch) Updated translations * New translations strings.json (Norwegian) Updated translations * New translations strings.json (Punjabi) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Swedish) Updated translations * New translations strings.json (Chinese Traditional) Updated translations * New translations strings.json (Vietnamese) Updated translations * New translations strings.json (Bengali) Updated translations * New translations strings.json (Thai) Updated translations * New translations strings.json (Croatian) Updated translations * New translations strings.json (Hindi) Updated translations * New translations strings.json (Malay) Updated translations * New Crowdin translations by GitHub Action --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Commit updated API documentation * Update translations job * New Crowdin translations by GitHub Action (#3698) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Update Crowdin configuration file * Translations update (#3700) * New translations strings.json (French) Updated translations * New translations strings.json (Italian) Updated translations * Translations update (#3699) * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Polish) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Portuguese, Brazilian) Updated translations * Commit updated API documentation --------- Co-authored-by: Owncast <owncast@owncast.online> * New Crowdin translations by GitHub Action (#3701) * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Polish) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Portuguese, Brazilian) Updated translations * New Crowdin translations by GitHub Action --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Draft: Mark strings for translation. (#3458) * Mark strings for translation. * Mark up strings for translation * fix(web): fix linter warnings --------- Co-authored-by: Le fractal <17422-fractal@users.noreply.framagit.org> Co-authored-by: Gabe Kangas <gabek@real-ity.com> * do not pull from cowdin via workflow * Commit updated translations * feat: add translations support to admin pages and components (#3977) * feat: add translations support to admin pages and components Added translations support admin main page and its components, help page, handware-info page. Added translations support for LogTable, NewsFeed and StreamHealthOverview components. * update package.json * fix rendering issue * Commit updated API documentation --------- Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: Gabe Kangas <gabek@real-ity.com> * Offline banner i18n formatting (#3997) * Fix "Last live ago" string formatting with i18n interpolation * Change some base translation jsons to use i18n interpolation * Linting fix * chore(js): ignore i18n pkgs in knip * fix(test): fix browser ui test * fix(js): remove unused var --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: taintedcypher <119351153+taintedcypher@users.noreply.github.com> Co-authored-by: Le fractal <17422-fractal@users.noreply.framagit.org> Co-authored-by: Sufyaan Khateeb <81009832+SufyaanKhateeb@users.noreply.github.com> Co-authored-by: mahmed2000 <mahmad2000@protonmail.com>
89 lines
2.3 KiB
TypeScript
89 lines
2.3 KiB
TypeScript
/* eslint-disable camelcase */
|
|
/* eslint-disable react/no-danger */
|
|
import React, { useState, useEffect, FC } from 'react';
|
|
import { Collapse, Typography, Skeleton } from 'antd';
|
|
import { format } from 'date-fns';
|
|
|
|
import { useTranslation } from 'next-export-i18n';
|
|
import { fetchExternalData } from '../../utils/apis';
|
|
|
|
const { Panel } = Collapse;
|
|
const { Title, Link } = Typography;
|
|
|
|
const OWNCAST_FEED_URL = 'https://owncast.online/news/index.json';
|
|
const OWNCAST_BASE_URL = 'https://owncast.online';
|
|
|
|
export type ArticleProps = {
|
|
title: string;
|
|
url: string;
|
|
content_html: string;
|
|
date_published: string;
|
|
defaultOpen?: boolean;
|
|
};
|
|
|
|
const ArticleItem: FC<ArticleProps> = ({
|
|
title,
|
|
url,
|
|
content_html: content,
|
|
date_published: date,
|
|
defaultOpen = false,
|
|
}) => {
|
|
const { t } = useTranslation();
|
|
const dateObject = new Date(date);
|
|
const dateString = format(dateObject, 'MMM dd, yyyy, HH:mm');
|
|
return (
|
|
<article>
|
|
<Collapse defaultActiveKey={defaultOpen ? url : null}>
|
|
<Panel header={title} key={url}>
|
|
<p className="timestamp">
|
|
{dateString} (
|
|
<Link href={`${OWNCAST_BASE_URL}${url}`} target="_blank" rel="noopener noreferrer">
|
|
{t('Link')}
|
|
</Link>
|
|
)
|
|
</p>
|
|
<div dangerouslySetInnerHTML={{ __html: content }} />
|
|
</Panel>
|
|
</Collapse>
|
|
</article>
|
|
);
|
|
};
|
|
|
|
export const NewsFeed = () => {
|
|
const { t } = useTranslation();
|
|
const [feed, setFeed] = useState<ArticleProps[]>([]);
|
|
const [loading, setLoading] = useState<Boolean>(true);
|
|
|
|
const getFeed = async () => {
|
|
setLoading(false);
|
|
|
|
try {
|
|
const result = await fetchExternalData(OWNCAST_FEED_URL);
|
|
if (result?.items.length > 0) {
|
|
setFeed(result.items);
|
|
}
|
|
} catch (error) {
|
|
console.log('==== error', error);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
getFeed();
|
|
}, []);
|
|
|
|
const loadingSpinner = loading ? <Skeleton loading active /> : null;
|
|
const noNews = !loading && feed.length === 0 ? <div>{t('No news.')}</div> : null;
|
|
|
|
return (
|
|
<section className="news-feed form-module">
|
|
<Title level={2}>{t('News & Updates from Owncast')}</Title>
|
|
{loadingSpinner}
|
|
{feed.map(item => (
|
|
<ArticleItem {...item} key={item.url} defaultOpen={feed.length === 1} />
|
|
))}
|
|
|
|
{noNews}
|
|
</section>
|
|
);
|
|
};
|