2019-11-02 02:27:36 -07:00
|
|
|
import React, { FC, useState } from 'react';
|
2019-10-27 14:03:39 -07:00
|
|
|
import { RouteComponentProps } from '@reach/router';
|
2019-10-28 02:00:00 -07:00
|
|
|
import { Alert, Button } from 'reactstrap';
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
|
|
import { faSpinner } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import CopyToClipboard from 'react-copy-to-clipboard';
|
2019-11-02 02:27:36 -07:00
|
|
|
import { useFetch } from '../utils/useFetch';
|
2019-11-04 00:17:50 -08:00
|
|
|
import PathPrefixProps from '../PathPrefixProps';
|
2019-10-27 14:03:39 -07:00
|
|
|
|
2019-10-28 02:00:00 -07:00
|
|
|
import './Config.css';
|
|
|
|
|
2019-11-04 00:17:50 -08:00
|
|
|
const Config: FC<RouteComponentProps & PathPrefixProps> = ({ pathPrefix }) => {
|
|
|
|
const { response, error } = useFetch(`${pathPrefix}/api/v1/status/config`);
|
2019-10-28 02:00:00 -07:00
|
|
|
const [copied, setCopied] = useState(false);
|
|
|
|
|
2019-11-02 02:27:36 -07:00
|
|
|
const config = response && response.data.yaml;
|
2019-10-28 02:00:00 -07:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<h2>
|
|
|
|
Configuration
|
|
|
|
<CopyToClipboard
|
|
|
|
text={config ? config! : ''}
|
2019-10-28 07:02:42 -07:00
|
|
|
onCopy={(text, result) => {
|
|
|
|
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-10-28 07:02:42 -07:00
|
|
|
{error ? (
|
|
|
|
<Alert color="danger">
|
2019-11-02 02:27:36 -07:00
|
|
|
<strong>Error:</strong> Error fetching configuration: {error.message}
|
2019-10-28 07:02:42 -07:00
|
|
|
</Alert>
|
|
|
|
) : config ? (
|
|
|
|
<pre className="config-yaml">{config}</pre>
|
|
|
|
) : (
|
|
|
|
<FontAwesomeIcon icon={faSpinner} spin />
|
|
|
|
)}
|
2019-10-28 02:00:00 -07:00
|
|
|
</>
|
2019-10-28 07:02:42 -07:00
|
|
|
);
|
|
|
|
};
|
2019-10-27 14:03:39 -07:00
|
|
|
|
|
|
|
export default Config;
|