2019-11-12 05:35:47 -08:00
|
|
|
import React, { useState, FC } from 'react';
|
2019-10-27 14:03:39 -07:00
|
|
|
import { RouteComponentProps } from '@reach/router';
|
2019-11-12 05:35:47 -08:00
|
|
|
import { Button } from 'reactstrap';
|
2019-10-28 02:00:00 -07:00
|
|
|
import CopyToClipboard from 'react-copy-to-clipboard';
|
2019-10-27 14:03:39 -07:00
|
|
|
|
2020-01-14 10:34:48 -08:00
|
|
|
import { withStatusIndicator } from '../../components/withStatusIndicator';
|
|
|
|
import { useFetch } from '../../hooks/useFetch';
|
2020-10-22 08:22:32 -07:00
|
|
|
import { usePathPrefix } from '../../contexts/PathPrefixContext';
|
|
|
|
import { API_PATH } from '../../constants/constants';
|
2019-10-28 02:00:00 -07:00
|
|
|
|
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-10-28 02:00:00 -07:00
|
|
|
|
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;
|
2019-10-28 02:00:00 -07:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<h2>
|
|
|
|
Configuration
|
|
|
|
<CopyToClipboard
|
2019-11-12 05:35:47 -08:00
|
|
|
text={config!}
|
|
|
|
onCopy={(_, result) => {
|
2019-10-28 07:02:42 -07:00
|
|
|
setCopied(result);
|
|
|
|
setTimeout(setCopied, 1500);
|
|
|
|
}}
|
2019-10-28 02:00:00 -07:00
|
|
|
>
|
|
|
|
<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-10-28 02:00:00 -07:00
|
|
|
</>
|
2019-10-28 07:02:42 -07:00
|
|
|
);
|
|
|
|
};
|
2019-10-27 14:03:39 -07:00
|
|
|
|
2020-10-22 08:22:32 -07:00
|
|
|
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} />;
|
|
|
|
};
|
|
|
|
|
2019-10-27 14:03:39 -07:00
|
|
|
export default Config;
|