mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 04:43:35 +00:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import ExternalLink from '../../../../common/components/link/external-link/ExternalLink';
|
|
import useAppVersion from '../../../../common/hooks-query/useAppVersion';
|
|
import { appVersion } from '../../../../externals';
|
|
import * as Panel from '../../panel-utils/PanelUtils';
|
|
|
|
export default function AppVersion() {
|
|
const { data, isError } = useAppVersion();
|
|
|
|
if (isError) {
|
|
return (
|
|
<Panel.Paragraph>
|
|
{`You are currently using Ontime version ${appVersion}`}
|
|
<Panel.Error>{`Could not fetch version information: ${isError}`}</Panel.Error>
|
|
</Panel.Paragraph>
|
|
);
|
|
}
|
|
|
|
if (data.hasUpdates) {
|
|
return (
|
|
<>
|
|
<Panel.Paragraph>{`You are currently using Ontime version ${appVersion}.`}</Panel.Paragraph>
|
|
<Panel.Paragraph>
|
|
{`A new version ${data.version} is available.`}
|
|
<ExternalLink href={data.url}> Please visit the release page to download</ExternalLink>
|
|
</Panel.Paragraph>
|
|
</>
|
|
);
|
|
}
|
|
|
|
return <Panel.Paragraph>{`You are currently using the latest version of Ontime: ${appVersion}`}</Panel.Paragraph>;
|
|
}
|