mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-08 06:25:48 +01:00
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
|
|
import { Indicator, Tooltip } from '@mantine/core';
|
||
|
|
import axios from 'axios';
|
||
|
|
import { useEffect, useState } from 'react';
|
||
|
|
import { Plug } from 'tabler-icons-react';
|
||
|
|
import { useConfig } from '../../../tools/state';
|
||
|
|
import { IModule } from '../modules';
|
||
|
|
|
||
|
|
export const PingModule: IModule = {
|
||
|
|
title: 'Ping Services',
|
||
|
|
description: 'Pings your services and shows their status as an indicator',
|
||
|
|
icon: Plug,
|
||
|
|
component: PingComponent,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function PingComponent(props: any) {
|
||
|
|
type State = 'loading' | 'down' | 'online';
|
||
|
|
const { config } = useConfig();
|
||
|
|
|
||
|
|
const { url }: { url: string } = props;
|
||
|
|
const [isOnline, setOnline] = useState<State>('loading');
|
||
|
|
useEffect(() => {
|
||
|
|
if (!config.settings.enabledModules.includes('Ping Services')) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
axios
|
||
|
|
.get('/api/modules/ping', { params: { url } })
|
||
|
|
.then(() => {
|
||
|
|
setOnline('online');
|
||
|
|
})
|
||
|
|
.catch(() => {
|
||
|
|
setOnline('down');
|
||
|
|
});
|
||
|
|
}, []);
|
||
|
|
if (!config.settings.enabledModules.includes('Ping Services')) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
return (
|
||
|
|
<Tooltip
|
||
|
|
radius="lg"
|
||
|
|
style={{ position: 'absolute', bottom: 20, right: 20 }}
|
||
|
|
label={isOnline === 'loading' ? 'Loading...' : isOnline === 'online' ? 'Online' : 'Offline'}
|
||
|
|
>
|
||
|
|
<Indicator
|
||
|
|
size={13}
|
||
|
|
color={isOnline === 'online' ? 'green' : isOnline === 'down' ? 'red' : 'yellow'}
|
||
|
|
>
|
||
|
|
{null}
|
||
|
|
</Indicator>
|
||
|
|
</Tooltip>
|
||
|
|
);
|
||
|
|
}
|