Files
5chan/src/components/version/version.tsx
T

33 lines
878 B
TypeScript
Raw Normal View History

import { useTranslation } from 'react-i18next';
import packageJson from '../../../package.json';
const { version } = packageJson;
2025-05-22 17:42:04 +02:00
const commitRef = import.meta.env.VITE_COMMIT_REF;
const isElectron = window.electronApi?.isElectron === true;
const Version = () => {
const { t } = useTranslation();
return (
<>
<a
2025-10-17 23:30:35 +02:00
href={commitRef ? `https://github.com/plebbit/5chan/commit/${commitRef}` : `https://github.com/plebbit/5chan/releases/tag/v${version}`}
target='_blank'
rel='noopener noreferrer'
>
2025-05-22 17:42:04 +02:00
v{commitRef ? `${version}#${commitRef.slice(0, 7)}` : version}
</a>
{isElectron && (
<>
{' '}
-{' '}
<a href='http://localhost:50019/webui/' target='_blank' rel='noreferrer'>
{t('node_stats')}
</a>
</>
)}
</>
);
};
export default Version;