import FormTemplate from '../../common/FormTemplate/FormTemplate'; import { useHistory } from 'react-router-dom'; import FeatureForm from '../FeatureForm/FeatureForm'; import useFeatureForm from '../hooks/useFeatureForm'; import useUiConfig from '../../../hooks/api/getters/useUiConfig/useUiConfig'; import useToast from '../../../hooks/useToast'; import useFeatureApi from '../../../hooks/api/actions/useFeatureApi/useFeatureApi'; import { CREATE_FEATURE } from '../../providers/AccessProvider/permissions'; import PermissionButton from '../../common/PermissionButton/PermissionButton'; import { CF_CREATE_BTN_ID } from '../../../testIds'; import { useContext } from 'react'; import UIContext from '../../../contexts/UIContext'; const CreateFeature = () => { /* @ts-ignore */ const { setToastData, setToastApiError } = useToast(); const { setShowFeedback } = useContext(UIContext); const { uiConfig } = useUiConfig(); const history = useHistory(); const { type, setType, name, setName, project, setProject, description, setDescription, validateToggleName, impressionData, setImpressionData, getTogglePayload, clearErrors, errors, } = useFeatureForm(); const { createFeatureToggle, loading } = useFeatureApi(); const handleSubmit = async (e: Event) => { e.preventDefault(); clearErrors(); const validToggleName = await validateToggleName(); if (validToggleName) { const payload = getTogglePayload(); try { await createFeatureToggle(project, payload); history.push(`/projects/${project}/features/${name}`); setToastData({ title: 'Toggle created successfully', text: 'Now you can start using your toggle.', confetti: true, type: 'success', }); setShowFeedback(true); } catch (e: any) { setToastApiError(e.toString()); } } }; const formatApiCode = () => { return `curl --location --request POST '${ uiConfig.unleashUrl }/api/admin/projects/${project}/features' \\ --header 'Authorization: INSERT_API_KEY' \\ --header 'Content-Type: application/json' \\ --data-raw '${JSON.stringify(getTogglePayload(), undefined, 2)}'`; }; const handleCancel = () => { history.goBack(); }; return ( Create toggle ); }; export default CreateFeature;