f377e07996
Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
import {
|
|
useEnvironment,
|
|
useNodeHealth,
|
|
useNodeSwitcherStore,
|
|
} from '@vegaprotocol/environment';
|
|
import { Indicator, ExternalLink } from '@vegaprotocol/ui-toolkit';
|
|
import { Tooltip } from '../../components/tooltip';
|
|
import { useT } from '../../lib/use-t';
|
|
|
|
export const NodeHealthContainer = () => {
|
|
const t = useT();
|
|
const { VEGA_URL, VEGA_INCIDENT_URL } = useEnvironment();
|
|
const setNodeSwitcher = useNodeSwitcherStore((store) => store.setDialogOpen);
|
|
const { text, intent, datanodeBlockHeight } = useNodeHealth();
|
|
|
|
return (
|
|
<Tooltip
|
|
description={
|
|
<div
|
|
className="flex flex-col gap-2 p-2 text-sm"
|
|
data-testid="node-health"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<Indicator variant={intent} />
|
|
<p>{text}</p>
|
|
<p>{datanodeBlockHeight}</p>
|
|
</div>
|
|
{VEGA_URL && (
|
|
<p>
|
|
<NodeUrl url={VEGA_URL} />
|
|
</p>
|
|
)}
|
|
{VEGA_INCIDENT_URL && (
|
|
<ExternalLink href={VEGA_INCIDENT_URL}>
|
|
{t('Mainnet status & incidents')}
|
|
</ExternalLink>
|
|
)}
|
|
</div>
|
|
}
|
|
align="end"
|
|
side="left"
|
|
sideOffset={18}
|
|
arrow={false}
|
|
>
|
|
<button
|
|
className="flex justify-center items-center p-2 rounded hover:bg-vega-light-200 hover:dark:bg-vega-dark-200"
|
|
onClick={() => setNodeSwitcher(true)}
|
|
data-testid="node-health-trigger"
|
|
>
|
|
<Indicator variant={intent} size="lg" />
|
|
</button>
|
|
</Tooltip>
|
|
);
|
|
};
|
|
|
|
interface NodeUrlProps {
|
|
url: string;
|
|
}
|
|
|
|
export const NodeUrl = ({ url }: NodeUrlProps) => {
|
|
const t = useT();
|
|
const urlObj = new URL(url);
|
|
const nodeUrl = urlObj.hostname;
|
|
return <span title={t('Connected node')}>{nodeUrl}</span>;
|
|
};
|