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

54 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 { withStatusIndicator } from '../../components/withStatusIndicator';
import { useFetch } from '../../hooks/useFetch';
import { usePathPrefix } from '../../contexts/PathPrefixContext';
import { API_PATH } from '../../constants/constants';
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} />
</>
);
};
const Config: FC<RouteComponentProps> = () => {
const pathPrefix = usePathPrefix();
const { response, error } = useFetch<YamlConfig>(`${pathPrefix}/${API_PATH}/status/config`);
2019-11-12 05:35:47 -08:00
return <ConfigContent error={error} data={response.data} />;
};
export default Config;