|
@@ -1,8 +1,11 @@
|
|
|
-import React, { useEffect } from 'react';
|
|
|
-import { Grid, Header, Placeholder, Segment } from 'semantic-ui-react';
|
|
|
+import React, { useContext, useEffect } from 'react';
|
|
|
+import { Card, Grid, Header, Segment } from 'semantic-ui-react';
|
|
|
import { API, showError, showNotice } from '../../helpers';
|
|
|
+import { StatusContext } from '../../context/Status';
|
|
|
|
|
|
const Home = () => {
|
|
|
+ const [statusState, statusDispatch] = useContext(StatusContext);
|
|
|
+
|
|
|
const displayNotice = async () => {
|
|
|
const res = await API.get('/api/notice');
|
|
|
const { success, message, data } = res.data;
|
|
@@ -17,57 +20,75 @@ const Home = () => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+ const getStartTimeString = () => {
|
|
|
+ const timestamp = statusState?.status?.start_time;
|
|
|
+ const date = new Date(timestamp * 1000);
|
|
|
+ return date.toLocaleString();
|
|
|
+ };
|
|
|
+
|
|
|
useEffect(() => {
|
|
|
displayNotice().then();
|
|
|
}, []);
|
|
|
return (
|
|
|
<>
|
|
|
<Segment>
|
|
|
- <Header as="h3">示例标题</Header>
|
|
|
- <Grid columns={3} stackable>
|
|
|
+ <Header as='h3'>系统状况</Header>
|
|
|
+ <Grid columns={2} stackable>
|
|
|
<Grid.Column>
|
|
|
- <Segment raised>
|
|
|
- <Placeholder>
|
|
|
- <Placeholder.Header image>
|
|
|
- <Placeholder.Line />
|
|
|
- <Placeholder.Line />
|
|
|
- </Placeholder.Header>
|
|
|
- <Placeholder.Paragraph>
|
|
|
- <Placeholder.Line length="medium" />
|
|
|
- <Placeholder.Line length="short" />
|
|
|
- </Placeholder.Paragraph>
|
|
|
- </Placeholder>
|
|
|
- </Segment>
|
|
|
+ <Card fluid>
|
|
|
+ <Card.Content>
|
|
|
+ <Card.Header>系统信息</Card.Header>
|
|
|
+ <Card.Meta>系统信息总览</Card.Meta>
|
|
|
+ <Card.Description>
|
|
|
+ <p>名称:{statusState?.status?.system_name}</p>
|
|
|
+ <p>版本:{statusState?.status?.version}</p>
|
|
|
+ <p>
|
|
|
+ 源码:
|
|
|
+ <a
|
|
|
+ href='https://github.com/songquanpeng/message-pusher'
|
|
|
+ target='_blank'
|
|
|
+ >
|
|
|
+ GitHub 仓库地址
|
|
|
+ </a>
|
|
|
+ </p>
|
|
|
+ <p>启动时间:{getStartTimeString()}</p>
|
|
|
+ </Card.Description>
|
|
|
+ </Card.Content>
|
|
|
+ </Card>
|
|
|
</Grid.Column>
|
|
|
-
|
|
|
- <Grid.Column>
|
|
|
- <Segment raised>
|
|
|
- <Placeholder>
|
|
|
- <Placeholder.Header image>
|
|
|
- <Placeholder.Line />
|
|
|
- <Placeholder.Line />
|
|
|
- </Placeholder.Header>
|
|
|
- <Placeholder.Paragraph>
|
|
|
- <Placeholder.Line length="medium" />
|
|
|
- <Placeholder.Line length="short" />
|
|
|
- </Placeholder.Paragraph>
|
|
|
- </Placeholder>
|
|
|
- </Segment>
|
|
|
- </Grid.Column>
|
|
|
-
|
|
|
<Grid.Column>
|
|
|
- <Segment raised>
|
|
|
- <Placeholder>
|
|
|
- <Placeholder.Header image>
|
|
|
- <Placeholder.Line />
|
|
|
- <Placeholder.Line />
|
|
|
- </Placeholder.Header>
|
|
|
- <Placeholder.Paragraph>
|
|
|
- <Placeholder.Line length="medium" />
|
|
|
- <Placeholder.Line length="short" />
|
|
|
- </Placeholder.Paragraph>
|
|
|
- </Placeholder>
|
|
|
- </Segment>
|
|
|
+ <Card fluid>
|
|
|
+ <Card.Content>
|
|
|
+ <Card.Header>系统配置</Card.Header>
|
|
|
+ <Card.Meta>系统配置总览</Card.Meta>
|
|
|
+ <Card.Description>
|
|
|
+ <p>
|
|
|
+ 邮箱验证:
|
|
|
+ {statusState?.status?.email_verification === true
|
|
|
+ ? '已启用'
|
|
|
+ : '未启用'}
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ GitHub 身份验证:
|
|
|
+ {statusState?.status?.github_oauth === true
|
|
|
+ ? '已启用'
|
|
|
+ : '未启用'}
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ 微信身份验证:
|
|
|
+ {statusState?.status?.wechat_login === true
|
|
|
+ ? '已启用'
|
|
|
+ : '未启用'}
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ Turnstile 用户校验:
|
|
|
+ {statusState?.status?.turnstile_check === true
|
|
|
+ ? '已启用'
|
|
|
+ : '未启用'}
|
|
|
+ </p>
|
|
|
+ </Card.Description>
|
|
|
+ </Card.Content>
|
|
|
+ </Card>
|
|
|
</Grid.Column>
|
|
|
</Grid>
|
|
|
</Segment>
|