* [Prettier] Add "prettier" Makes the formatting of the code consistent. By using the eslint-plugin-prettier formatting issues will be highlighted as a lint error. These errors will be auto fixed by running "lint --fix" (which can be done automatically on file save) * [Prettier] Add "prettier" - Fix formatting
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import React, { useContext, useEffect } from 'react';
|
|
import List from '@mui/material/List';
|
|
import ListItem from '@mui/material/ListItem';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import ListItemLink from 'components/util/ListItemLink';
|
|
import NavbarContext from 'components/context/NavbarContext';
|
|
import LoadingPlaceholder from 'components/util/LoadingPlaceholder';
|
|
import { useQuery } from 'util/client';
|
|
|
|
export default function About() {
|
|
const { setTitle, setAction } = useContext(NavbarContext);
|
|
|
|
useEffect(() => {
|
|
setTitle('About');
|
|
setAction(<></>);
|
|
}, []);
|
|
|
|
const { data: about } = useQuery<IAbout>('/api/v1/settings/about');
|
|
|
|
if (about === undefined) {
|
|
return <LoadingPlaceholder />;
|
|
}
|
|
|
|
const version = () => {
|
|
if (about.buildType === 'Stable') return `${about.version}`;
|
|
return `${about.version}-${about.revision}`;
|
|
};
|
|
|
|
const buildTime = () => new Date(about.buildTime * 1000).toUTCString();
|
|
|
|
return (
|
|
<List>
|
|
<ListItem>
|
|
<ListItemText primary="Server" secondary={`${about.name} ${about.buildType}`} />
|
|
</ListItem>
|
|
<ListItem>
|
|
<ListItemText primary="Server version" secondary={version()} />
|
|
</ListItem>
|
|
<ListItem>
|
|
<ListItemText primary="Build time" secondary={buildTime()} />
|
|
</ListItem>
|
|
<ListItemLink to={about.github}>
|
|
<ListItemText primary="Github" secondary={about.github} />
|
|
</ListItemLink>
|
|
<ListItemLink to={about.discord}>
|
|
<ListItemText primary="Discord" secondary={about.discord} />
|
|
</ListItemLink>
|
|
</List>
|
|
);
|
|
}
|