fix: fix about page

This commit is contained in:
JustSong
2025-02-01 01:42:38 +08:00
parent be1ed114f4
commit 0895d8660e

View File

@@ -1,5 +1,5 @@
import React, { useEffect, useState } from 'react'; import React, { useEffect, useState } from 'react';
import { Card } from 'semantic-ui-react'; import { Card, Header, Segment } from 'semantic-ui-react';
import { API, showError } from '../../helpers'; import { API, showError } from '../../helpers';
import { marked } from 'marked'; import { marked } from 'marked';
@@ -7,39 +7,58 @@ const About = () => {
const [about, setAbout] = useState(''); const [about, setAbout] = useState('');
const [aboutLoaded, setAboutLoaded] = useState(false); 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('加载关于内容失败...');
}
setAboutLoaded(true);
};
useEffect(() => {
displayAbout().then();
}, []);
return ( return (
<div className='dashboard-container'> <>
<Card fluid className='chart-card'> {aboutLoaded && about === '' ? (
<Card.Content> <div className='dashboard-container'>
<Card.Header className='header'>关于系统</Card.Header> <Card fluid className='chart-card'>
{aboutLoaded && about === '' ? ( <Card.Content>
<> <Card.Header className='header'>关于系统</Card.Header>
<p>可在设置页面设置关于内容支持 HTML & Markdown</p> <p>可在设置页面设置关于内容支持 HTML & Markdown</p>
项目仓库地址 项目仓库地址
<a href='https://github.com/songquanpeng/one-api'> <a href='https://github.com/songquanpeng/one-api'>
https://github.com/songquanpeng/one-api https://github.com/songquanpeng/one-api
</a> </a>
</> </Card.Content>
</Card>
</div>
) : (
<>
{about.startsWith('https://') ? (
<iframe
src={about}
style={{ width: '100%', height: '100vh', border: 'none' }}
/>
) : ( ) : (
<> <div
{about.startsWith('https://') ? ( style={{ fontSize: 'larger' }}
<iframe dangerouslySetInnerHTML={{ __html: about }}
src={about} ></div>
style={{ width: '100%', height: '100vh', border: 'none' }}
/>
) : (
<div
style={{ fontSize: 'larger' }}
dangerouslySetInnerHTML={{ __html: about }}
></div>
)}
</>
)} )}
</Card.Content> </>
</Card> )}
</div> </>
); );
}; };