prometheus/web/ui/react-app/src/pages/Config.tsx

53 lines
1.6 KiB
TypeScript
Raw Normal View History

2019-11-12 05:35:47 -08:00
import React, { useState, FC } from 'react';
import { RouteComponentProps } from '@reach/router';
2019-11-12 05:35:47 -08:00
import { Button } from 'reactstrap';
import CopyToClipboard from 'react-copy-to-clipboard';
import PathPrefixProps from '../PathPrefixProps';
import './Config.css';
2019-11-12 05:35:47 -08:00
import { withStatusIndicator } from '../withStatusIndicator';
import { useFetch } from '../utils/useFetch';
2019-11-12 05:35:47 -08:00
type YamlConfig = { yaml?: string };
interface ConfigContentProps {
error?: Error;
data?: YamlConfig;
}
const YamlContent = ({ yaml }: YamlConfig) => <pre className="config-yaml">{yaml}</pre>;
YamlContent.displayName = 'Config';
2019-11-12 05:35:47 -08:00
const ConfigWithStatusIndicator = withStatusIndicator(YamlContent);
export const ConfigContent: FC<ConfigContentProps> = ({ error, data }) => {
const [copied, setCopied] = useState(false);
const config = data && data.yaml;
return (
<>
<h2>
Configuration&nbsp;
<CopyToClipboard
2019-11-12 05:35:47 -08:00
text={config!}
onCopy={(_, result) => {
setCopied(result);
setTimeout(setCopied, 1500);
}}
>
<Button color="light" disabled={!config}>
{copied ? 'Copied' : 'Copy to clipboard'}
</Button>
</CopyToClipboard>
</h2>
2019-11-12 05:35:47 -08:00
<ConfigWithStatusIndicator error={error} isLoading={!config} yaml={config} />
</>
);
};
2019-11-12 05:35:47 -08:00
const Config: FC<RouteComponentProps & PathPrefixProps> = ({ pathPrefix }) => {
const { response, error } = useFetch<YamlConfig>(`${pathPrefix}/api/v1/status/config`);
return <ConfigContent error={error} data={response.data} />;
};
export default Config;