mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 15:35:55 +01:00
75 lines
2.0 KiB
TypeScript
75 lines
2.0 KiB
TypeScript
import React, { useEffect } from 'react';
|
|
import { createStyles, Footer as FooterComponent } from '@mantine/core';
|
|
import { showNotification } from '@mantine/notifications';
|
|
import { IconAlertCircle as AlertCircle } from '@tabler/icons';
|
|
import { CURRENT_VERSION, REPO_URL } from '../../../data/constants';
|
|
|
|
const useStyles = createStyles((theme) => ({
|
|
footer: {
|
|
borderTop: `1px solid ${
|
|
theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[2]
|
|
}`,
|
|
},
|
|
|
|
inner: {
|
|
display: 'flex',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
padding: `${theme.spacing.md}px ${theme.spacing.md}px`,
|
|
|
|
[theme.fn.smallerThan('sm')]: {
|
|
flexDirection: 'column',
|
|
},
|
|
},
|
|
|
|
links: {
|
|
[theme.fn.smallerThan('sm')]: {
|
|
marginTop: theme.spacing.lg,
|
|
marginBottom: theme.spacing.sm,
|
|
},
|
|
},
|
|
}));
|
|
|
|
interface FooterCenteredProps {
|
|
links: { link: string; label: string }[];
|
|
}
|
|
|
|
export function Footer({ links }: FooterCenteredProps) {
|
|
useEffect(() => {
|
|
// Fetch Data here when component first mounted
|
|
fetch(`https://api.github.com/repos/${REPO_URL}/releases/latest`).then((res) => {
|
|
res.json().then((data) => {
|
|
if (data.tag_name > CURRENT_VERSION) {
|
|
showNotification({
|
|
color: 'yellow',
|
|
autoClose: false,
|
|
title: 'New version available',
|
|
icon: <AlertCircle />,
|
|
message: `Version ${data.tag_name} is available, update now!`,
|
|
});
|
|
} else if (data.tag_name < CURRENT_VERSION) {
|
|
showNotification({
|
|
color: 'orange',
|
|
autoClose: 5000,
|
|
title: 'You are using a development version',
|
|
icon: <AlertCircle />,
|
|
message: 'This version of Homarr is still in development! Bugs are expected 🐛',
|
|
});
|
|
}
|
|
});
|
|
});
|
|
}, []);
|
|
|
|
return (
|
|
<FooterComponent
|
|
height="auto"
|
|
style={{
|
|
background: 'none',
|
|
border: 'none',
|
|
clear: 'both',
|
|
}}
|
|
children={undefined}
|
|
/>
|
|
);
|
|
}
|