openreplay/frontend/app/components/Session/Player/SharedComponents/BackendLogs/StatusMessages.tsx
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

60 lines
1.4 KiB
TypeScript

import React from 'react';
import { client as settingsPath, CLIENT_TABS } from 'App/routes';
import { Icon } from 'UI';
import { LoadingOutlined } from '@ant-design/icons';
import { useHistory } from 'react-router-dom';
import { Button } from 'antd';
export function LoadingFetch({ provider }: { provider: string }) {
return (
<div
className="w-full h-full flex items-center justify-center flex-col gap-2"
>
<LoadingOutlined size={32} />
<div>
Fetching logs from
{provider}
...
</div>
</div>
);
}
export function FailedFetch({
provider,
onRetry,
}: {
provider: string;
onRetry: () => void;
}) {
const history = useHistory();
const intPath = settingsPath(CLIENT_TABS.INTEGRATIONS);
return (
<div
className="w-full h-full flex flex-col items-center justify-center gap-2"
>
<div className="flex items-center gap-1 font-medium">
<Icon name="exclamation-circle" size={14} />
<span>
Failed to fetch logs from
{provider}
.
{' '}
</span>
</div>
<div className="flex items-center gap-3">
<Button type="text" size="small" onClick={onRetry}>
Retry
</Button>
<Button type="text" size="small" onClick={() => history.push(intPath)}>
Check Configuration
</Button>
</div>
</div>
);
}