mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
114 lines
3.1 KiB
TypeScript
114 lines
3.1 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import useProjectApi from 'hooks/api/actions/useProjectApi/useProjectApi';
|
|
import { formatUnknownError } from 'utils/formatUnknownError';
|
|
|
|
export type ProjectMode = 'open' | 'protected';
|
|
export const DEFAULT_PROJECT_STICKINESS = 'default';
|
|
const useProjectForm = (
|
|
initialProjectId = '',
|
|
initialProjectName = '',
|
|
initialProjectDesc = '',
|
|
initialProjectStickiness = DEFAULT_PROJECT_STICKINESS,
|
|
initialProjectMode: ProjectMode = 'open',
|
|
initialFeatureLimit = ''
|
|
) => {
|
|
const [projectId, setProjectId] = useState(initialProjectId);
|
|
|
|
const [projectName, setProjectName] = useState(initialProjectName);
|
|
const [projectDesc, setProjectDesc] = useState(initialProjectDesc);
|
|
const [projectStickiness, setProjectStickiness] = useState<string>(
|
|
initialProjectStickiness
|
|
);
|
|
const [projectMode, setProjectMode] =
|
|
useState<ProjectMode>(initialProjectMode);
|
|
const [featureLimit, setFeatureLimit] =
|
|
useState<string>(initialFeatureLimit);
|
|
const [errors, setErrors] = useState({});
|
|
|
|
const { validateId } = useProjectApi();
|
|
|
|
useEffect(() => {
|
|
setProjectId(initialProjectId);
|
|
}, [initialProjectId]);
|
|
|
|
useEffect(() => {
|
|
setProjectName(initialProjectName);
|
|
}, [initialProjectName]);
|
|
|
|
useEffect(() => {
|
|
setProjectDesc(initialProjectDesc);
|
|
}, [initialProjectDesc]);
|
|
|
|
useEffect(() => {
|
|
setProjectMode(initialProjectMode);
|
|
}, [initialProjectMode]);
|
|
|
|
useEffect(() => {
|
|
setFeatureLimit(initialFeatureLimit);
|
|
}, [initialFeatureLimit]);
|
|
|
|
useEffect(() => {
|
|
setProjectStickiness(initialProjectStickiness);
|
|
}, [initialProjectStickiness]);
|
|
|
|
const getProjectPayload = () => {
|
|
return {
|
|
id: projectId,
|
|
name: projectName,
|
|
description: projectDesc,
|
|
defaultStickiness: projectStickiness,
|
|
featureLimit: featureLimit,
|
|
mode: projectMode,
|
|
};
|
|
};
|
|
|
|
const validateProjectId = async () => {
|
|
if (projectId.length === 0) {
|
|
setErrors(prev => ({ ...prev, id: 'Id can not be empty.' }));
|
|
return false;
|
|
}
|
|
try {
|
|
await validateId(getProjectPayload().id);
|
|
return true;
|
|
} catch (error: unknown) {
|
|
setErrors(prev => ({ ...prev, id: formatUnknownError(error) }));
|
|
return false;
|
|
}
|
|
};
|
|
|
|
const validateName = () => {
|
|
if (projectName.length === 0) {
|
|
setErrors(prev => ({ ...prev, name: 'Name can not be empty.' }));
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
const clearErrors = () => {
|
|
setErrors({});
|
|
};
|
|
|
|
return {
|
|
projectId,
|
|
projectName,
|
|
projectDesc,
|
|
projectStickiness,
|
|
projectMode,
|
|
featureLimit,
|
|
setProjectId,
|
|
setProjectName,
|
|
setProjectDesc,
|
|
setProjectStickiness,
|
|
setProjectMode,
|
|
setFeatureLimit,
|
|
getProjectPayload,
|
|
validateName,
|
|
validateProjectId,
|
|
clearErrors,
|
|
errors,
|
|
};
|
|
};
|
|
|
|
export default useProjectForm;
|