mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-08 13:33:11 +08:00
123 lines
3.3 KiB
TypeScript
123 lines
3.3 KiB
TypeScript
import { useState, useEffect, ChangeEvent, FormEvent } from 'react';
|
|
|
|
// Redux
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import { State } from '../../../store/reducers';
|
|
import { bindActionCreators } from 'redux';
|
|
import { actionCreators } from '../../../store';
|
|
|
|
// Typescript
|
|
import { DockerSettingsForm } from '../../../interfaces';
|
|
|
|
// UI
|
|
import { InputGroup, Button, SettingsHeadline } from '../../UI';
|
|
|
|
// Utils
|
|
import { inputHandler, dockerSettingsTemplate } from '../../../utility';
|
|
|
|
export const DockerSettings = (): JSX.Element => {
|
|
const { loading, config } = useSelector((state: State) => state.config);
|
|
|
|
const dispatch = useDispatch();
|
|
const { updateConfig } = bindActionCreators(actionCreators, dispatch);
|
|
|
|
// Initial state
|
|
const [formData, setFormData] = useState<DockerSettingsForm>(
|
|
dockerSettingsTemplate
|
|
);
|
|
|
|
// Get config
|
|
useEffect(() => {
|
|
setFormData({
|
|
...config,
|
|
});
|
|
}, [loading]);
|
|
|
|
// Form handler
|
|
const formSubmitHandler = async (e: FormEvent) => {
|
|
e.preventDefault();
|
|
|
|
// Save settings
|
|
await updateConfig(formData);
|
|
};
|
|
|
|
// Input handler
|
|
const inputChangeHandler = (
|
|
e: ChangeEvent<HTMLInputElement | HTMLSelectElement>,
|
|
options?: { isNumber?: boolean; isBool?: boolean }
|
|
) => {
|
|
inputHandler<DockerSettingsForm>({
|
|
e,
|
|
options,
|
|
setStateHandler: setFormData,
|
|
state: formData,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<form onSubmit={(e) => formSubmitHandler(e)}>
|
|
<SettingsHeadline text="Docker" />
|
|
{/* CUSTOM DOCKER SOCKET HOST */}
|
|
<InputGroup>
|
|
<label htmlFor="dockerHost">Docker host</label>
|
|
<input
|
|
type="text"
|
|
id="dockerHost"
|
|
name="dockerHost"
|
|
placeholder="dockerHost:port"
|
|
value={formData.dockerHost}
|
|
onChange={(e) => inputChangeHandler(e)}
|
|
/>
|
|
</InputGroup>
|
|
|
|
{/* USE DOCKER API */}
|
|
<InputGroup>
|
|
<label htmlFor="dockerApps">Use Docker API</label>
|
|
<select
|
|
id="dockerApps"
|
|
name="dockerApps"
|
|
value={formData.dockerApps ? 1 : 0}
|
|
onChange={(e) => inputChangeHandler(e, { isBool: true })}
|
|
>
|
|
<option value={1}>True</option>
|
|
<option value={0}>False</option>
|
|
</select>
|
|
</InputGroup>
|
|
|
|
{/* UNPIN DOCKER APPS */}
|
|
<InputGroup>
|
|
<label htmlFor="unpinStoppedApps">
|
|
Unpin stopped containers / other apps
|
|
</label>
|
|
<select
|
|
id="unpinStoppedApps"
|
|
name="unpinStoppedApps"
|
|
value={formData.unpinStoppedApps ? 1 : 0}
|
|
onChange={(e) => inputChangeHandler(e, { isBool: true })}
|
|
>
|
|
<option value={1}>True</option>
|
|
<option value={0}>False</option>
|
|
</select>
|
|
</InputGroup>
|
|
|
|
{/* KUBERNETES SETTINGS */}
|
|
<SettingsHeadline text="Kubernetes" />
|
|
{/* USE KUBERNETES */}
|
|
<InputGroup>
|
|
<label htmlFor="kubernetesApps">Use Kubernetes Ingress API</label>
|
|
<select
|
|
id="kubernetesApps"
|
|
name="kubernetesApps"
|
|
value={formData.kubernetesApps ? 1 : 0}
|
|
onChange={(e) => inputChangeHandler(e, { isBool: true })}
|
|
>
|
|
<option value={1}>True</option>
|
|
<option value={0}>False</option>
|
|
</select>
|
|
</InputGroup>
|
|
|
|
<Button>Save changes</Button>
|
|
</form>
|
|
);
|
|
};
|