mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-10-19 18:14:45 +00:00
75 lines
2.1 KiB
JavaScript
75 lines
2.1 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Card } from 'semantic-ui-react';
|
|
import { API, showError } from '../../helpers';
|
|
import { marked } from 'marked';
|
|
|
|
const About = () => {
|
|
const { t } = useTranslation();
|
|
const [about, setAbout] = useState('');
|
|
const [aboutLoaded, setAboutLoaded] = useState(false);
|
|
|
|
const displayAbout = async () => {
|
|
setAbout(localStorage.getItem('about') || '');
|
|
const res = await API.get('/api/about');
|
|
const { success, message, data } = res.data;
|
|
if (success) {
|
|
let aboutContent = data;
|
|
if (!data.startsWith('https://')) {
|
|
aboutContent = marked.parse(data);
|
|
}
|
|
setAbout(aboutContent);
|
|
localStorage.setItem('about', aboutContent);
|
|
} else {
|
|
showError(message);
|
|
setAbout(t('about.loading_failed'));
|
|
}
|
|
setAboutLoaded(true);
|
|
};
|
|
|
|
useEffect(() => {
|
|
displayAbout().then();
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
{aboutLoaded && about === '' ? (
|
|
<div className='dashboard-container'>
|
|
<Card fluid className='chart-card'>
|
|
<Card.Content>
|
|
<Card.Header className='header'>{t('about.title')}</Card.Header>
|
|
<p>{t('about.description')}</p>
|
|
{t('about.repository')}
|
|
<a href='https://github.com/songquanpeng/one-api'>
|
|
https://github.com/songquanpeng/one-api
|
|
</a>
|
|
</Card.Content>
|
|
</Card>
|
|
</div>
|
|
) : (
|
|
<>
|
|
{about.startsWith('https://') ? (
|
|
<iframe
|
|
src={about}
|
|
style={{ width: '100%', height: '100vh', border: 'none' }}
|
|
/>
|
|
) : (
|
|
<div className='dashboard-container'>
|
|
<Card fluid className='chart-card'>
|
|
<Card.Content>
|
|
<div
|
|
style={{ fontSize: 'larger' }}
|
|
dangerouslySetInnerHTML={{ __html: about }}
|
|
></div>
|
|
</Card.Content>
|
|
</Card>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default About;
|