mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 07:25:48 +01:00
57 lines
1.9 KiB
TypeScript
57 lines
1.9 KiB
TypeScript
import { Box, createStyles, Group, Header as MantineHeader, Indicator } from '@mantine/core';
|
|
import { useEffect, useState } from 'react';
|
|
import { REPO_URL } from '../../../../data/constants';
|
|
import DockerMenuButton from '../../../modules/Docker/DockerModule';
|
|
import { usePackageAttributesStore } from '../../../tools/client/zustands/usePackageAttributesStore';
|
|
import { Logo } from '../Logo';
|
|
import { useCardStyles } from '../useCardStyles';
|
|
import { ToggleEditModeAction } from './Actions/ToggleEditMode/ToggleEditMode';
|
|
import { Search } from './Search';
|
|
import { SettingsMenu } from './SettingsMenu';
|
|
|
|
export const HeaderHeight = 64;
|
|
|
|
export function Header(props: any) {
|
|
const { classes } = useStyles();
|
|
const { classes: cardClasses } = useCardStyles(false);
|
|
const { attributes } = usePackageAttributesStore();
|
|
|
|
const [newVersionAvailable, setNewVersionAvailable] = useState<string>('');
|
|
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 > `v${attributes.packageVersion}`) {
|
|
setNewVersionAvailable(data.tag_name);
|
|
}
|
|
});
|
|
});
|
|
}, []);
|
|
|
|
return (
|
|
<MantineHeader height="auto" className={cardClasses.card}>
|
|
<Group p="xs" noWrap grow>
|
|
<Box className={classes.hide}>
|
|
<Logo />
|
|
</Box>
|
|
<Group position="right" style={{ maxWidth: 'none' }} noWrap>
|
|
<Search />
|
|
<ToggleEditModeAction />
|
|
<DockerMenuButton />
|
|
<Indicator size={15} color="blue" withBorder processing disabled={!newVersionAvailable}>
|
|
<SettingsMenu newVersionAvailable={newVersionAvailable} />
|
|
</Indicator>
|
|
</Group>
|
|
</Group>
|
|
</MantineHeader>
|
|
);
|
|
}
|
|
|
|
const useStyles = createStyles((theme) => ({
|
|
hide: {
|
|
[theme.fn.smallerThan('xs')]: {
|
|
display: 'none',
|
|
},
|
|
},
|
|
}));
|