mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
1b097f85d6
* feat: add create and edit environment screen * fix: remove environment success screen Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com>
70 lines
1.6 KiB
TypeScript
70 lines
1.6 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import useEnvironmentApi from '../../../hooks/api/actions/useEnvironmentApi/useEnvironmentApi';
|
|
|
|
const useEnvironmentForm = (
|
|
initialName = '',
|
|
initialType = 'development'
|
|
) => {
|
|
const NAME_EXISTS_ERROR = 'Error: Environment';
|
|
const [name, setName] = useState(initialName);
|
|
const [type, setType] = useState(initialType);
|
|
const [errors, setErrors] = useState({});
|
|
|
|
useEffect(() => {
|
|
setName(initialName);
|
|
}, [initialName]);
|
|
|
|
useEffect(() => {
|
|
setType(initialType);
|
|
}, [initialType]);
|
|
|
|
const { validateEnvName } = useEnvironmentApi();
|
|
|
|
const getEnvPayload = () => {
|
|
return {
|
|
name,
|
|
type,
|
|
};
|
|
};
|
|
|
|
const validateEnvironmentName = async () => {
|
|
if (name.length === 0) {
|
|
setErrors(prev => ({
|
|
...prev,
|
|
name: 'Environment name can not be empty',
|
|
}));
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
await validateEnvName(name);
|
|
} catch (e: any) {
|
|
if (e.toString().includes(NAME_EXISTS_ERROR)) {
|
|
setErrors(prev => ({
|
|
...prev,
|
|
name: 'Name already exists',
|
|
}));
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
|
|
const clearErrors = () => {
|
|
setErrors({});
|
|
};
|
|
|
|
return {
|
|
name,
|
|
setName,
|
|
type,
|
|
setType,
|
|
getEnvPayload,
|
|
validateEnvironmentName,
|
|
clearErrors,
|
|
errors,
|
|
};
|
|
};
|
|
|
|
export default useEnvironmentForm;
|